
/* ============================== Search Dim ============================== */

#dim > section.mask {  
	display: none; position: absolute; left: 0; top: 0; z-index: 9000; background-color: #000;
	opacity: 0.6; filter: alpha(opacity=60);
}

#dim > section.window {
	display: none; position: absolute; z-index: 10000; cursor: default;
	background-color: rgba( 0, 38, 57, 0.8 ); padding: 20px;
	border-radius: 5px;
	
	-webkit-box-shadow: 5px 5px 10px rgba( 0, 0, 0, 0.5 );
	-moz-box-shadow:	5px 5px 10px rgba( 0, 0, 0, 0.5 );
	-ms-box-shadow:		5px 5px 10px rgba( 0, 0, 0, 0.5 );
	-o-box-shadow:		5px 5px 10px rgba( 0, 0, 0, 0.5 );
	box-shadow:			5px 5px 10px rgba( 0, 0, 0, 0.5 );
}
#dim > section.window * { color: #fff; letter-spacing: -.04em; }
#dim > section.window > .window-header {
	position: relative;
}
#dim > section.window > .window-header:after {
	content: ''; clear: both; display: block; height: 20px;
}

#dim > section.window > .window-header > .window-title {
	font-size: 16px; float: left;
}
#dim > section.window > .window-header > .window-close {
	float: right; cursor: pointer;
	padding: 5px 10px;
	position: absolute; top: -3px; right: 0;
}
#dim > section.window > .window-content {
	font-size: 14px; line-height: 1.5em; padding: 20px 0;
	border-top: 1px solid rgba( 255, 255, 255, 0.3 );
}


