@charset "utf-8";


body {
	font: 100%; Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background: #363f87;
	width:100%;
}
#container {
	background: #363f87;
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
}
/*-----------------------------header styles------------------------------*/
#header {
	position: relative;
	background: #363F87 no-repeat left center;
	height: 141px;
	}

#header  h1  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	margin-left: -9000px;
}

#header #logoImage {
	top:0px;
	width: 200px;
	height: 141px;
	left: 25px;
	position: absolute;
	}
#logotype {
	position:absolute;
	top:20px;
	left:335px;
	width: 495px;
	height: 100px;
}
/* ----------------- navbar styles ---------------*/

#navbar {
	position: relative;
	background: #851505;
	height: 60px;
	border-top: 5px ridge #460B02;
	padding: 0px 0px 5px 50px;
	}

/*----------------main content styles------------------------*/
#mainContent {
	padding: 15px 75px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #F5F6DF;
		}
#mainContent p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: .9em;
	line-height: 1.2em;
	color: #000;
	text-decoration: none;
	text-align: justify;
}

#mainContent a{
	color: #B54F41;
	text-decoration: none;
	font-weight: bold;
	}
#mainContent a:hover{
	color:#000E78;
	font-weight: bold;
	}

#mainContent h1 {
	font-family: Garamond, "Times New Roman", Times, Helvetica, serif;
	font-size: 1.2em;
	color: #2D3371;
	border-bottom: 1px solid #2D3371;
	margin-left: 125px;
	margin-bottom: 25px;
	margin-right: 0px;
}

#mainContent h2 {
	font-family: Garamond, "Times New Roman", Times, Helvetica, serif;
	font-size: 1.1em;
	color: #2D3371;
	border-bottom: 1px solid #2D3371;
	margin-left: 125px;
	margin-bottom: 25px;
	margin-right: 0px;
}
#mainContent #graphic {
	float: left;
}
#panorama {
	background: #363F87;
	height: 100%;
	width: 100%;
}
.small-cream {
	font-family: Arial, Helvetica, sans-serif, "comic Sans MS";
	font-size: 0.7em;
	font-weight: bold;
	text-align: center;
	color: #F6F5D4;
}

#panorama img {
	background: center center;
	border: 5px solid #851505;
	padding: 5px;
	margin: 5px;
}

#panorama a{
	color: #B54F41;
	text-decoration: none;
	}
#panorama a:hover {
	color: #851505;
	text-decoration: none;
	}

/* --------------------- practice area styles ------------------------ */
#practice-table {
	font-size: 1em;
	line-height: 1.5em;
	color: #F5F6DF;
	text-decoration: none;
	letter-spacing: 0.2em;
	height: 100%;
	width: 100%;
	}
	
#practice-table img {	
	border: none;
	}
	
#practice-table h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif	font-size: 1em;
	color: #f6f5df;
	letter-spacing: 0.1em;
	text-transform:none;
	text-align:center;
	font-size: 1em;
	font-weight: bold;
	}

#practice-table a{
	color: #B54F41;
	text-decoration: none;
	}
#practice-table a:hover {
	color: #851505;
	text-decoration: none;
}
#practice-table #self img {
	border: none;
}
#practice-table #organization img {
	border: none;
}
#practice-table #public img {
	border: none;
}
.cream4colorbars {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	line-height: 1.25em;
	color: #F5F6DF;
	text-decoration: none;
	letter-spacing: 0.2em;
	text-align: left;
}

/* -------------------- footer styles -------------------------------- */
#footer {
	color: #F5F6DF;
	padding: 0.2em;
	background: #363F87;
	clear: both;
	font-family: Garamond, "Times New Roman", Times, Helvetica, serif;
	font-size: 0.9em;
	text-decoration: none;
	text-align: center;
		}
#footer img {
	border: none;
	}		
#footer a{
	color: #B54F41;
	text-decoration: none;
	}
#footer img a {
	border: none;
}

#footer a:hover {
	color: #851505;
	text-decoration: none;
	}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
