.notice {
    text-align: center;
    margin-top: 10px;
    border: 1px solid #EEDA69;
    background: url() no-repeat scroll left center, -moz-linear-gradient(center top , #F9F9E5 5%, #F9F99D 6%, #FCFCB6 21%, #F9F9C5 50%, #FCFCB6 93%, #F9F99F 100%) repeat scroll 0 0 transparent;
    padding: 5px;
    display: block;
    color: rgb(51, 51, 51);
    margin-bottom: 5px;
    border-radius: 5px;
    position: relative;
}
.notice .cross{
    position: absolute;
    right: 5px;
    top:0px;
    color: #84000e;
    cursor: pointer;
    font-size: 11px;
    font-weight: bold;
    padding: 0px;
}
#mask{
  position:fixed;
  width:100%;
  height:100%;
  left:0;
  top:0;
  z-index:10000;
  background-color:#fff;
  opacity:0.4;
}
#loadingstatus{
    position: absolute;
    top:0;
    left:30%;
    background-color: #fff;
    padding: 5px 7px;
}
#boxes .dialog {
  position:fixed;
  left:0;
  top:0;
  display:none;
  z-index:10001;
  background-color:#ffffff;
  /*-moz-box-shadow:    0px 0px 3px 6px #ccc;
  -webkit-box-shadow: 0px 0px 3px 6px #ccc;
  box-shadow:         0px 0px 3px 6px #ccc;*/
  border:solid 1px #2E373F;
}
.close-popup{
	background: url("/images/close.png") no-repeat scroll 0% 0% transparent;
	width: 25px;
	height: 29px;
	display: inline;
	z-index: 3200;
	position: absolute;
	top: -13px;
	right: -13px;
	cursor: pointer;
}
.popup-content{
	width:100%;
    height: 100%;
}
.popup-content .wrapper{
    height: 100%;
}
.popup-button {
	/*-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;*/
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	/*background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );*/
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');*/
	background-color:#ededed;
	/*-moz-border-radius:6px;*/
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#777777;
	font-family:arial;
	font-size:15px;
	font-weight:bold;
	padding:3px 10px;
	text-decoration:none;
	text-shadow:1px 1px 0px #ffffff;
	cursor:pointer;
}
.popup-button:hover {
	/*background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );*/
	/*filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');*/
	background-color:#dfdfdf;
}
.popup-button:active {
	position:relative;
	top:1px;
}
.dlgHeader{
    background-color: #2E373F;
    padding: 5px 10px;
    font-size: 15px;
    color:#fff;
}
.dlgContent{
    padding: 8px;
    color: #333333;
    height: 100%;
}
.table-dlg{
    width: 100%;
}
.table-dlg td {
    padding: 3px 0px;
}
.require {
    color: red;
}
.btn { 
	border:none;
	cursor: pointer;
	text-align:center;
	font-size:11px;
	color: #fff;
}
.btn-primary{
	background: none repeat scroll 0 0 #2E373F;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2) inset;
	padding: 4px 12px;
}
.btn-primary:hover{
	background: none repeat scroll 0 0 #232A32;
}
.input-text {
    border: 1px solid #DDDDDD;
    color: #333333;
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    outline: medium none;
    padding: 5px 4px;
    position: relative;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out 0s;
}
.input-text:focus {
    border: 1px solid #CCCCCC;
}
.input-tiny {
    width: 10%;
}
.input-small {
    width: 25%;
}
.input-mid {
    width: 50%;
}
.input-large {
    width: 75%;
}
.input-full {
    -moz-box-sizing: border-box;
    width: 100%;
}
.input-textarea {
    -moz-box-sizing: border-box;
    border: 1px solid #CCCCCC;
    padding: 5px;
    width: 100%;
}
.cbbox {
    border: 1px solid #CCCCCC;
    padding: 6px 4px;
}
.alert {
    background-color: #FCF8E3;
    border: 1px solid #FBEED5;
    color: #C09853;
    margin-bottom: 20px;
    padding: 8px 35px 8px 14px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.alert .close {
    color: #000000;
    cursor: pointer;
    float: right;
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    opacity: 0.2;
    position: relative;
    right: -21px;
    text-shadow: 0 1px 0 #FFFFFF;
    top: -2px;
    border: none;
}