#popup_container {
 
	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 #555;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
-moz-box-shadow: 0px 2px 5px #222;
-webkit-box-shadow: 0px 2px 5px #222;
box-shadow: 0px 2px 5px #222;
/*IE 7 AND 8 DO NOT SUPPORT BLUR PROPERTY OF SHADOWS*/

}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	line-height: 1.75em;
	color: #fff;
 
	border: solid 1px #c94259;
	border-bottom: solid 1px #a51c30;
	cursor: default;
	padding: 0em;
	margin: 0em;
	padding-left:8px;
	background-color:#A51C30;
}

#popup_content {
	background: 16px 16px no-repeat url(../images/plug/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
}

#popup_content.alert {
	background-image: url(../images/plug/info.gif);
}

#popup_content.confirm {
	background-image: url(../images/plug/important.gif);
}

#popup_content.prompt {
	background-image: url(../images/plug/help.gif);
}

#popup_message {
	padding-left: 48px;	min-height:60px;
}

#popup_panel {
	text-align: center;
	margin: 1em 0em 0em 1em;

}

#popup_panel input 
{
 
    border: solid 1px transparent;
 border-top: 1px solid #c94259;
     background: #a51c30;
     background: -webkit-gradient(linear, left top, left bottom, from(#C41C30), to(#a51c30)); 
     background: -moz-linear-gradient(top, #C41C30, #a51c30);
 padding:2px 12px 2px 12px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: #c94259 0 1px 0;
    -moz-box-shadow: #c94259 0 1px 0;
    box-shadow: #c94259 0 1px 0;
    text-shadow: #c94259 0 1px 0;
    color: white;
   height:26px;
              cursor:pointer;   width:68px;
    font-size:14px;
}

#popup_panel input:hover
{
      border-top-color: #a51c30; 
  background: #a51c30; color: #ccc;
    color: #ccc;
    }
    
    #popup_panel input:active
{
border-top-color: #940f23; background: #940f23;
    color: #999;
    padding-top: 3px;
    padding-bottom: 4px;
    }


#popup_prompt {
	margin: .5em 0em;
}