body, html, h1, input{
	
}

.popup_container {
	min-width: 400px; /* Dialog will be no smaller than this */
	max-width: 800px; /* Dialog will wrap after this width */
	/*border: solid 1px #70b2ca;*/
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 0px;
	box-shadow: 0px 0px 10px #999;
	background:#FFF;
    padding:15px;
    /*background: #eaf6fc;*/
    border-radius:7px;
    /*background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VhZjZmYyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjU5JSIgc3RvcC1jb2xvcj0iI2Y5ZmRmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmOWZkZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  #eaf6fc 0%, #f9fdff 59%, #f9fdff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaf6fc), color-stop(59%,#f9fdff), color-stop(100%,#f9fdff));
    background: -webkit-linear-gradient(top,  #eaf6fc 0%,#f9fdff 59%,#f9fdff 100%);
    background: -o-linear-gradient(top,  #eaf6fc 0%,#f9fdff 59%,#f9fdff 100%);
    background: -ms-linear-gradient(top,  #eaf6fc 0%,#f9fdff 59%,#f9fdff 100%);
    background: linear-gradient(to bottom,  #eaf6fc 0%,#f9fdff 59%,#f9fdff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaf6fc', endColorstr='#f9fdff',GradientType=0 );*/

}

.popup_container .button{
	text-shadow: 1px 1px #EEE;
	border:#a5a5a5 1px solid;
	padding:3px 7px;
	border-radius:4px;
	background:url(../Image/Popup/button_hover.png) repeat-x top;
	font-weight:bold;
	cursor:pointer;
    width:auto !important;
    margin-left:10px;
    
}

.popup_container .button:hover{
	background:url(../Image/Popup/button.png) repeat-x top;
}

/*.popup_container input, .popup_containerselect, .popup_containertextarea {
    width:auto !important;
}*/

.popup_container .field input{
    width:253px !important;
    float:left;
    background:none;
}

.popup_container .field label {
    width:130px !important;
    float:left;
}



.popup_title span {
    float:left;
    color:#45311f;
    color:#044180;
    /*color:#000;*/
    /*padding:2px 0px 2px 20px;*/
    /*background:url(../Image/Popup/popup-icon.png) no-repeat left;*/
}

.popup_title a.popup_close {
    float:right;
    display:block;
    width:25px;
    height:23px;
    background:url(../Image/Popup/close.png) no-repeat top left;
    /*margin-right:10px;*/
    cursor:pointer;
}

.popup_title a.popup_close:hover {
    background-position:right;
}

.popup_content {
	/*background:#fff;*/
	/*padding: 0 1em 1em 1em;*/
	margin: 0em;
    position:relative;
}

.popup_content.info {
	background: 8px 0px no-repeat url(../Image/Popup/info.png);
}

.popup_content.error {
	background: 8px 0px no-repeat url(../Image/Popup/error.png);
}

.popup_content.confirm {
	background: 8px 0px no-repeat url(../Image/Popup/confirm.png);
}

.popup_content.success {
	background: 8px 0px no-repeat url(../Image/Popup/success.png);
}

.popup_content.warning {
	background: 8px 0px no-repeat url(../Image/Popup/warning.png);
}

.popup_message {
    max-height:550px;
    overflow:auto;
    overflow-x:hidden;
    position:relative;
}

.popup_panel {
	text-align: right;
	margin: 1em 0em 0em 1em;
    padding:5px;
}

.popup_prompt {
	margin: .5em 0em;
}

.popup_message .loading {
    padding-top:80px;
    background:url(../Image/Popup/loading.gif) no-repeat center;
    text-align:center;
    font-weight:bold;
    color:#035c7c;
}

.popup_container .ui-icon {
    width:0 !important;
    height:0 !important;
}



@media (max-width: 450px) {
    .popup_container {
        min-width:calc(100% - 50px);
    }
}