/* Quote Form (Get a quote page) */

#quote-form {
	width:478px;
	background-color: #fcfcfc;
	border: 1px solid #e0e0e0;
	margin: 10px 10px;
	font-size: 14px;
}

.quote-field-container {
	width:458px;
	float:left;
	margin: 0 10px 3px 10px;
}

.quote-formfield {
	border: 1px solid #282727;
	width: 250px;
	float: right;
	height: 20px;
	font-size: 14px;
	color: #333;
	padding-left: 5px;
	margin-top: 10px;
}

.quote-formfield:focus {
	background-color: #e9f3f3;
}


/* Quote Form v2 (Get a quote page) */

#quote-form-container {
	width:478px;
	background-color: #fcfcfc;
	border: 1px solid #e0e0e0;
	margin: 3px 10px 3px 10px;
}

.quote-container {
	width:auto;
	float:left;
	margin: 10px 10px;
}

.form-label {
	float:left;
	width:auto;
	color: #333;
	margin-right: 10px;
	font-size: 14px;
}

.quote-form {
	border: 1px solid #282727;
	width: 100px;
	float: right;
	height: 20px;
	color: #333;
	padding-left: 5px;
	font-size: 14px;
	padding-top: 4px;
}

.quote-form:focus {
	background-color: #e9f3f3;
}

.submitbutton_quote {
	background-color:#6d0303;
	border:0px solid #333;
	color:#FFF;
	float:left;
	font-size:1em;
	height:24px;
	width: 231px;
	margin-right:0;
	margin-top:5px;
	margin-bottom:10px;
	margin-left: 9px;
	padding-bottom: 5px;
	padding-top:2px;
}

.submitbutton_quote:hover {
	background-color:#570202;
}	

#clear {
	clear: both;
}

/* - - - - - - - - - - - - - - - - - - - - -

Title : Lightbox CSS
Author : Kevin Hale
URL : http://particletree.com/features/lightbox-gone-wild/

Created : January 13, 2006
Modified : February 1, 2006

- - - - - - - - - - - - - - - - - - - - - */

#lightbox{
	display:none;
	position: absolute;
	top:50%;
	left:50%;
	z-index:9999;
	width:500px;
	height:430px;
	margin:-220px 0 0 -250px;
	border:1px solid #fff;
	background:#FFF;
	text-align:left;
}
#lightbox[id]{
	position:fixed;
}

#overlay{
	display:none;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:5000;
	background-color:#000;
	-moz-opacity: 0.80;
	opacity:.80;
	filter: alpha(opacity=80);
}
#overlay[id]{
	position:fixed;
}

#lightbox.done #lbLoadMessage{
	display:none;
}
#lightbox.done #lbContent{
	display:block;
}
#lightbox.loading #lbContent{
	display:none;
}
#lightbox.loading #lbLoadMessage{
	display:block;
}

#lightbox.done img{
	width:100%;
	height:100%;
}