﻿#form-wrap {
	background-color:#fff;
	font-family: Arial, Helvetica, sans-serif;
}

/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}


/* scrollable root element */
#wizard {
	background:#fff url(../img/formback.png) repeat-x scroll 0 0;
	border:3px solid #252525;
	font-size:11px;
	height:725px;
	width:690px;
	overflow:hidden;
	position:relative;
	float:left;
	/* rounded corners for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 15px;
}  

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

/* single item */
#wizard .page {
	width:620px;
	float:left;
	padding-top: 20px;
	padding-right: 15px;
	padding-bottom: 20px;
	padding-left: 30px;
}

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

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

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

#wizard li {
	list-style-type:none;
	list-style-image:none;
	margin-bottom:25px;	
}

#wizard label {
	font-size:16px;	
	display:block;
}

#wizard label strong {
	color:#95b662;	
	position:relative;
	top:-1px;
}

#wizard label em {
	font-size:10px;
	color:#666;	
	font-style:normal;
}

#wizard .text {
	/*width:50%;*/
	padding:5px;
	border:1px solid #ccc;
	color:#252525;
	letter-spacing:1px;
}

#wizard select {
	border:1px solid #ccc;
	padding:4px;
}

#wizard label span {
	color:#95b662;
	font-weight:bold;
	position:relative;
	top:4px;
	font-size:20px;
}

#wizard .double label { 
	width:100%;
	float:left;
	/*margin-right:5px;*/
	margin-bottom:10px;
}

#wizard .double .text {
	
}

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

#wizard .right {
	float:right;	
	width:auto;
}

/* validation error message bar */
#drawer {
	background:#fff url(../img/drawerback.png) repeat-x scroll 0 0;
	/*_background-color:#EEE;*/
	overflow:visible;
	position:fixed;	
	left:0;
	top:0;
	text-align:center;
	padding:15px;
	font-size:18px;
	border-bottom:1px solid #252525;
	width:100%;
	display:none;
	z-index:2;
}

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

#wizard #status {
	margin:0px !important;
	height:34px;
	background:#123 url(../img/formstatusback.png) repeat-x;
	padding-left:25px !important;
	/*_background:#123;*/
}

#status li {
	list-style-type:none;
	list-style-image:none;
	float:left;
	color:#fff;
	width:auto;
	font-size:11px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}

#status li.active {
	font-size:16px;
	color:#95b662;
	/*background-color:#95b662;*/
	font-weight:bold;		
}

#wizard p {
	font-size:16px;
}

#terms {
	overflow:auto;
	width:500px;
	height:350px;
}

#terms p {
	font-size:11px;
	background-color:#FFF;
	padding:5px;
	padding-right:10px;
	padding-bottom:5px;
}


#wizard .items .page .LV_validation_message{
	font-size: 12px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 5px;
}

#wizard .items .page .LV_valid {
   font-family:"Arial Black", Gadget, sans-serif;
	font-size:24px;
	color:#95b662;
}
	
#wizard .items .page .LV_invalid {
    color:#CC0000;
}
    
#wizard .items .page .LV_valid_field,
input.LV_valid_field:hover, 
input.LV_valid_field:active,
textarea.LV_valid_field:hover, 
textarea.LV_valid_field:active {
    border: 1px solid #95b662;
}
    
#wizard .items .page .LV_invalid_field, 
input.LV_invalid_field:hover, 
input.LV_invalid_field:active,
textarea.LV_invalid_field:hover, 
textarea.LV_invalid_field:active {
    border: 1px solid #CC0000;
}