#popup_container {
	font-family: Tahoma, Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #fff;
	border: solid 1px #e2e2e2;
	color: #474747;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
    -moz-box-shadow: 0 0 7px #868686;
    -webkit-box-shadow: 0 0 7px#868686;
    box-shadow: 0 0 7px #868686;
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #666;
	background: #CCC url(images/title.gif) top repeat-x;
	/*border: solid 1px #FFF;
	border-bottom: solid 1px #999;*/
	cursor: default;
	padding: 0em;
	margin: 0em;
}

#popup_content {
	background: 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(images/info.gif);
}

#popup_content.confirm {
	background-image: url(images/important.gif);
}

#popup_content.prompt {
	background-image: url(images/help.gif);
}

#popup_message {
	padding-left: 48px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

#popup_ok
{
    background: #2a66c8; /* Old browsers */
    background: -moz-linear-gradient(top, #588fe4 0%, #2a66c8 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#588fe4), color-stop(100%,#2a66c8)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #588fe4 0%,#2a66c8 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #588fe4 0%,#2a66c8 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #588fe4 0%,#2a66c8 100%); /* IE10+ */
    background: linear-gradient(to bottom, #588fe4 0%,#2a66c8 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#588fe4', endColorstr='#2a66c8',GradientType=0 ); /* IE6-9 */
    border: 1px solid #2554a3;  
    color: #fff!important;
    filter: dropshadow(color=#ffda5a, offx=1, offy=1);
    text-decoration: none;
    font-weight: normal;
    cursor:pointer;
    border-radius: 3px;
    font-size:12px;
    padding:5px;
}