.window_wrap {
	position: absolute;
	z-index: 100000;
	top:0;bottom:0;left:0;right:0;
	background-color: rgba(255,255,255,.75);
	display: none;
}

.window {
	position: absolute;
	top:0;bottom:0;left:0;right:0;
	margin: auto;
	background-color: rgba(255,255,255,.95);
	border: 2px solid black;
	border-radius: 5px;
	width: 20%;
	height: 20%;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

.window .window_title {
	height: 30px;
	line-height: 30px;
	background-color: black;
	color: white;
	text-indent: 5px;
	font-weight: bold;
}

.window .window_header {
	position: absolute;
	top: 31px;
	left: 5px;
	right: 5px;
	height: 30px;
	line-height: 30px;
	border-bottom: 1px solid black;
	font-weight: bold;
	overflow: hidden;
}

.window .window_footer {
    height: 30px;
	line-height: 30px;
	background-color: black;
	color: white;
	text-indent: 5px;
	font-weight: bold;
	position: absolute;
	bottom:0;left:0;right:0;
}

.window .window_header  span, .window_li span {
	display: inline-block;
	width: 15%;
	line-height: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.window_li span {
	height: 40px;
	line-height: 40px;
}

.window .window_header  span.small, .window_li span.small  {
	width: 8% !important;
}

.window .window_header  span.large, .window_li span.large {
	width: 23% !important;
}

.window .window_body {
	position: absolute;
	top: 62px;
	left:5px;
	right: 5px;
	bottom: 5px; 
	overflow-x: hidden;
	overflow-y: auto;
}

.window .window_body .window_li {
	border-bottom: 1px solid #e1e1e1;
    color: #0066cc;
	height: 40px;
	line-height: 40px;
	transition: all .5s;
	font-size: 14px;
	font-weight: normal;
	overflow: hidden;
}

.window_li:hover {
	cursor: pointer;
	background-color: rgba(195,218,248,.9);
	color: black;
}

.window_li span select {
	width: 95%;
	border: 1px solid #e1e1e1;
	margin-left: 2px;
}

.window_li span input {
	width: 95%;
	border: 1px solid #e1e1e1;
}

.window .window_close_button {
	height: 30px;
	width: 30px;
	background-image: url(../images/close.png);
	background-size: 100% 100%;
	display: inline-block;
	position: absolute;
	z-index: 1000;
	top:0;
	right: 5px;
}

.window .window_close_button:hover {
	cursor: pointer;
}

.window_button_wrap {
	position: absolute;
	left: 0;right:0;
	bottom: 0;
	margin: auto;
	top: 400px;
	width: 75%;
	height: 40px;
	//border: 1px dotted red;
	transition: all .5s;
}



.window_button_wrap .window_button {
	background-color: rgba(0, 0, 0, 0.9);
    border: 2px solid black;
    border-radius: 5px;
    bottom: -35px;
    color: white;
    font-weight: bold;
    height: 25px;
    line-height: 20px; 
    float: right;
	margin-left: 5px;
    text-align: center;
    transition: all 0.5s ease 0s;
    width: 80px;
	padding-top:5px;
	padding-left: 5px;
	display: inline-block;
}

.window_button_wrap .window_button:hover {
	cursor: pointer;
	color: blue;
	background-color: rgba(255,255,255,.75);
}

.shadow {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
}

#notifications_wrap {
	position: absolute;
	z-index: 1000000;
	//background-color: rgba(255,255,255,.25);
	top:75px;right:0;bottom:50px;
	width: 250px;
	display: none;
}

.nw_item {
	width: 90%;
	margin: 5%;
	border: 1px solid black;
	min-height: 50px;
	background-color: rgba(255,255,255,.9);
	position: relative;
}

.nw_item .close_button {
	height: 25px;
	width: 25px;
	background-image: url(../images/close.png);
	background-size: 100% 100%;
	display: inline-block;
	position: absolute;
	z-index: 1000;
	top:-10px;
	right: -10px;
}

.nw_item .close_button:hover {
	cursor: pointer;
}

.nw_item .title {
	background-color: black;
	color: white;
	font-weight: bold;
	height: 25px;
	line-height: 25px;
	font-size: 11px;
	text-indent: 5px;
}

.nw_item .text {
	text-align: center;
	padding: 5px;
	font-weight: normal;
	font-size: 11px;
}

.inner_page_wrap {
	position: absolute;
	background-color: rgba(255,255,255,.95);
	top: 50px;
	bottom: 50px;
	left: 0px;
	right: 0px;
	overflow: hidden;
	z-index: 3;
	padding: 5px;
	min-width: 50%;
}

.ipw_header {
	height: 30px;
	line-height: 30px;
	font-size: 26px;
	padding-left: 5px;
	padding-right: 5px;
	overflow: hidden;
}

.ipw_version {
	font-size: 12px;
	margin-left: 5px;
}

.ipw_column_header {
	border-bottom: 1px solid #aeaeae;
	border-top: 1px solid #aeaeae;
	font-size: 12px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	font-weight: bold;
}

#updated_success_wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,.85);
    z-index: 10000000;
    display: none;
}

#updated_success_wrap #success_icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 30vw;
    height: 30vw;
    background-image: url(../images/success_icon.png);
    background-size: 100% 100%;
    display: inline-block;
}

#dialog_text .input-wrap {
	width: 75%;	
	margin: 0 auto;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
}


#dialog_text .input-wrap input {
	border: 2px solid rgba(74, 111, 139, 1);
	width: 100%;
	margin-bottom: 5px;
}

input {
	outline: none !important;
}
