#CF_overlay {
	position: absolute;
	margin: auto;
	top: 0;	left: 0;
	width: 100%; height: 100%;
	z-index: 19999;
	background-color: #036!important;
}
#CF_overlay[id] { position: fixed; }

.CF_Alert {
	position: absolute;
	border-top: 3px solid #036;
	border-left: 3px solid #036;
	border-right: 3px solid #369;
	border-bottom: 3px solid #369;

	text-align: left;
}
.Alert_Frame {
	position: relative;
	height: 100%;
	overflow: hidden;
}
.Alert_Header {
	margin: 0;
	padding: 0;
	border-bottom: 2px solid #036;
	border-right: 2px solid #036;
}
.Alert_Header a{
	text-decoration: none;
}
.Alert_Title {
	font: bold 100% Verdana, Geneva, sans-serif;
	text-shadow: #000 0 1px 0;
	padding: 5px 5px 5px 10px;
	margin: 0;
	text-align: left;
}
.Alert_Content {
	padding: 0;
	margin: 0;
	overflow: auto;
	height: 100%;
/*	border: 1px solid #ff0;*/
	background-color: #E4EBF5;
}
.Alert_Close, .Alert_Close a {
	display: block;
	position: absolute;
	right: 5px; 
	top: 1px;
	padding: 1px 3px;
	font-weight: bold;
	text-decoration: none;
	font-size: 24px;
	color: #fff;
}
.Alert_Close:hover {
	background: transparent;
}
.Alert_Icon_Container {
	position: relative;
	float: left;
	width: 46px;
	padding-left: 20px;
	padding-top: 35px;
/*	margin-left: auto;
	margin-right: auto;
	vertical-align: middle;*/
}
.Alert_Icon {
	height: 32px;
	width: 32px;
	border: 2px solid #336699;
}
.Alert_Message {
	float: right;
	text-align: center;
	padding: 5px;
	width: 260px;
	font: normal 100% Arial, Helvetica, sans-serif;
}


#CF_loading {
	padding: 1.5em;
	text-indent: -10000px;
	background: transparent url(spinner.gif) 50% 0 no-repeat;
}

.blank {
	background: transparent url(assets/blank.gif) 0 0 no-repeat;
}
.exclamation {
	background: transparent url(assets/exclamation.png) 0 0 no-repeat;
}
.information {
	background: transparent url(assets/information.png) 0 0 no-repeat;
}
.question {
	background: transparent url(assets/question.png) 0 0 no-repeat;
}
.auth_error {
	background: transparent url(assets/auth_error.png) 0 0 no-repeat;
}



/* Color scheme */
.Alert_Frame {
/*	-webkit-border-radius: 7px; 
	-moz-border-radius: 7px;
	border-radius: 7px;*/
}
.CF_Alert {
	background-color: #E4EBF5;
	color: #000;
/*	-webkit-box-shadow: 0 8px 64px #000; 
	-moz-box-shadow: 0 0 64px #000; 
	box-shadow: 0 0 64px #000;*/
	
/*	-webkit-border-radius: 7px; 
	-moz-border-radius: 7px;
	border-radius: 7px;*/
}
.Alert_Content { border-top: 1px solid #036; }
.Alert_Header {
  background-color: #369;
  border-bottom: 1px solid #036;
}
.Alert_Title { color: #fff; }
.Alert_Caption { color: #fff; }
.Alert_Close { color: #E4EBF5; }
.Alert_Close:hover { color: #036; }

/* Accordion */
.cfaccordion_handle {
	display: block;
	font-size: 14px;
	background-color: #369;
	color: #fff;
	text-align: left;
	font-variant: small-caps;
	font-weight: bold;
	margin: 0 0 0 0;
	cursor: pointer;
	padding: 0 5px 0 5px;
}
.cfaccordion_active {
	background-color: #036;
	color: #fff;
}
.cfaccordion_content {
}

/* CF Notice */

#CF_Notice_Win {
	display: block;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 20000;
}

#CF_Notice_Text {
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	font-weight: bold;
	z-index: 20001;
}

.notice_error {
	background-color: #FCC;
	color: #900;
}

.notice_good {
	background-color: #CFC;
	color: #060;
}

.notice_normal {
	background-color: #036;
	color: #fff;
}

/* CF Confirm */

#CF_Confirm_Win {
	display: block;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 30000;
}

#CF_Confirm_Text {
	text-align: center;
	font-size: 20px;
	line-height: 40px;
	font-weight: bold;
	z-index: 30001;
}

#CF_Confirm_Buttons {
	text-align: center;
}

#CF_Confirm_Buttons button {
	margin-left: 10px;
	margin-right: 10px;
}

#CF_Confirm_True_Button, #CF_Confirm_False_Button {
	text-align: center;
    margin:0 0 0 0;
	margin-left: auto;
	margin-right: auto;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;

    font-family: Arial, Verdana, sans-serif;
    font-size: 0.9em;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}

#CF_Confirm_True_Button.positive, #CF_Confirm_False_Button.positive {
    color:#529214;
}
#CF_Confirm_True_Button.negative, #CF_Confirm_False_Button.negative {
    color:#d12f19;
}
#CF_Confirm_True_Button:hover, #CF_Confirm_False_Button:hover {
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
#CF_Confirm_True_Button.positive:hover, #CF_Confirm_False_Button.positive:hover {
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
#CF_Confirm_True_Button.positive:active, #CF_Confirm_False_Button.positive:active {
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;
}
#CF_Confirm_True_Button.negative:hover, #CF_Confirm_False_Button.negative:hover {
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
#CF_Confirm_True_Button.negative:active, #CF_Confirm_False_Button.negative:active {
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}

