#popup_container {
    font-family: Verdana, Arial, Aerial;
    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 #217499;
    color: #002;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

#popup_content input[type='button'] {
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
	background:-moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:-webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:-o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:-ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
	background:linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9',GradientType=0);
	background-color:#f9f9f9;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#000;
	font-family:Arial;
	font-size:12px;
	font-weight:bold;
	padding:3px 12px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}
#popup_content input[type='button']:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
	background:-moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:-webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:-o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:-ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
	background:linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9',GradientType=0);
	background-color:#e9e9e9;
}
#popup_content input[type='button']:active {
	position:relative;
	top:1px;
}


#popup_title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    color: #0e2d5f;
    background: #a3c2ea; /* Old browsers */
    background: -moz-linear-gradient(top,  #a3c2ea 0%, #deefff 73%, #deefff 73%, #deefff 78%, #deefff 78%, #f9fcff 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#a3c2ea), color-stop(73%,#deefff), color-stop(73%,#deefff), color-stop(78%,#deefff), color-stop(78%,#deefff), color-stop(100%,#f9fcff)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #a3c2ea 0%,#deefff 73%,#deefff 73%,#deefff 78%,#deefff 78%,#f9fcff 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #a3c2ea 0%,#deefff 73%,#deefff 73%,#deefff 78%,#deefff 78%,#f9fcff 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #a3c2ea 0%,#deefff 73%,#deefff 73%,#deefff 78%,#deefff 78%,#f9fcff 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #a3c2ea 0%,#deefff 73%,#deefff 73%,#deefff 78%,#deefff 78%,#f9fcff 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a3c2ea', endColorstr='#f9fcff',GradientType=0 ); /* IE6-9 */
    cursor: default;
    padding: 0em;
    margin: 0em;
    border-top-left-radius: 5px;
    -moz-border-top-left-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    -ms-border-top-left-radius: 5px;
    -o-border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -ms-border-top-right-radius: 5px;
    -o-border-top-right-radius: 5px;
}

#popup_content {
    background: 16px 16px no-repeat url(../images/info_popup.png);
    padding: 1em 1.75em;
    margin: 0em;
}

#popup_content.alert {
    background-image: url(../images/info_popup.png);
}

#popup_content.confirm {
    background-image: url(../images/important.png);
}

#popup_content.prompt {
    background-image: url(../images/help.png);
}

#popup_message {
    padding-left: 48px;
}

#popup_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}

#popup_prompt {
    margin: .5em 0em;
}