/*
 * File:        alert.css
 * Description: Alert styling
 * Author:      Allan Jardine
 * Created:     26-8-07
 * Language:    CSS
 * Project:     Alert
 * 
 * Copyright 2007-2008 Allan Jardine. All rights reserved.


 DOM layout that this style sheet applies to:

 +--div #alert_background--------------------------------------------------+
 |                                                                         |
 |                                                                         |
 |     +--div #alert_wrapper---------------------------------------+       |
 |     |                                                           |       |
 |     | +--div #alert_header------------------------------------+ |       |
 |     | |                        Header                         | |       |
 |     | +-------------------------------------------------------+ |       |
 |     |                                                           |       |
 |     | +--div #alert_content-----------------------------------+ |       |
 |     | |                                                       | |       |
 |     | |                        Content                        | |       |
 |     | |                                                       | |       |
 |     | +-------------------------------------------------------+ |       |
 |     |                                                           |       |
 |     | +--div #alert_buttons-----------------------------------+ |       |
 |     | |                        Buttons                        | |       |
 |     | +-------------------------------------------------------+ |       |
 |     |                                                           |       |
 |     +-----------------------------------------------------------+       |
 |                                                                         |
 |                                                                         |
 +-------------------------------------------------------------------------+

*/

#alert_background {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	
	z-index: 1;
	background-color: black;
	
	_position: absolute;
	_top:expression( document.body.scrollTop+'px' );
}

#alert_background iframe {
	display:none;/*sorry for IE5*/
	display/**/:block;/*sorry for IE5*/
	position:absolute;/*must have*/
	top:0;/*must have*/
	left:0;/*must have*/
	z-index:-1;/*must have*/
	filter:mask();/*must have*/
	width: 100%;/*must have for any big value*/
	height: 100%;/*must have for any big value*/
}

#alert_wrapper {
	position: fixed;
	top: 4%;
	left: 36%;
	height: 110px;
	width: 345px;	
	padding: 0px; /*12px;*/	
	z-index: 2;
	background-color: #FFFFFF;
	border: 1px solid #000000;
	color: #828284;
	
	/* Hooray for webkit! */
	-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
	-webkit-border-radius: 4px;	
	_position: absolute;
	_top: expression( (documentElement.scrollTop + ((document.body.clientHeight-this.clientHeight)/2))+'px');
}
#alert_content {
	/*height: 110px;*/
	padding:0px;
	width:100%;
}
#myContent {
	display:none;
}
.heading {
	font-size: 15px;
	font-weight: Bold;
	color: #828284;	
	background-color:#d9d9d9;
	text-align:left;
}
.lblbutton {
	padding:5px;
	/*background:#F8F8F8;*/
	/*border:#C9CDCD 2px solid;*/
	text-align:center;
	font-size:16px;
	font-weight:bold;
}
#alert_buttons {
	height: 45px;
}

#alert_buttons table {
}

#alert_buttons td {
	margin: 0;
	padding: 0;
	text-align: center;
}

#alert_buttons td.empty {
	background: none;
}

#alert_buttons a {
	display: block;
	height: 28px;
	margin: 0;
	padding-top: 7px;
	margin-left: 10px;
	padding-right: 10px;
	text-align: center;
	font-size: 12px;
	color: black;
	text-decoration: none;
	*cursor: hand;
	cursor: pointer;
}

#alert_buttons a:hover {
	text-decoration: none;
}



.headingcustomproduct {
	border-bottom:3px solid #999999;
	color:#999999;
	font-size:34px;
	font-weight:bold;
	padding:1px 1px 3px;
}

.alert_button_continue {
	cursor:pointer;
	height:23px;
	width:81px;
	background-position:0 0;
}

.alert_button_save {
	cursor:pointer;
	height:23px;
	width:81px;
	background-position:0 0;
}

.alert_informationpadding {
	padding : 5px 0px 0px 15px;
}