/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:50;
	
	/* styling */
	background-color:#333;
	
	width:675px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */

button {
	outline:1px outset #999;	
	border:1px solid #fff;	
	background-color:#222;
	color:#fff;
	height:24px;
	-moz-border-radius:4px;
	-moz-outline-radius:4px;
	cursor:pointer;
	font-size:11px;
}


.submitbut {
	outline:1px outset #999;	
	border:1px solid #fff;	
	background-color:#222;
	color:#fff;
	height:24px;
	-moz-border-radius:4px;
	-moz-outline-radius:4px;
	cursor:pointer;
	font-size:11px;
}


/* scrollable root element */
#wizard1 {		
	font-size:12px;
	height:auto;
	width:800px;
	height:650px;
	overflow:hidden;
	position:relative;
	/* rounded corners for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	z-index: 1;
}  

/* scrollable items */
#wizard1 .items {
	width:20000em;	
	clear:both;	
	position:absolute;	
}

/* single item */
#wizard1 .page1 {	
	width:800px;
	float:left;	
}

/* title */
#wizard1 h2 {
	border-bottom:1px dotted #ccc;
	font-size:22px;
	font-weight:normal;
	margin:10px 0 0 0;
	padding-bottom:15px;		
}

#wizard1 h2 em {
	display:block;
	font-size:14px;
	color:#666;
	font-style:normal;
	margin-top:5px;
}

/* input fields */
#wizard1 ul {
	padding:0px !important;
	margin:0px !important;
}

#wizard1 li {
	list-style-type:none;
	list-style-image:none;
	margin-bottom:10px;	
}


#wizard1 label em {
	font-size:11px;
	color:#666;	
	font-style:normal;
}

em {
	font-size:11px;
	color:#666;	
	font-style:normal;
	font-weight:800;
}

#wizard1 .text {
	width:50%;
	padding:5px;
	border:1px solid #ccc;
	color:#456;
	letter-spacing:1px;
}

#wizard1 select {
	border:1px solid #ccc;
	width:94%;	
	padding:4px;
}

#wizard1 label span {
	color:#b8128f;
	font-weight:bold;
	position:relative;
	top:4px;
	font-size:20px;
}

#wizard1 .double label { 
	width:50%;
	float:left;
}

#wizard1 .double .text {
	width:93%;	
}

#wizard1 .clearfix {
	clear:left;
	padding-top:10px;	
}

#wizard1 .right {
	float:right;		
}

/* validation error message bar */
#drawer1 {
	background:#123  repeat-x scroll 0 0;
	_background-color:#123;
	overflow:visible;
	position:fixed !important;	
	position: absolute;
	left:0;
	top:0;
	text-align:center;
	padding:15px;
	font-size:18px;
	border-bottom:2px solid #789;
	width:100%;
	display:none;
	z-index:2;
}

#wizard1 .error {
	border:1px solid red;		
}

#status li {
	list-style-type:none;
	list-style-image:none;
	float:left;
	color:#fff;
	padding:8px 30px;
	_padding:10px 30px;
	#padding:10px 30px;
}

#status li.active {
	background-color:#fff;
	font-weight:normal;		
}
