@CHARSET "UTF-8";

* {
	margin: 0;
	padding: 0;
}

#windownbg {
	display: none;
	position: absolute;
	width: 100%;
	height: 100%;
	background: #000;
	top: 0;
	left: 0;
}

#windown-box {
	position: fixed;
	_position: absolute;
	text-align: left;
	
	background-color: #fff;
	border: 1px solid #999;
	border: 1px solid rgba(0,0,0,0.1);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	outline: 0;
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.1);
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,0.1);
	box-shadow: 0 3px 7px rgba(0,0,0,0.1);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding-box;
	background-clip: padding-box;
}

#windown-title {
	position: relative;
	overflow: hidden;
	background: url(images/tipbg.png) 0 0 repeat-x;
}

#windown-title h2 {
position: relative;
font-size: 16px;
color: #333;
font-weight: bold;
height: 34px;
line-height: 34px;
background: #f2f2f2;
padding-left: 10px;
}

#windown-close {
	position: absolute;
	right: 10px;
	top: 8px;
	width: 16px;
	height: 16px;
	text-indent: -10em;
	overflow: hidden;
	background: url(../images/close-gray.png)  no-repeat;
	cursor: pointer;
}
#windown-close:hover {
		
	background: url(../images/close-black.png)  no-repeat;
}

#windown-content-border {
	position: relative;
top: -1px;
border-top: 1px solid #ccc;
padding: 10px 0 5px 10px;
font-size: 14px;
line-height: 2em;
}

#windown-content img,#windown-content iframe {
	display: block;
}

#windown-content .loading {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -8px;
	margin-top: -8px;
}