@charset "utf-8";


/*////////////////////
 modalWindow
////////////////////*/
#modalWindowContainer{
    display:none;
}

#modalWindowOverlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.5);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#99000000', endColorstr='#99000000',GradientType=0 ); /* IE6-9 */
	z-index:5000;
}

#modalWindow{
    position:absolute;
    top:50%;
    left:50%;
    margin:-250px 0px 0px -250px;
    width:500px;
    height:500px;
	z-index:5001;
	box-shadow:0 0 30px rgba(0 , 0 , 0 , 0.8);
}

#mw-close{
	background:rgb(87,88,88); /* Old browsers */
	background:-moz-linear-gradient(top, rgba(87,88,88,1) 0%, rgba(27,27,26,1) 100%); /* FF3.6+ */
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(87,88,88,1)), color-stop(100%,rgba(27,27,26,1))); /* Chrome,Safari4+ */
	background:-webkit-linear-gradient(top, rgba(87,88,88,1) 0%,rgba(27,27,26,1) 100%); /* Chrome10+,Safari5.1+ */
	background:-o-linear-gradient(top, rgba(87,88,88,1) 0%,rgba(27,27,26,1) 100%); /* Opera 11.10+ */
	background:-ms-linear-gradient(top, rgba(87,88,88,1) 0%,rgba(27,27,26,1) 100%); /* IE10+ */
	background:linear-gradient(to bottom, rgba(87,88,88,1) 0%,rgba(27,27,26,1) 100%); /* W3C */
}

#mw-close:hover{
	background:rgb(51,51,51); /* Old browsers */
	background:-moz-linear-gradient(top, rgba(51,51,51,1) 0%, rgba(10,10,10,1) 100%); /* FF3.6+ */
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(51,51,51,1)), color-stop(100%,rgba(10,10,10,1))); /* Chrome,Safari4+ */
	background:-webkit-linear-gradient(top, rgba(51,51,51,1) 0%,rgba(10,10,10,1) 100%); /* Chrome10+,Safari5.1+ */
	background:-o-linear-gradient(top, rgba(51,51,51,1) 0%,rgba(10,10,10,1) 100%); /* Opera 11.10+ */
	background:-ms-linear-gradient(top, rgba(51,51,51,1) 0%,rgba(10,10,10,1) 100%); /* IE10+ */
	background:linear-gradient(to bottom, rgba(51,51,51,1) 0%,rgba(10,10,10,1) 100%); /* W3C */
}

#modalWindowContent{
	position:absolute;
	top:44px; bottom:0px; left:0;
	width:100%;
	background:#f6f6f6;
}

#modalWindowInner{
	position:absolute;
	width:100%;
	padding:0;
	background:#f6f6f6;
}
