﻿/* ********* bpopup ************ */
.popup_box{

	width:500px; min-height:150px; 
	background-color:#FFFFFF; 
	border:1px #333333 solid; 
	-moz-border-radius:10px; 
	-webkit-border-radius:10px;
	border-radius:10px;
	
	text-align:left;
	display:none;
}

.popup_box .popup_header{

	float:left;
	width:94%; /*470*/
	margin:5px 0px 15px 15px; 
	padding:0px; 
	border-bottom:2px solid #336699; 
	color:#333333; 
}

.popup_box .hr_title{
	float:left;
	width:89%; /*(420px)*/
	line-height:30px;
	vertical-align:middle;
	font-family:Times New Roman; 
	font-size:16pt;
}

.icon_x{

	float:right;
	width:30px; height:30px; 
	text-align:center; 

	font-size:14px;
	font-weight:bold; 
	padding-top:4px;
	margin-top:2px;
	
	background-image:url('/images/icon/close_button_sink.png');
	background-repeat:no-repeat;
	background-position:center center;
	cursor:pointer;
}

.icon_x:hover
{
	background-image:url('/images/icon/close-button.png');
	background-repeat:no-repeat;
	background-position:center center;
}

a.windowclose,
a:visited.windowclose
{		
	outline:none;
	color:#999999;
	text-decoration:none;
	display:block;
	
}

a:hover.windowclose
{
	color:#CC0000;
}

.popup_body{

	float:left;
	width:99%;
	margin:0px 15px 15px;
	color:#333333;
}


#element_to_pop_up { 
	display:none; 
}
/* ************* ************************ */