/*Всплывающие окна*/

.popup_overlay {position: fixed; left: 0; top: 0; width: 100%; height: 100%; /* IE7, IE 8 background: #000; opacity: 0.7; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);*/ background: rgba(0,0,0,0.7); text-align: center; z-index: 999;}
.popup_overlay:after {display: inline-block; height: 100%; width: 0; vertical-align: middle; content: "";}
.popup {display: inline-block; position: relative; max-width: 80%; max-height: 80%; padding: 20px; border: 2px solid #000; border-radius: 5px; box-shadow: 0 0 10px #000; background-color: #fff; vertical-align: middle; z-index: 1000;}
.popup_close {position: absolute; z-index: 1001; right: -10px; top: -10px; width: 12px; height: 12px; border: 2px solid #000; cursor: pointer; border-radius: 20px; background: #FFF; color: #000; padding: 3px 6px 4px 0px; text-align: center; font-size: 28px; font-weight: bold; line-height: 12px; font-family: "Lucida Console", Monaco, monospace}
.popup_close:hover {color: #FFF; background: #000; border: 2px solid #FFF;}
.popup_content {overflow-y: auto;}