form.claim-form{ /*only form elements with the class "claim-form"*/
	position: relative;
	margin:20px 0;
	background: none;
	list-style:none;
	list-style-type: none;
	list-style-image: none;
	text-shadow: none;
	font-family:inherit;
}

form.claim-form li{/*li elements that are descendants of (inside) of form elements of class "claim-form"*/
	margin: 0 !important;
	width: auto !important;
	background: none !important;
	list-style: none !important;
	list-style-type: none !important;
	list-style-image: none !important;
	clear: both;
}
	
	.claim-form  span.claim-left{
		float:left;
		width:48%;
	}

	.claim-form span.claim-right{
		float:right;
		width:48%;
	}

.claim-form span.claim-right input,
.claim-form span.claim-right select,
.claim-form span.claim-left input,
.claim-form span.claim-left select{
	width:100% !important;
}

.claim-form li div label,
.claim-form li span label {
	margin: 0;
	font-size: 90%;
	padding-left: 1.5em;
}

/* !Remove list item styles */
.claim-form ul {
	margin: 0 14px !important;
	padding: 0 !important;
	background: none !important;
	list-style: none !important;
	list-style-type: none !important;
	list-style-image: none !important;
	font-size: 13px;
	line-height: inherit;
}
	.claim-form li {
		clear: both;
		margin: 0 !important;
		padding: 6px 1% 9px !important;
		width: 64%;
		background: none !important;
		list-style: none !important;
		list-style-type: none !important;
		list-style-image: none !important;
	}


/*Fieldset*/
.claim-form fieldset{
	clear:both;
	margin:15px 0;
	padding: 0;
	border:1px solid #D3D3D3;
	border-radius:3px;
	background-color:#eeeeee;
}

/*Legend*/
.claim-legend{ /*.claim-form .claim-legend{*/
	margin:5px 14px;
	padding:0 6px;
	border-bottom:1px solid #CCCCCC;
	color:#990000;
	font-size:inherit;
}

	.claim-legend h3{ /*.claim-form .claim-legend h3 {*/
		margin: 0 !important;
		padding: 0 !important;
		font-size:20px;
		line-height: 2.0em;
	}
	
	/* !Instructions */
.claim-item-instructions{
	border-radius:3px;
	background-color:#e3e3e3;
}

	.claim-item-instructions ul,
	.claim-item-instructions ul li {
		padding-bottom: 0;
		list-style: disc;
	}
	
	/* !Sections */
.claim-section-div {
	 float:left;
	 margin:10px 0;
	 padding:10px;
	 width:97%;
	 border-radius:3px;
	 background-color:#D4D4D4;
}
	
/* !Description */
.claim-form label,
label.claim-desc{
	display:block;
	margin:0;
	padding: 0 0 3px 0;
	padding-left: 1em;
	color:#000;
}
	label.claim-desc{
		font-weight:bold;
	}
	
		label.claim-desc .claim-required-asterisk {
		margin: 0;
		padding: 0;
		color: #BC1212;
		vertical-align: baseline;
		font-weight: bold;
	}
	

/* !Input, Textarea, and Select */
input.claim-text,
textarea.claim-textarea,
select.claim-select {
	margin: 0 0 5px 0;
	height: auto;
	color: #373737;
	font-size:100%;
	font-family:inherit;
	line-height: normal;
}

select.claim-select{
	padding: 1px 0 0;
	border: 1px solid #DDDDDD;
  	border-radius: 3px;
	background: none repeat scroll 0 0 #FAFAFA;
}

input.claim-text,
textarea.claim-textarea {
    padding: 3px 0;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
	background: none repeat scroll 0 0 #FAFAFA;

	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	   -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	-webkit-transition: border linear .2s, box-shadow linear .2s;
	   -moz-transition: border linear .2s, box-shadow linear .2s;
	     -o-transition: border linear .2s, box-shadow linear .2s;
	        transition: border linear .2s, box-shadow linear .2s;
}

	input.claim-text:focus,
	textarea.claim-textarea:focus,
	select:focus {
		outline: 0;
		outline: thin dotted \9;
		/* IE6-9 */
		border-color: rgba(82, 168, 236, 0.8);
		background-color: #FAFAFA;

		-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
		   -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
		        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
	}

	input.claim-text.claim-error::focus,
	textarea.claim-textarea.claim-error::focus {
		border-color: rgba(238,83,83,0.8);

		-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238,83,83,.6);
		   -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238,83,83,.6);
		        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(238,83,83,.6);
	}

textarea.claim-medium{
	height:10em;
}

/* !Error */
label.claim-error{
	color:red;
	font-weight:bold;
	font-size:90%;
}

input.claim-error,
select.claim-error,
textarea.claim-error{
	border:1px solid red;
}	
	
