/* Modal window */
.modal_overlay {
    position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}
.modal_overlay_transparent {
	position: fixed;
    z-index:100;
    top: 0px;
    left: 0px;
    height:100%;
    width:100%;
}
.modal__container {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 15px #222;
	position: relative;
}

.modal__content {
	background: #fff;
	margin: 3px;
}
.modal__title {
	font-size: 16px;
	font-weight: bold;
	background: #8b8479;
	color:#fff;
	padding: 8px 40px 8px 15px;
	position: relative;
	line-height: 20px;
	border-radius: 8px 8px 0 0;
	text-shadow: 0 1px 2px #625b58;
}
.modal__close {
	display: inline-block;
	cursor: pointer;
	width: 21px;
	height: 21px;
	background: url(modal_close.png) 0 0 no-repeat;
	position: absolute;
	top:50%;
	right: 8px;
	margin-top: -10px;
}
.modal__close:hover {
	background-position: 0 -21px;
}
.modal__text {
	padding: 15px;
	overflow: auto;
	max-height: 500px;
}