/* CSS Document */

/* fieldset styling */
fieldset 
{
	padding:1em;
	border:0;
	border-top:1px solid #DDD;
	border-bottom:1px solid #DDD;
	background:#F8F8F8;
	margin:1em 0 0 0;
	/*border-left:2px solid #E8E8E8;
	border-right:2px solid #E8E8E8;*/
}
fieldset>p
{
	margin-top:0;
}
/* legend styling */
fieldset legend 
{
	font-size:14px;
	color:#1498D7;
}
fieldset fieldset
{
	margin:0;
	padding:0 20px 0 0;
	border-bottom:none;
}
fieldset fieldset legend
{
	font-size:13px;
}
/* IE hack */
html html fieldset
{ 
	position: relative; 
}
html legend
{ 
	position:absolute; top: -.5em; left: .5em; 
}
html fieldset
{ 
	position: relative; margin-top:2em; padding-top:.75em; 
}
/* End hack */
form fieldset p 
{
	position: relative;
	width: 100%;
	margin:5px 0 7px 0;
}
form p
{
	margin-left:10px;
	margin-right:10px;
	margin-bottom:-8px;
}
/* style for  labels */
label, dt
{
	float: left;
	width: 10em;
}
/* style for required labels */
label.required 
{
}
/* style for optional labels */
label.optional:after
{
	font-size:80%;
	color:#666;
	content:"(optional)";
}
/* :KLUDGE: Explicitly set the width for IE6- */
* html.feedback
{
	width: 10em;
}
input 
{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	padding:3px 4px 2px 3px;
}
input[type="text"], textarea, input[type="password"]
{
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	color:#000;
	width: 200px;
}
input.radio, input.checkbox, input.submit 
{
	width: auto;
}
input[type="submit"]
{
	font-weight:bold;
	margin-left:12px;
	margin-top:10px;
	margin-right:5px;
	font-size:10px;
	padding:3px 10px 3px 10px;
	text-transform:uppercase;
	background:#008FD4;
	color:#EFEFEF;
	border:0;
}
input[type="text"]:hover, textarea:hover, input[type="password"]:hover
{
	border:1px solid #999;
}
/* style form elements on focus */
input[type="text"]:focus, textarea:focus, input[type="password"]:focus
{
	border: 1px solid #008FD4;
}
input.radio 
{
	float: left;
	margin-right: 1em;
}
textarea 
{
	width: 350px;
	height: 200px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	padding:2px;
}
select
{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
}
.helpBox
{
	width:200px;
	background:#93CBEC;
	padding:3px;
	position:absolute;
	left:200px;
	margin-top:-35px;
}
.helpBox p
{
	color:#FFF;
	font-size:11px;
	margin:0;
	line-height:normal;
}
form .error, form .success
{
	display:inline-block;
	margin:-4px 0 0 0;
}
