@charset "UTF-8";
body  {
	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: #333333;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	background-color: #FFFFFF;
}
a:link {
	text-decoration: none;
	color: #B986D4;
}
a:visited {
	text-decoration: none;
	color: #B986D4;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
#header  {
	background-color: #B986D4;
	height: 3.5em;
	margin-top: 0px;
	margin-bottom: 0px;
	width: auto;
} 
#header  h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 1.75em;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
	text-align: left;
	vertical-align: middle;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
#header .smaller {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.8em;
	color: #333333;
	font-variant: normal;
}
#container  {
	width: 770px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	text-align: left;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1em;
	color: #333333;
	border: thin none #B986D4;
	height: 520px;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
} 
#mainContent/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
  {
	width: auto;
	border-left-width: thin;
	border-left-style: dotted;
	border-left-color: #B986D4;
	overflow: visible;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 32%;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
}
#mainContent h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5em;
}
#mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	margin-top: 10px;
}
#mainContent #leftMain {
	width: 200px;
	float: left;
	margin: 0px;
	padding: 0px;
	clear: none;
}
#mainContent #rightMain {
	width: 200px;
	float: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	clear: right;
}
#mainContent li {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	list-style-type: disc;
	line-height: 1.5em;
	font-style: italic;
	padding-bottom: 10px;
}
#sidebar1/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
  {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 240px;
	overflow: visible;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0;
	margin-top: 10px;
	background-color: #FFFFFF;
	margin-bottom: 20px;
	margin-right: 20px;
}
#sidebar1 img {
	padding: 10px;
}
#sidebar1 p {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.85em;
	margin-right: 10px;
	margin-left: 10px;
	line-height: 1.4em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#sidebar1 h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.2em;
	color: #333333;
	margin-right: 10px;
	margin-left: 10px;
	padding: 0px;
}
#sidebar1 h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.9em;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-top: 0px;
	line-height: 1em;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebar1  h4  {
	font-size: 0.9em;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 0px;
}
#sidebar1 .caption {
	font-size: .7em;
	margin: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#sidebar2  {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 23%; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
#footer  {
	background-color: #B986D4;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	visibility: visible;
} 
#footer  p  {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	color: #333333;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 0px;
	line-height: .75em;
}

/* 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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

