#popup_wrapper
{
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 6;
	padding: 0;
}

#popup 
{
	margin: 40px auto;
	box-shadow: 0 0 15px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .5);
	-ms-filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#333333');
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#333333');
	/*border: 5px solid #eeeeee;*/
    border-radius: 10px 10px 10px 10px;	
	-moz-border-radius: 10px 10px 10px 10px;
    -webkit-border-radius: 10px 10px 10px 10px;
    -khtml-border-radius: 10px 10px 10px 10px;
}

#popup_content
{
	padding: 25px;
	-moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    -khtml-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;	
	background: #FFF;	
	background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#eeeeee));
	background: -moz-linear-gradient(top, #FFFFFF, #eeeeee); 
    background: -o-linear-gradient(#FFFFFF, #eeeeee);  
    background: linear-gradient(#FFFFFF, #eeeeee);  
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#eeeeee');	
}

#popup_overlay
{
	display: none;	
	position: fixed;
	top: 0;
	left: 0;
	height:100%;
	width:100%;
	background-color: #000;
	z-index: 5;
	filter: alpha(opacity=40);
	opacity: 0.4;
}

#popup_loading 
{	
	display: none;
	position: fixed;
	z-index: 10; /* On top of everything including bubbles */
	top: 80px;
	left: 50%;
	margin-left: -22px;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);	
	width: 44px;
	height: 44px;
	border-radius: 44px;
	text-align: center;
	background: #FFF
}

#popup_loading img
{
	margin-top: 6px;
}

#popup.small 
{
	width: 400px;
}

#popup.medium
{
	width: 600px;
}

#popup.large
{
	width: 800px;
}

#popup.xlarge
{
	width: 950px;
}

#popup .popup_close
{
	position: absolute;
	cursor: pointer;
	margin: -13px 0 0 580px;
}

#popup.small .popup_close
{
	margin-left: 382px;
}

#popup.medium .popup_close
{
	margin-left: 582px;
}

#popup.large .popup_close
{
	margin-left: 782px;
}

#popup.xlarge .popup_close
{
	margin-left: 932px;
}

* html #popup_overlay /* ie6 hack */
{ 
	position: absolute;
	height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#popup .footer_buttons
{
	text-align: center;	
	margin-bottom: 0;
}

#popup .footer_buttons a
{
	margin: 0 5px;
}

#popup .footer_buttons.devider
{
	border-top: 1px dashed #CCC;
	padding-top: 20px;
}
