@charset "UTF-8";
body  {
	font: 14px "Lucida Sans", "Lucida Grande", Helvetica, Geneva, 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: #F7EEEE;
	background: #919191 url(../images/3column_gray_gradient.png) repeat-y;
}

p {
	line-height: 1.5;
	margin-bottom: 10px;
}
li {
	line-height: 1.2;
	margin-bottom: 10px;
	margin-top: 10px;
}
a.navlink, a.navlink:visited {
	color: #F7EEEE;
	text-decoration: none;
	text-shadow: 2px 1px 0px #000;
	filter: Shadow(Color=#000000, 	
			Direction=135, 
			Strength=2);
	border-bottom-style: none;
}
a.navlink:hover {
	border-bottom: 2px solid black;
	border-top: 2px solid black;
}
a {
	color: #F7EEEE;
	border-bottom-style: dotted;
	border-bottom-width: 1px;
	text-decoration: none;
}
a:hover {
	border-bottom-style: solid;
}
a.no_underline {
	border-bottom-style: none;
}

h1.help {
	font-style: normal;
	font-size: 18px;
	text-align: center;
}
h2.help {
	font-style: normal;
	font-size: 16px;
}
h3.help {
	font-style: italic;
	font-size: 14px;
	padding-top: 7px;
}
p.help,li.help {
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
	text-align: justify;
	margin-left: 20px;
	line-height: 1.5;
	margin-bottom: 8px;
}

.thrColFix #container { 
	width: 1024px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
} 
.thrColFix #left {
	float: left; /* since this element is floated, a width must be given */
	width: 225px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 10px 30px 10px 10px;
	color: black;
}
#left a {
	color: black;
}

.thrColFix #right {
	float: right; /* since this element is floated, a width must be given */
	width: 225px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 10px 10px 10px 10px;
	text-align: center;
}
.thrColFix #mainContent { 
	margin: 0 275px 0 250px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 30px 10px 10px;
}
.thrColFix #mainContent h1 {
	font-size: 18px;
}
.thrColFix #mainContent h2 {
	font-size: 28px;
}
.larger {
	font-size: larger;
}
.smaller {
	font-size: smaller;
}
/* Miscellaneous classes for reuse */
.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;
}