﻿#popup_container
{   
    background: -webkit-linear-gradient(#CE0236, #CE0236); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#CE0236, #CE0236); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#CE0236, #CE0236); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#CE0236, #CE0236); /* Standard syntax */
	
	color: #FFF;
    -webkit-outline-radius: 5px;
    -moz-outline-radius: 5px;
    outline-radius: 5px;

	min-width: 200px; /* Dialog will be no smaller than this */
	max-width: 300px; /* Dialog will wrap after this width */
}

#popup_title
{
    font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.75em;
	color: #CE0236;
	background: #CCC url(images/Messages/title.gif) top repeat-x;
	cursor: default;
	padding: 0em;
	margin: 0em;

    -webkit-outline-radius: 5px;
    -moz-outline-radius: 5px;
    -o-outline-radius: 5px;
    -ms-outline-radius: 5px;
    outline-radius: 5px;
}

#popup_content
{   
    /*
	background: 16px 16px no-repeat url(images/Messages/info.gif);
	*/
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert
{
    /*
	background-image: url(images/Messages/info.png);
    */
}

#popup_content.confirm
{
    /*
	background-image: url(images/Messages/important.gif);
    */
}

#popup_content.prompt
{
    /*
	background-image: url(images/Messages/help.gif);
    */
}

#popup_message
{
	padding-left: 5px;
}

#popup_panel
{
	text-align: right;
	margin: 1em 0em 0em 1em;
}

#popup_prompt
{
	margin: .5em 0em;
}

#popup_ok
{
    font-weight: bold;
    color: #CE0236;
    background-color: #FFF;
    border:0;
    padding: 5px;

}