@charset "UTF-8";
body {
	margin:0;
	padding:0;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:100%;
	background:#9ff;
	font-family: "Times New Roman", Times, serif;
}
a {
	color:#006;
	font-family: "Comic Sans MS", cursive;
	font-size: 0.85em;
	text-decoration: none;

}
a:hover {
	color: #003;
	background: #FCF;
	text-decoration: underline;
	font-weight: bold;
}
h1, h2, h3 {
	margin:.8em 0 .2em 0;
	padding:0;
	text-transform: uppercase;
}
h1 {
	font-size: 1.2em; 
	color: #006;
	font-style: italic;
	}
h2 {
	font-size: 0.9em;
	font-family: "Comic Sans MS", cursive;
	color: #603;
	background-color: #F9F;
	text-align: center;
}
h3 {
	font-size: 0.8em;
	font-family: "Comic Sans MS", cursive;
	color: #009;
	text-align: center;
}
p{
	margin:.4em 0 1em 0;
	padding:0;
	font-size: 0.9em;
	line-height: 1.6em;
}
ul,ol {
	margin:.4em 0 .7em .7em;
	padding:0;
	font-size: 0.9em;
	line-height: 1.6em;
}
img {
	margin: 5px 5px 15px 15px;
	border: none;
	}
.boxed {
	background: #FFF;
	padding: 7px 10px 7px 10px;
}
#header {
	clear:both;
	float:left;
	width:100%;
}
#tagline {
	font-style: italic;
	color: #603;
	font-weight: bold;
	font-size: 1em;
	padding-left: 15px;
	font-family: "Comic Sans MS", cursive;
}
#header logo {
	margin: 0 auto; 
	padding-left: 20px;
	padding-right: 20px;/* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#topbanner {
	text-align: center;
	padding-top: 10px;
}
#navbar {
	float:left;
   	width:100%;
   	border-bottom:2px solid #F6C;
   	overflow:hidden;
   	position:relative;
	padding-top: 15px;
   	font-size: 1.1em;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	font-family: "Comic Sans MS", cursive;
}
#navbar ul {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#navbar ul li{
	display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
   border-width: thin;
	border-style: solid;
	border-color: #F6F;
}
#navbar ul li a {
	display:block;
   margin:0 0 0 1px;
   padding:5px 10px;
   background:#00ffe6;
   color:#009;
   width: 89px;
	height:32px;
  text-decoration:none;
   line-height:1.3em;
   font-weight: bold;
}
#navbar ul li a:hover {
	background:#F6C;
   color:#603;
}
#navbar .active a{
	background:#F6C;
    color:#603;
}
#subheader {
		clear:both;
		background:#F9F;
		border-top:2px solid #F6C;
		margin:0;
		padding:0 10px 5px 0;
		height: 30px;
		text-align:right;
	}
#subheader img {
	margin: 0 5px 5px 5px;
}
	/* column container */
	.twoColLiqRtHdr {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;
		position:relative;
	}
	.mainContent,
	.sidebar1,
	.sidebar2{
		float:left;
		position:relative;
		padding:0 0 1em 0;
		overflow:hidden;
	}
	/* 2 Column (right menu) settings */
	.rightmenu {
		background:#9ff;		/* right column background colour */
	}
	.rightmenu .colleft {
		right:25%;			/* right column width */
		background:#9ff;		/* left column background colour */
	}
	.rightmenu .mainContent {
		width:71%;			/* left column content width (left column width minus left and right padding) */
		left:27%;			/* (right column width) plus (left column left padding) */
	}
	.rightmenu .sidebar1 {
		width:21%;			/* right column content width (right column width minus left and right padding) */
		left:31%;			/* (right column width) plus (left column left and right padding) plus (right column left padding) */
	}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#F9F;
} 
#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: 85%;
	color: #003;
	text-align: center;
}
#footer a{
	color: #003;
}
#footer a:hover {
	color: #F3C;
}
/* 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;
}