#popup_container {
	font-family: Verdana, Geneva, sans-serif;
	top:40px;
	font-size: 12px;
	min-width: 700px; /* Dialog will be no smaller than this */
	max-width: 750px; /* Dialog will wrap after this width */
	background: #4f4f4f;
	border: solid 2px #FFF; 
	border-radius: 8px;
	color: #000;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	box-shadow: 0 5px 10px 0 #333333;

}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 10px;
	color: #FFF;
	/* background: #ede0d9 url('../images/title.gif') top repeat-x; 
	border: solid 1px #FFF;
	border-bottom: solid 2px #999;*/
	cursor: default;
	padding: 15px 0px 0px 0px;
	margin: 5px;
}

#popup_content {
	background: 20px 0px no-repeat url('../images/info.gif');
	padding: 0px 25px 25px 10px;
	/* margin: 5px; */
	margin-bottom:0;
} 

#popup_content.alert {
	background-image: url('../images/warning2.png');
}

#popup_content.confirm {
	background-image: url('../images/warning2.png');
}

#popup_content.prompt {
	background-image: url('../images/help.gif');
}

#popup_message {
	padding: 20px 5px 15px 45px;
}

#popup_panel {
	text-align: center;
	margin: 10px 0px 0px 10px;
}

#popup_prompt {
	margin: 10px 0px;
}

#popup_ok {
	font-family: Verdana,Geneva,sans-serif;
    background: #4f4f4f;
    color: #FFF;
    	border: solid 2px #FFF; 
	border-radius: 8px;
    padding: 8px;
}
	#popup_ok :hover {
	font-family: Verdana, Geneva, sans-serif;
    	border: solid 2px #FFF; 
	border-radius: 8px;
	background: #CCC;
	/* border: 2px solid #CCC; */
    transform: scale(1.025);
    cursor: pointer;
}
	#popup_ok:active {
	color:#4f4f4f;
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
}

#popup_cancel{
	font-family: Verdana,Geneva,sans-serif;
    background: #4f4f4f;
    color: #FFF;
    	border: solid 2px #FFF; 
	border-radius: 8px;
    padding: 8px;
}
 #popup_cancel:hover {
	font-family: Verdana, Geneva, sans-serif;
    	border: solid 2px #FFF; 
	border-radius: 8px;
	background: #CCC;
	/* border: 2px solid #CCC; */
    transform: scale(1.025);
    cursor: pointer;
}
 #popup_cancel:active {
	color:#4f4f4f;
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
}