@charset "utf-8";

html, body { width: 100%; height: 101%; } /* force vertical scrollbar on; style in header.php didn't work for firefox */

a:link {
	color: #C00;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #C00;
}
a:hover {
	text-decoration: none;
	color: #CCC;
}
a:active {
	text-decoration: none;
	color: #C00;
}

a.one:link {
	color: #F93;
	text-decoration: none;
}
a.one:visited {
	text-decoration: none;
	color: #F93;
}
a.one:hover {
	text-decoration: none;
	color: #CCC;
}
a.one:active {
	text-decoration: none;
	color: #F93;
}

a.two:link {
	color: #FA5;
	text-decoration: none;
}
a.two:visited {
	text-decoration: none;
	color: #FA5;
}
a.two:hover {
	text-decoration: none;
	color: #CCC;
}
a.two:active {
	text-decoration: none;
	color: #FA5;
}

a.three:link {
	color: #FB6;
	text-decoration: none;
}
a.three:visited {
	text-decoration: none;
	color: #FB6;
}
a.three:hover {
	text-decoration: none;
	color: #CCC;
}
a.three:active {
	text-decoration: none;
	color: #FB6;
}

p {
     margin:  0 0 1em 0;
     padding:  0;
}

body  {
	background: #DDDDDD;
	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;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
}

.twoColFixLtHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #container #vspace {
	height: 10px;
}
.twoColFixLtHdr #header {
	padding: 0 10px 0 20px;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #container #header .top_left_menu {
	font-size: 14px;
}
.twoColFixLtHdr #container #header .top_right_menu {
	float: right;
	font-size: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #container #header .top_menu_separator {
	color: #CCC;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px;
	border-right-width: 2px;
	border-right-style: groove;
	border-right-color: #999;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 30px;
	height: 300px;
}
.twoColFixLtHdr #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: 0 20px;
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	color: #666;
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px; 
}
.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;
}
.twoColFixLtHdr #container #sidebar1 .sidebar_menu {
	padding-top: 10px;
	padding-bottom: 10px;
}
.twoColFixLtHdr #container #mainContent h1 {
	color: #000;
}
.twoColFixLtHdr #container #mainContent h2 {
	color: #000;
}
.twoColFixLtHdr #container #footer a:link {
	color: #666;
	text-decoration: none;
}
.twoColFixLtHdr #container #footer a:visited {
	text-decoration: none;
	color: #666;
}
.twoColFixLtHdr #container #footer a:hover {
	text-decoration: none;
	color: #666;
}
.twoColFixLtHdr #container #footer a:active {
	text-decoration: none;
	color: #666;
}

/* rounded corner divs */
.b1, .b2, .b3, .b4 {font-size:1px; overflow:hidden; display:block;} 
.b1 {height:1px; background:#000; margin:0 5px;} 
.b2 {height:1px; background:#000; margin:0 3px;} 
.b3 {height:1px; background:#000; margin:0 2px;} 
.b4 {height:2px; background:#000; margin:0 1px;} 
/*.content {background: #000;}
.content div {margin-left: 5px; color: #FFF;} */

/* rounded corner divs */
.g1, .g2, .g3, .g4 {font-size:1px; overflow:hidden; display:block;} 
.g1 {height:1px; background:#CCC; margin:0 5px;} 
.g2 {height:1px; background:#CCC; margin:0 3px;} 
.g3 {height:1px; background:#CCC; margin:0 2px;} 
.g4 {height:2px; background:#CCC; margin:0 1px;} 
/*.content {background: #000;}
.content div {margin-left: 5px; color: #FFF;} */
