#popup_background{
	position:fixed;
	top:0;
	left:0;
	background:#FFF;
	opacity:0;
	filter: alpha(opacity = 0);
	z-index:2500;
}
#popup_container {
	width:320px;
	height:160px;
	min-width:320px;
	max-width:320px;
	background:#000;
	border:solid 1px #999;
	font-family: Arial, sans-serif;
	font-size:13px;
	color:#000;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
	box-shadow: 0 0 10px #000;
	-moz-box-shadow: 0 0 10px #000;
	-webkit-box-shadow: 0 0 10px #000;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

#popup_title {
	position:absolute;
	width:210px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	line-height: 22px;
	color: #FFF;
	cursor:default;
	padding:0;
	margin:12px 20px 0 15px;
	font-family:Verdana, Geneva, sans-serif;
}

#popup_content {
	position:absolute;
	width:295px;
	height:95px;
	background: 255px 15px no-repeat url(../image/jquery_alert/temp.gif);
	padding:60px 0 0 0;
	margin: 0px 10px 0 15px;
} 

#popup_content.alert {
	background-image: url(image/info.png);
}

#popup_content.confirm {
	background-image: url(image/important.png);
}

#popup_content.prompt {
	background-image: url(image/help.png);
}

#popup_message {
	color:#FFF;
	font-size:11px;
	font-weight:bold;
	text-align:justify;
	line-height:17px;
}

#popup_panel {
	text-align: center;
	position:absolute;
	bottom:10px;
	width:290px;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_container INPUT[type='button'] {
	color:#000;
	background:#ccc; 
	border:none;
	width:100px;
	height:24px;
	cursor:pointer;
	cursor:hand;
	font-size:11px; 
	font-weight:bold;
	padding:2px 5px; 
	margin:0;
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:3px;
}
#popup_container INPUT[type='button']:hover {
	background:#DDD;
	color:#222;
}

:focus {outline:none;}
::-moz-focus-inner {border:0;}
