@charset "utf-8";
/* CSS Document */

/*
------------------------------------------
Basic elements
------------------------------------------
*/

/* re-set margin and padding to zero for IE6 compatibility */
* {
	margin: 0;
	padding: 0;
}

html, body { 
	height: 100%; /* necessary to allow child containers to have 100% height */
}

body {
	font-family: Calibri,Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666;
	background-color: #FFF;
	background-image: url(images/bg-stripe.jpg);
	background-repeat: repeat-x;	
}

h1 {
	text-transform: uppercase;
	font-size: 32px;
	color: #000;
}	

h2 {
	font-variant:small-caps;
	font-size: 24px;
	color: #000;
}	

h3 {
	font-variant:small-caps;
	font-size: 18px;
	color: #3399cc;
}

a {
	color: #3399cc;
	text-decoration: none;
}

	a:hover {
		text-decoration: underline;
	}

p {
	margin: 0px;
	padding: 0px;
}

img {
	border: none;
}

/* THESE STYLES WILL SHOW UP IN THE CMS TEXT EDITOR */
	/* <textEditor> */	
		.textBlack, .textBlack a {color: #111;}
		.textWhite, .textWhite a {color: #fff;}	
		.textOrange {color: #ff9900;}
		.allCaps {font-variant: small-caps;}
		.left {float: left; margin-right: 1em;}
		.right {float: right; margin-left: 1em;}
		.textSmall {font-size: 85%;}
		.textLarge {font-size: 125%;}
		.noborder {border: none !important;}
		span.imageBorder img {border: 1px solid #333;}
		.clearPadding {padding: 0;}
	/* </textEditor> */


/*
------------------------------------------
Global Layout Containers
------------------------------------------
*/

#wrapper {
	margin-left: auto; /* centers the div in the viewport */
	margin-right: auto; /* centers the div in the viewport */
	width: 800px;
	min-height: 100%; /* min-height not rendered properly in IE6, use workaround */
}

	/* min-height workaround for IE6 */
	* html #wrapper {
		height: 100%;
	}
	
	#wrapper ul {
		margin-left: 0;
		padding-left: 0;
	}
	
#headerContainer {
	float: left;
	width: 800px;
	height: 66px;
	margin-top: 10px;
}

	#headerLogo {
		float: left;
		height: 66px;
		width: 115px;
		text-align: center;
		overflow: hidden;
	}

	#headerOverNavLeft {
		float: left;
		/* width: 200px; */
		height: 39px;
	}
	
		#headerOverNavLeft p.phone {
			font-family: "Trebuchet MS", Helvetica, Jamrul, sans-serif;
			color: #000;
			padding-top: 20px;
		}	
	
	#headerOverNavRight {
		float: right;
		/* width: 485px; */
		height: 39px;
		text-align: right;
	}
	
		#headerOverNavRight h2 a {
			color: #ff9900;
			padding-top: 12px;
			display: block;
		}

	#navContainer {
		/* float: left; */
clear: both;
		/* width: 685px; */
width: 800px;
		height: 27px;
		background-color: #dde1e3;
		text-transform: uppercase;
	}
	
		#navContainer ul {
			list-style: none;
			margin-left: 0;
			padding-left: 0;
		}
		
		#navContainer li {
			float: left;
			line-height: 27px;
			margin-left: 30px;
		}
		
		#navContainer a {
			color: #6a7275;
		}
		
		#navContainer a:hover {
			color: #414e53;
			text-decoration: none;
		}
		
#splashContainer {
	float: left;
	width: 800px;
	height: 200px;
}

#footerContainer {
	float: left;
	width: 800px;
	height: auto;
	overflow: visible;
	margin-top: 20px;
	border-top: 1px solid #D5D5D5;
	font-family: "Trebuchet MS", Helvetica, Jamrul, sans-serif;
	font-size: 14px;
}
	
	#footerContainer .globalMenu li {
		float: left;
		list-style: none;
		width: 200px;		
	}
	
	#footerContainer li a {
		color: #000;
	}
	
		#footerContainer ul.level2 {
			list-style: none;
		}
		
		#footerContainer .level2 a {
			color: #3399cc;
		}
	
	#footerContainer a:hover {
		text-decoration: none;
	}
	
	#footerContainer p.footNotes {
		display: block;
		clear: both;
		text-align: center;
		margin: 20px 0 20px 0;
		padding-top: 20px;
	}
	
#clear {
	clear: both;
}
	
/*
------------------------------------------
Home-Specific Layout Containers
------------------------------------------
*/

#bannerLeft {
	float: left;
	width: 50%;
	height: auto;
	overflow: visible;
}

	#bannerLeft h1 {
		padding-top: 20px;
	}
	
	#bannerLeft h2 {
		padding: 10px 5px 5px 0;
	}
	
	#bannerLeft h2 a {
		color: #ff9900;
	}
	
	#bannerLeft p {
		padding-right: 5px;
		line-height: 150%;
	}

	#bannerLeft p.primary {
		font-size: 1.2em;
		line-height: 222%;
	}

#bannerRight {
	float: right;
	width: 50%;
	height: auto;
	overflow: visible;
	text-align: center;
	padding: 20px 0 20px 0;
}

#subBannerLeft {
	float: left;
	width: 50%;
}

	#subBannerLeft h2 {
		padding-right: 5px;
	}
	
	#subBannerLeft h2 a {
		text-decoration: none;
		color: #000;
	}

	#subBannerLeft p {
		padding: 5px 5px 5px 0;
		line-height: 150%;
	}

#subBannerRight {
	float: right;
	width: 50%;
}

	#subBannerRight h2 {
		padding-left: 5px;
	}
	
	#subBannerRight h2 a {
		text-decoration: none;
		color: #000;
	}	

	#subBannerRight p {
		padding: 5px 0 5px 5px;
		line-height: 150%;
	}
	
/*
------------------------------------------
Inside-Specific Layout Containers
------------------------------------------
*/

.inside p {
	padding-top: 10px;
}

#insideContainer {
	float: left;
	width: 100%;
	margin-top: 10px;
}

	#insideContainer h1 {
		padding-top: 10px;
	}

	#insideContainer h2 {
		padding-top: 10px;
	}
	
	#insideContainer h3 {
		padding-top: 10px;
	}	

	#insideContainer ul {
		padding: 10px 0 0 2em;
	}

#insideTwoColumnLeft {
	float: left;
	width: 530px;
}

#insideTwoColumnRight {
	float: right;
	margin-left: 30px;
	width: 240px;
}

#insideThreeColumnLeft {
	float: left;
	width: 260px;
}

#insideThreeColumnMiddle {
	float: left;
	margin: 0 10px 0 10px;
	width: 260px;
}

#insideThreeColumnRight {
	float: left;
	width: 260px;
}