.modal_container{
	display: table;
	position: fixed;
	width:100%;
	height:100%;
	z-index: 1200;
	top:0;
	
}

.modal_container .modal_background{
	top:0;
	left:0;
	position: absolute;
	background-color: #fff;
	opacity: 0.7;
	width: 100%;
	height: 100%;
}

.modal_container .modal_front{
	display: table-cell;
	vertical-align: middle;
	width:100%;
	height:100%;
	position: relative;
}

.modal_container .modal_content_container{
	border:1px solid #002052;
	background-color: #fff;
	width:300px;
	opacity: 1;
	margin: 0 auto;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
	font-family: 'Arial';
	font-size: 12px;
	padding-left: 17px;
	padding-right:17px; 
	position:relative;
	
}

.modal_container .modal_content_container .resize_control{
	  width: 20px;
	  height: 20px;
	  position: absolute;
	  right: 0;
	  bottom: 0;
	  cursor: nw-resize;
	  padding: 4px;
	  color: #001d4d;
}

.modal_container .modal_content_container .title_container{
	width:100%;
	height:41px;
	line-height:41px;
	border-bottom: 1px solid #002052;
	color: #002052;
	margin-bottom: 24px;
	position:relative;
}

.modal_container .modal_content_container .title_container span{
	text-transform: uppercase;
	font-weight: bold;
	padding-right: 15px;
}

.overflow_ellipsis {
	overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
}

.modal_container .modal_content_container .title_container .close_button{
	font-size:30px;
	cursor: pointer;
	position:absolute;
	top:4px;
	right:-6px;
}

.modal_container .modal_content_container .buttons_container{
	height:33px;
	margin-bottom: 18px;
	margin-top: 18px;
	width:100%;
	bottom: 0px;
  	position: absolute;
  	right: 20px;
}


.modal_container .modal_content_container .buttons_container .ok_container,.cancel_container{
	height:100%;
	width:129px;
	line-height: 33px;
	float: right;
	font-size: 11.2px;
	margin-left: 6px;
	cursor: pointer;
}


.drag_area_modal{
	width:100%;
	height:100%;
	top:0;
	left:0;
	position:fixed;
	z-index: 9000;
	cursor: nw-resize;
	background-color: #fff;
	opacity:0.01;
}

