@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
}
.hidem {
	display:none;
}
.hidew {
}


/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.thrColHybHdr #container { 
	width: 100%;
	background: #FFFFFF;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
}  
.thrColHybHdr #header { 
	background: #DDDDDD; 
	padding: 0   /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColHybHdr #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 */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. 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 ".thrColHybHdr #sidebar1 p" rule.
*/
.thrColHybHdr #sidebar1 {
	float: left; 
	width: 18em; /* since this element is floated, a width must be given */
	background:#B0C4DE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 4px 20px 0 12px; /* top and bottom padding create visual space within this div */
}
.thrColHybHdr #sidebar2 {
	float: right; 
	width: 18em; /* since this element is floated, a width must be given */
	background:#B0C4DE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 4px 10px 0 12px; /* top and bottom padding create visual space within this div */
}
.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColHybHdr #mainContent {
 	margin: 0em 12em 0em 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */ 
	padding: 2em 2em 0em 10em; /* padding here creates white space "inside the box." */
} 
.thrColHybHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	clear:both;
	float:left;
	width:100%;
	margin-top: 5px;
	background:#036;
	color:#fff;
	text-align:center;
}
#footer a {
	color:#000;
}
#footer p {
	padding:10px;
	margin:0;
}
} 
.thrColHybHdr #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 */
}

/* 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;
}
/* see http://matthewjamestaylor.com/blog/perfect-3-column.htm for description of layout */
body {
	margin:0% 2% 0% 2%; /* top right bottom left */
	padding:0%;
	border:0;			/* This removes the border around the viewport in old versions of IE */
	width:97%; 
	background:#FFF;
	font-size:85%;
	font-family:lucida, Verdana, Geneva, sans-serif;
}
a {
	color: #006;
}
a:hover {
	color:#fff;
	background:#369;
	text-decoration:none;
}
h1, h2, h3 {
	margin:.1em 0 .1em 0;
	padding:0;
}
h3 a {
	color:#000;
}
p {
	margin:.4em 0 .8em 0;
	padding:0;
}

ul {
	list-style-type:square;
}

#header img {
	margin: 2px 0px 2px 0px; /* top right bottom left */
	border:0;
}


/* Header styles */
#header {
	clear:both;
	float:left;
	width:100%;
	padding:-4;
	border:0;
}
#banner {
	clear:both;
	background:#B0C4DE;
	border:#FFF;
	padding:0px 5px 0px 5px;
	overflow:hidden;
}

#layoutdims {
	clear:both;
	background:#eee;
	border-top:4px solid #000;
	margin:0;
	padding:6px 15px !important;
	text-align:right;
}
/* column container */
.colmask {
	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%;			/* width of page */
	position:relative;
}
.col1, .col2, .col3 {
	float:left;
	position:relative;
	padding:0 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
					only padding top and bottom is included here, make it whatever value you need */
	overflow:hidden;
}
/* 3 Column settings */
.threecol {
	background: #B0C4DE;		/* right column background color */
}
.threecol .colmid {
	right:25%;			/* width of the right column */
	background:#fff;		/* center column background color */
}
.threecol .colleft {
	right:50%;			/* width of the middle column */
	background:#B0C4DE;	/* left column background color */
}
.threecol .col1 {
	width:46%;			/* width of center column content (column width minus padding on either side) */
	left:102%;			/* 100% plus left padding of center column */
}
.threecol .col2 {
	width:21%;			/* Width of left column content (column width minus padding on either side) */
	left:31%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
}
.threecol .col3 {
	width:21%;			/* Width of right column content (column width minus padding on either side) */
	left:85%;			/* Please make note of the brackets here:
					(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
}
/* Footer styles */
#footer {
	clear:both;
	float:left;
	width:100%;
	margin-top: 5px;
	background:#036;
	color:#fff;
	text-align:center;
}
#footer a {
	color:#FFF;
}
#footer p {
	padding:10px;
	margin:0;
}
/* drop down menu */
/* Main menu settings */
#centeredmenu {
	clear:both;
	float:left;
	margin:0;
	padding:0;
	border-bottom:15px solid #003366; /* black line below menu */
	width:100%;
	/*	font-family:Verdana, Geneva, sans-serif; /* Menu font */
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size:100%; /* Menu text size */
	color:#FFF;


	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
	background:#003366;
}
/* Top menu items */
#centeredmenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#centeredmenu ul li {
	margin:0 0 0 1px;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	top:1px;
}
#centeredmenu ul li a {
	display:block;
	margin:0;
	padding:.6em .5em .4em;
	font-size:1em;
	line-height:1em;
	background:#003366;
	text-decoration:none;
	color:#000;
	font-weight:bold;
	border-bottom:1px solid #000;
}
#centeredmenu a {
	color:#FFF;
}
#centeredmenu ul li.active a {
	color:#fff;
	background:#000;
}
#centeredmenu ul li a:hover {
	background:#36f; /* Top menu items background color */
	color:#fff;
	border-bottom:1px solid #03f;
}
#centeredmenu ul li:hover a, #centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	background:#36f; /* Top menu items background color */
	color: yellow;
	border-bottom:1px solid #03f;
}
/* Submenu items */
#centeredmenu ul ul {
	display:none; /* Sub menus are hiden by default */
	position:absolute;
	top:2em;
	left:0;
	right:auto; /*resets the right:50% on the parent ul */
	width:10em; /* width of the drop-down menus */
}
#centeredmenu ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	clear:left;
	width:180px;
}
#centeredmenu ul ul li a, #centeredmenu ul li.active li a, #centeredmenu ul li:hover ul li a, #centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-size:.8em;
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:#003366;
	color: #fff;
	line-height:1.4em; /* overwrite line-height value from top menu */
	border-bottom:1px solid #ddd; /* sub menu item horizontal lines */
}
#centeredmenu ul ul li a:hover, #centeredmenu ul li.active ul li a:hover, #centeredmenu ul li:hover ul li a:hover, #centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:#003366; /* Sub menu items background color */
	color: yellow;
}
/* Flip the last submenu so it stays within the page */
#centeredmenu ul ul.last {
	left:auto; /* reset left:0; value */
	right:0; /* Set right value instead */
}
/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul, #centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}

#navcontainer ul {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	color: #B0C4DE;
}
#navcontainer a {
	display: block;
	padding: 1px;
	background-color: #eee;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #003366;
	color: #B0C4DE;
}
#navcontainer a:link, #navlist a:visited {
	color: #B0C4DE;
	text-decoration: none;
}
#navcontainer a:hover {
	background-color: #999;
	color: #39c;
	text-decoration: underline;
}
#navcontainer ul {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	color: #B0C4DE;
}
#navcontainer a {
	display: block;
	padding: 1px;
	background-color: #B0C4DE;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #B0C4DE;
	color: #003366;
}
#navcontainer a:link, #navlist a:visited {
	color: #B0C4DE;
	text-decoration: none;
}
#navcontainer a:hover {
	background-color: #999;
	color: #39c;
	text-decoration: underline;
}

ul#navlist {
	padding: 0px;
	border: 1px solid #808080;
	border-top: 0px;
	margin: 0px;
	font:  12px verdana, helvetica, arial, sans-serif;
	background: #000000;
}
ul#navlist li {
	list-style: none;
	margin: 0px;
	border: 0px;
	border-top: 1px solid #808080;
}
ul#navlist li a {
	display: block;
	padding: 4px 8px 4px 8px;
	border: 0px;
	border-left: 20px solid #7fb6ff;
	background: #B0C4DE;
	text-decoration: none;
}
ul#navlist li a:link {
	color: #000;
}
div#navcontainer li a:visited {
	color: #000;
}
ul#navlist li a:hover {
	border-color: #090;
	color: #ffffff;
	background: #000d33;
}
/**** Mobile home page style ***/

	#wrapper{
		width: 100%;
	}

	#menu{
		background-image: none;
	}

	/* centericon - currently not used; would be useful when number of menu is odd */
	#menu div, #submenu div, #menu div.centericon{
		border-style: none;
		border-bottom: 1px solid #267095;
		margin: auto;
		width: 100%;
		text-align: left;
	}

	#menu div img.smallicon{
		display: block;
		float: left;
		position: relative;
		top: 7px;
		left: 7px;
		max-width: 100%;
	}

	#menu div img.largeicon, #submenu div img.smallicon, #submenu div img.largeicon{
		display: none;
	}

	#menu div a{
		display: block;
		padding: 25px 75px;
		text-decoration: none;
		font-weight: bold;
		color: #069;
		background-color:#CCC;
		border-radius: 0;
		background: none;
	}
	#menu div a:hover{
		display: block;
		padding: 25px 75px;
		text-decoration: none;
		font-weight: bold;
		bachground-color: #F00;
		border-radius: 0;
		background: none;
	}

	#submenu div a{
		display: block;
		padding: 25px 25px;
		text-decoration: none;
		font-weight: bold;
		color: #069;
	}
}

/*** mobile menu styles */
#blueblock{
width: 180px;
border-right: 1px solid #000;
padding: 0 0 1em 0;
margin-bottom: 1em;
font-family: 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
font-size: 90%;
background-color: #90bade;
color: #333;
}

* html #blueblock{ /*IE 6 only */
w\idth: 147px; /*Box model bug: 180px minus all left and right paddings for #blueblock */
}

#blueblock ul{
list-style: none;
margin: 0;
padding: 0;
border: none;
}

#blueblock li {
border-bottom: 1px solid #90bade;
margin: 0;
}

#blueblock li a{
display: block;
padding: 5px 5px 5px 8px;
border-left: 10px solid #1958b7;
border-right: 10px solid #508fc4;
background-color: #2175bc;
color: #fff;
text-decoration: none;
width: 100%;
}

html>body #blueblock li a{ /*Non IE6 width*/
width: auto;
}

#blueblock li a:hover{
border-left: 10px solid #1c64d1;
border-right: 10px solid #5ba3e0;
background-color: #2586d7;
color: #fff;
}