@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: #C0C0C0;
}

#containershadowed {
	width: 780px;
	margin:0 auto;
	background-image:url(images/bgshdw.JPG);
	background-repeat:repeat-y;
}

#container { 
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/* Note: Layout extents are in pixels, since graphic elements are of fixed size; but text is in em's, for accessibility, since user may increase font size. */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

#header { 
	background: #000080; 
	padding: 0;
} 

#headercontent {
	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: 20px 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#imagecol {
	float: left; /* since this element is floated, a width must be given */
	width: 450px;
	padding: 0; /* By not having padding AND width, the IE Box Model Problem is bypassed. */
	border: 0 0; /* By not having a border AND width, the IE Box Model Problem is bypassed. */
	/* Not placing margins on the floated element bypasses the double-margin float bug, doubling the margin on the same side of the float, of the first floated element in a row of floats. */
}

#imagecolcontent {
	padding:0px 20px 0px 0px; /* By not specifying padding AND width for sidebar1, the IE Box Model Problem is bypassed. */
}

#textcol {
	float: right; /* since this element is floated, a width must be given */
	width: 270px;
	padding: 0; /* By not having padding AND width, the IE Box Model Problem is bypassed. */
	border: 0 0; /* By not having a border AND width, the IE Box Model Problem is bypassed. */
	/* Not placing margins on the floated element bypasses the double-margin float bug, doubling the margin on the same side of the float, of the first floated element in a row of floats. */
}

#textcolcontent {
	padding:0px 20px 0px 0px; /* By not specifying padding AND width for sidebar1, the IE Box Model Problem is bypassed. */
}

#maincontent { 
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px;
	background:#FFFFFF;
}

#footer { 
	padding: 0;
	background:#000080; 
} 

#footercontent {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

.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: 20px;
	margin-bottom:10px
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 20px;
	margin-bottom: 10px;
}

.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 */
	display:block;
	clear:both;
    height:1px; /* Specifying a height and line-height prevents IE 6 from expanding the height. */
    font-size: 1px;
    line-height:1px;
	margin:0;
}

.clearfloat10 { /* 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 */
	display:block;
	clear:both;
    height:10px; /* Specifying a height and line-height prevents IE 6 from expanding the height. */
    font-size: 1px;
    line-height:1px;
	margin:0;
}

*.text { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	line-height: 1.3em;
	color: #000000;
	text-align:left;
	margin:0;
}

*.textcenter {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	line-height: 1.3em;
	color: #000000;
	text-align:center;
}

*.bold {
	font-weight:bold;
}

*.italictext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	line-height: 1.3em;
	color: #000000;
	text-align:left;
	font-style:italic;
	margin-top:5px;
}

*.textsubhead { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	line-height: 1.3em;
	color: #000000;
	text-align:left;
	margin:0;
}

*.textheader { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.4em;
	color: #FFFFFF;
	text-align:right;
	margin:0;
}

*.textheadercenter { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.4em;
	font-style: italic;
	color: #FFFFFF;
	text-align:center;
	margin:0;
}

*.textfooter { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	line-height: 1.3em;
	font-style: normal;
	color: #FFFFFF;
	text-align:center;
	margin:0;
}

*.textfooterlarge { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.4em;
	font-style: normal;
	color: #FFFFFF;
	text-align:center;
	margin:20;
}

*.textfootersmall { 
	font-family: Arial, Helvetica, sans-serif;
	font-size: .67em;
	line-height: 0.96em;
	font-style: normal;
	color: #CCCCCC;
	text-align:center;
	margin:0;
}

h1 { /* Header Header (UNUSED) */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.17em;
	line-height: 1.17em;
	font-weight: bold;
	color: #FFFFFF;
	margin: 0 0 20px 0;
	text-align:left;
}

h2 { /* Homepage Header */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	font-weight: bold;
	color: #000000;
	margin: 0 0;
	text-align:left;
}

h3 { /* Maincontent Header */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.17em;
	font-weight:bold;
	line-height: 1.3em;
	color: #000000;
	text-align:center;
	margin:0;
	margin-bottom:10px;
}

h4 { /* Maincontent Subheader */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.3em;
	color: #000080;
	text-align:left;
	font-weight: bold;
	margin: 15px 0 15px 0;
}

a:link, a:visited {
	text-decoration: none;
	color: #0000FF;
}

a:hover, a:active  {
	text-decoration: underline;
	color: #0000FF;
}

#footercontent a:link, #footercontent a:visited {
	text-decoration: none;
	color: #CCCCFF;
}

#footercontent a:hover, #footercontent a:active {
	text-decoration: underline;
	color: #CCCCFF;
}

a img,
:link img,
:visited img {
	border:none;
	text-decoration: none;
}

ul { /* Normalizing Lists; browsers vary in how they implement the 40-pixel-standard indent */
	margin-left:0;
	padding-left:0;
}

ul li {
	margin: 10px 0px 10px 17px; /* I prefer no indent on lists, beyond what is required for marker; 17px works with smallest and largest text sizes as well as medium text size, in IE 7. */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.83em;
	line-height: 1.3em;
	color: #000000;
	text-align:left;
}
