/* Version 09.10.26 */

/* This is only needed for IE6 */
body, html {
	width: 100%;
	height: 100%;
	margin: 0;
}

.AlertSetModalOverlay {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1000;
	background-color: black;
	filter: alpha(opacity=65);	/* For IE */
	opacity: .45;				/* For everyone else */
}
* html .AlertSetModalOverlay {
	position: absolute; /* For IE6 */
}

.AlertSetContainer {
	width: 630px;
	margin: 0;
	padding: 10px 12px 10px 10px;
	float: left;
	position: fixed;
	top: 200px;
	z-index: 1001;
	background-color: white;
	color: white;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.4);
}
* html .AlertSetContainer {
	position: absolute; /* For IE6 */
}

.AlertSet_info,
.AlertSet_success,
.AlertSet_warning,
.AlertSet_error,
.AlertSet_validation,
.AlertSet_question,
.AlertSet_mysql_debug,
.AlertSet_debug,
.AlertSet_image,
.AlertSet_caption,
.AlertSet_static,
.AlertSet_AJAX,
.AlertSet_iframe {
	width: 100%;
	border: 1px solid #aaa;
	margin: 0 0 5px;
	padding: 0;
	background-repeat: no-repeat;
	background-position: 10px center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
    max-height: 250px;
    overflow-y: scroll;
}

.AlertSet_caption > div,
.AlertSet_static > div,
.AlertSet_AJAX > div {
	margin: 10px;
}

.AlertSet_iframe iframe {
	margin: 0px;
	width: 100%;
	height: 480px;
	border: none;
}

.AlertSet_image {
	width: auto;
	margin: 0 -2px 10px 0;
	padding: 0;
	border: none;
	text-align: center;
}

.AlertSet_button {
	margin: 5px 0 0 10px;
	padding: 5px 15px;
	float: right;
	cursor: pointer;
    background-color: #ccc;
    color: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.AlertSet_button.yes {
    background: #5cb85c;
    border: 1px solid #4cae4c;
}
.AlertSet_button.no {
    background: #d9534f;
    border: 1px solid #d43f3a;
}
.AlertSet_button.yes:hover {
    background: #4cae4c;
}
.AlertSet_button.no:hover {
    background: #d43f3a;
}
.AlertSet_button.close {
    opacity: 1;
    text-shadow: none;
    padding: 10px 15px;
}
.AlertSet_button.close:focus, .AlertSet_button.close:hover {
    color: #ffffff;
}
* html .AlertSet_button {
	margin-right: -1px; /* For IE 6 */
}

.AlertSet_info ul, .AlertSet_info div,
.AlertSet_success ul, .AlertSet_success div,
.AlertSet_warning ul, .AlertSet_warning div,
.AlertSet_error ul, .AlertSet_error div,
.AlertSet_validation ul, .AlertSet_validation div,
.AlertSet_question ul, .AlertSet_question div,
.AlertSet_mysql_debug ul, .AlertSet_mysql_debug div,
.AlertSet_debug ul, .AlertSet_debug div {
	margin: 15px 10px 15px 50px;
	padding: 0;
	list-style: disc inside;
}

.AlertSet_info li,
.AlertSet_success li,
.AlertSet_warning li,
.AlertSet_error li,
.AlertSet_validation li,
.AlertSet_question li,
.AlertSet_mysql_debug li,
.AlertSet_debug li {
	margin: 0;
	padding: 0;
}

.AlertSet_mysql_debug ul{
	border-bottom: 1px dotted;
	list-style: none;
}

.AlertSet_info {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('/images/AlertSet/icon_info.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.AlertSet_success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image: url('/images/AlertSet/icon_success.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	overflow: hidden;
}
.AlertSet_warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('/images/AlertSet/icon_warning.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.AlertSet_error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('/images/AlertSet/icon_error.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	overflow-y: hidden;
}
.AlertSet_validation {
    color: #D63301;
    background-color: #FFCCBA;
    background-image: url('/images/AlertSet/icon_validation.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.AlertSet_question {
    color: #5F5B84;
    background-color: #C9D2DC;
    background-image: url('/images/AlertSet/icon_question.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}
.AlertSet_mysql_debug {
    color: #6D431F;
    background-color: #EDC39F;
    background-image: url('/images/AlertSet/icon_mysql.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.AlertSet_debug {
    color: #454545;
    background-color: #BCBCBC;
    background-image: url('/images/AlertSet/icon_debug.png');
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.AlertSet_caption {
	color: #666;
	background-color: #ccc;
}

.AlertSet_static,
.AlertSet_AJAX,
.AlertSet_iframe {
    border-color: #CCC;
	color: black;
    background-color: #fff;
}
