body {				/* code for whole page */
	background-color:#625D5D;
	color:#000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 10px 10px;
	padding: 0px;
	text-align: center;

}
#container			/* Code for space of container */
{
	margin: 0 auto;
	width: 900px;
	background: #2c3367 url(/wp-content/uploads/layout-two-fixed-background.gif) repeat-y 100% 0;
}

#header				/* code for top of page */
{

	background: #25587E;
	padding: 30px;
    
}

#menuh				/* code for drop down menu */
	{
	font-size: small; 
	font-family: arial, helvetica, sans-serif;
	width:900px;
	float:left;
	margin:0px;
	margin-top: 0px;
	}
		
#menuh a
	{
	text-align: center;
	display:block;
	border: 2px solid #5399cc;
	white-space:nowrap;
	margin:0;
	padding: .5em;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #EAC117;
	background-color: #25587E;		
	text-decoration:none;
	}
	
#menuh a:hover						/* menu on mouse-over  */
	{
	color: #EAC117;
	background-color: #25587E;	
	text-decoration:none;
	}	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:150px;	/* width of all menu boxes */
	/* NOTE: For adjustable menu boxes you can comment out the above width rule.
	However, you will have to add padding in the "#menh a" rule so that the menu boxes
	will have space on either side of the text -- try it */
	}

#menuh li
	{
	position:relative;
	min-height: 1px;		/* Sophie Dennis contribution for IE7 */
	vertical-align: bottom;		/* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	}

#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */

#content-container
{
	float: left;
	width: 900px;
	background-image:url(images/background.png); 
}

#content
{
	clear: left;
	float: left;
	width: 580px;
	padding: 0px 0;
	margin: 0 0 0 0px;
	display: inline;
        background: #ffffff;
	color: black;
	text-align: left;
}

#bodytext
{
	margin: 0 0 30px 30px;
}

#aside			/* code for right side */
{
	float: right;
	width: 270px;
	padding: 20px 0;
	margin: 0 20px 0 0;
	display: inline;
	color: black;
	text-align: left;
}
#logo_3					/* code for logo at the top of the page */
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: xx-large;
	text-align: center;
}
#footer					/* code for bottom of the page */
{
	clear: both;
	background: #25587E;
	text-align: center;
	padding: 20px;
	height: 1%;
	color: white;
}

/* Color scheme
  Green: #437C17 Chartreuse4
  Blue: #25587E DeepSkyBlue4
  Yellow: #EAC117 Gold2
  Gray: #625D5D Gray43
*/
/* =Columns and Padding
	A somewhat more verbose but simpler method for separating boxes.
-----------------------------------------------------------------------------*/

/* "golden ratio" */ 
div.column-ratiobig { 
	width:61.803399%;
	float:left;
}
div.column-ratiosmall{
	width:38.196601%;
	float:left;
}
div.column-half {
	width:50%;
	float:left;
}
div.column-fourth {
	width: 25%;
	float:left;
}
div.column-threefourths {
	width: 75%;
	float:left;
}
div.column-third {
	width:33%;
	float:left;
}
div.column-twothirds {
	width:67%;
	float:left;
}
div.pad-full {
	padding:18px;
}
div.pad-top {
	padding-top:18px;
}
div.pad-right {
	padding-right:18px;
}
div.pad-bottom {
	padding-bottom:18px;
}
div.pad-left {
	padding-left:18px;
}
