/*
* windowit css
*/

.WI_win {
	/* customize background color of window */
	background-color:#fff;
	/* end customize */
		
	position:fixed;
	z-index: 75;
}

.WI_title {
	/* customize background color of title bar */
	background: #8F8FDC url(../images/topbar.gif) repeat-x;
	
	/* customize height of title bar */
	height:22px;
	
	/* customize font of title bar */
	font: bold 14px Arial, Helvetica, sans-serif;
	color:#fff;
	
	/* end customize */
	padding: 6px 0 0 10px;
}

.WI_content {
	
	/* customize window border */
	border:solid 3px #227;
	
	overflow:auto;
	position:relative;
	padding:0 12px;
	border-top: none;
}

.WI_close {
	/* customize close button text color of title bar */
	color:#CBCBFF;
	font-size: 12px;
	font-weight: normal;
	
	position:absolute;
	top: 6px;
	right: 8px;
	cursor: pointer;
}

.WI_close a {
	/* customize close button text font of title bar */
	color: #CBCBFF;
	text-decoration: underline;
}


.WI_close img {
	margin-left:6px;
	vertical-align:text-top;
}


.WI_close a:hover {
	text-decoration:underline;
}

/* Overlay */
#WI_overlay {
	background-image: url(../images/overlay.png); 
	position: fixed;
	top: 0;
	left: 0;
	z-index: 70;
	width:  100%;
	height: 100%;
}

* html #WI_overlay {
  /*background-color: #000;*/
  background-color: transparent;
  background-image: url(images/blank.gif);
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="images/overlay.png", sizingMethod="scale");
}