/* Пользовательские стили окна */

.RS_modal_content{
    background: transparent;
    border: none;
	max-width: 450px;
	margin: 0 auto;
	cursor: default;
	padding: 0px 20px 0px 20px;
}

/* Общие стили */

.RS_body_fixed{
    height: 100%;
    overflow: hidden;	
}
#RS_modal_window{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
	margin-left: -200%;
    z-index: 8000;
    overflow: scroll;
	opacity: 0;
	filter: alpha(opacity='0');
}
#RS_modal_window.RS_modal_show{
	opacity: 1;
	filter: alpha(opacity='100');
}
.RS_modal_wrap{
    position: relative;
    padding: 0px 0px 0px 0px;
	min-height: 100%;
}
.RS_modal_overlay{
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1;
    cursor: pointer;
    opacity: 1;
    filter: alpha(opacity="100");
}
.RS_modal_content_wrap{
    height: auto;
    margin: 0px auto;
    /* max-width: 750px; */
    width: 100%;
    z-index: 3;
    position: relative;	
	cursor: pointer;
}
.RS_modal_close{
	cursor: pointer;
}