#popup_container {
	font-family: Arial, sans-serif;
	font-size: 12px;
	min-width: 300px; /* Dialog will be no smaller than this */
	max-width: 600px; /* Dialog will wrap after this width */
	background: #116DC4;
	border: solid 5px #116DC4;
	color: #000;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	box-shadow:	1px 1px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:	1px 1px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:	1px 1px 10px rgba(0, 0, 0, 0.5);
}

#popup_title {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 24px;
	color: #fff;
	background: #116DC4 url(../images/JT/sprite.png) top repeat-x;
	/*border: solid 1px #FFF;
	border-bottom: solid 1px #999;*/
	cursor: default;
	padding: 0em;
	margin: 0em;
	height:30px;
}

#popup_content {
	background: #ffffff 16px 16px no-repeat url(images/info.gif);
	padding: 1em 1.75em;
	margin: 0em;
	border: 0 none;
   -moz-border-radius: 5px;
	-webkit-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: 48px;*/
	padding-left: 4px;
}

#popup_panel {
	text-align: right;
	margin: 1em 0em 0em 1em;
}

#popup_prompt {
	margin: .5em 0em;
}
#popup_ok 
{
	 color: #fff !important;
        text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
        background-color: #035493;
        background-image: -moz-linear-gradient(top,#0983f6,#035493);
        background-image: -webkit-gradient(linear,0 0,0 100%,from(#0983f6),to(#035493));
        background-image: -webkit-linear-gradient(top,#0983f6,#035493);
        background-image: -o-linear-gradient(top,#0983f6,#035493);
        background-image: linear-gradient(to bottom,#0983f6,#035493);
        background-repeat: repeat-x;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0983f6',endColorstr='#ff035493',GradientType=0);
        border-color: #035493 #035493 #1d5eae;
        border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25); 
        *background-color:#035493;
        filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);
        border-color:#3c6791;
        -webkit-box-shadow:rgba(255,255,255,0.3)0 1px 0 inset;
        -moz-box-shadow:rgba(255,255,255,0.3)0 1px 0 inset;
        box-shadow:rgba(255,255,255,0.3)0 1px 0 inset;
        cursor:pointer;
        display:inline-block;
        font-size:13px;
        margin-bottom:0;
        padding:4px 12px;
        text-align:center;
        vertical-align:middle;
        border-width: 1px;
        border-style: solid;
        margin: 0 0;
    }
#popup_ok:hover
    {
        color:#fff;
	background:#035493;
	*background-color:#035493;
        text-decoration: none;
    
}