#popup_container {
font-size: 13px;
min-width: 300px; /* Dialog will be no smaller than this */
max-width: 600px; /* Dialog will wrap after this width */
background: #FFF;
border: 2px solid #999;

-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;

-webkit-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.23), 0px -12px 25px rgba(0, 0, 0, 0.04) inset;
-moz-box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.23), 0px -12px 25px rgba(0, 0, 0, 0.04) inset;
box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.23), 0px -12px 25px rgba(0, 0, 0, 0.04) inset;
}

#popup_title {
font-size: 13px;
font-weight: bold;
text-align: left;
line-height: 1.85em;
color: #FFF;
border: 1px solid #FFF;
border-bottom: 1px solid #FFF;
cursor: default;
padding: 0em;
padding-left: 7px;
margin: 0em;
vertical-align:middle;

-moz-border-radius: 4px 4px 0 0;
-webkit-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;

background-color: #177cbc;

background: -moz-linear-gradient(top,  #177cbc 0%, #167fc3 30%, #0e6aa4 93%, #126da6 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left top, color-stop(0%,#177cbc), color-stop(30%,#167fc3), color-stop(93%,#0e6aa4), color-stop(100%,#126da6)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #177cbc 0%,#167fc3 30%,#0e6aa4 93%,#126da6 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #177cbc 0%,#167fc3 30%,#0e6aa4 93%,#126da6 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #177cbc 0%,#167fc3 30%,#0e6aa4 93%,#126da6 100%); /* IE10+ */
background: linear-gradient(to bottom,  #177cbc 0%,#167fc3 30%,#0e6aa4 93%,#126da6 100%); /* W3C */
}

#popup_content {
background: 16px 16px no-repeat url(/f/style/img/jquery.alerts/info.png);
padding: 1em 1.75em;
margin: 0em;
}

#popup_content.alert,
#popup_content.info {
background-image: url(/f/style/img/jquery.alerts/info.png);
}

#popup_content.confirm,
#popup_content.important {
background-image: url(/f/style/img/jquery.alerts/important.png);
}

#popup_content.prompt,
#popup_content.help {
background-image: url(/f/style/img/jquery.alerts/help.png);
}

#popup_content.error {
background-image: url(/f/style/img/jquery.alerts/error.png);
}

#popup_content.success {
background-image: url(/f/style/img/jquery.alerts/success.png);
}

#popup_message {
padding-left: 48px;
}

#popup_panel {
text-align: center;
margin: 1em 0em 0em 1em;
}

#popup_prompt {
margin: .5em 0em;
}