
.modal-overlay {
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    position: fixed;
    background: #000;
    z-index: 1000;
    filter:alpha(opacity=65);
    -moz-opacity:.65;
    opacity:.65;
}

.modal-window {
    background: #A7C4E0;
    top:50%;
    left:50%;
    position: fixed;
    z-index: 2000;
    border: 2px solid #fff;
    padding: 10px;
	font-family: Tahoma, Freesans;
}

.modal-container {
    max-width: 800px;
    max-height: 560px;
	overflow: auto;
	margin-top: 25px;
}

.modal-title {
	position: absolute;
	top: 10px;
	left: 20px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: bold;
}
.modal-title input {
	background: transparent;
	border: 0;
	font-size: 14px;
	font-weight: bold;
}

.modal-close {
    display: block;
    position:absolute;
    z-index: 3000;
    right:10px;
    top:7px;
    width: 25px;
    height: 25px;
    background-image: url('../images/modal_close2.png');
}
.modal-close:hover {
    background-image: url('../images/modal_close.png');
	cursor: pointer;
}