#popup_container {
	font-family: Arial; font-size: 12px; font-weight:normal;
	min-width: 400px; /* Dialog will be no smaller than this */
	max-width: 400px; /* Dialog will wrap after this width */
	background: #2c9ac8; color: #fff;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow:    0px 0px 7px 7px #ccc;
    -webkit-box-shadow: 0px 0px 7px 7px #ccc;
    box-shadow:         0px 0px 7px 7px #ccc;
}

#popup_title {
	font-family: Arial; font-size: 14px; font-weight: bold;
	color: #fff; text-align: left;
	background: #2c9ac8 url(../images/titleAlert.jpg) top repeat-x;
	border: 0; line-height: 1.75em;
	padding: 0em 0em 0em 1em;
	cursor: default;
	margin: 0em;
}

#popup_content {
	background:#fff url(../images/info.gif) no-repeat 16px 13px;
	padding: 20px 20px 15px 20px;
	margin:5px;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#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: 35px;
}

#popup_panel {
	text-align: right;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}

/* Custom dialog styles */
#popup_container.Customstyle {
	font-family: Arial; font-size: 12px; font-weight:normal;
	min-width: 400px; /* Dialog will be no smaller than this */
	max-width: 400px; /* Dialog will wrap after this width */
	background: #2c9ac8; color: #fff;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -moz-box-shadow:    0px 0px 6px 6px #ccc;
    -webkit-box-shadow: 0px 0px 6px 6px #ccc;
    box-shadow:         0px 0px 6px 6px #ccc;
}

#popup_container.Customstyle #popup_title {
	font-family: Arial; font-size: 14px; font-weight: bold;
	color: #fff; text-align: left;
	background: #2c9ac8 url(../images/titleAlert.jpg) top repeat-x;
	border: 0; line-height: 1.75em;
	padding: 0.5em 0em 0em 1em;
	cursor: default;
	margin: 0em;
	display:block;
	-webkit-border-radius: 6px 6px 0 0;
    -moz-border-radius: 6px 6px 0 0;
    border-radius: 6px 6px 0 0;
}

#popup_container.Customstyle #popup_content {
	background:#fff url(../images/info.gif) no-repeat 16px 13px;
	padding: 20px 20px 15px 20px;
	margin:5px;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#popup_container.Customstyle #popup_message {
	font-family: Arial; font-size: 12px; font-weight:normal;
	padding-bottom:15px;
	color:#000;
}

#popup_container.Customstyle INPUT[type='button'] {
	border:solid 1px #e8ac47;
    font-weight:bold; font-size: 11px; color: #343434; font-family: Arial;
    text-align: center; text-decoration: none; background: url(../images/buttonAlert.jpg) repeat-x left top;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding:3px 7px;
    cursor:pointer;
}
#popup_container.Customstyle INPUT[type='button']:hover {
    background: url(../images/buttonAlert_Select.jpg) repeat-x left top;
    color: #706147
}