/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #777777;
	color: #2d2e2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	font-family: Perpetua;
	color: #FFFFFF;
	font-size: 48px;
}
/* Commonly used to style section titles. */
h2 {
	color: #002675;
	font-size: 16px;
	font-weight: bold;
	line-height: 18px;
}
/* Commonly used to style section titles. */
h3 {
	color: #002675;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
}
/* Commonly used to style section titles. */
h4 {
	color: #002675;
	font-size: 12px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h5 {
	color: #002675;
	font-size: 10px;
	font-weight: bold;
	line-height: 12px;
}
/* Commonly used to style section titles. */
h6 {
	color: #002675;
	font-size: 8px;
	font-weight: bold;
	line-height: 10px;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	background-color: #fff;
	margin: 10px auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 830px;
}

#contentWrapper {
	background-color: #fff;
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 830px;
}

/* Begin CSS Drop Down Menu */

#menuh-container {
	height: 25px;
	width: 830px;
	top: 100px;
	padding-left: 0;
	margin-left: 0;
	background-color: #002675;
	border-bottom: solid 2px #edf2f2;
	z-index:500;
}

#menuh {
	position:relative;
	font-size: 12px;
	font-family: arial, helvetica, sans-serif;
	width:100%;
	float:left;
	margin: 3px;
	margin-top: 3px;
	font-style: normal;
	font-weight: bold;
		z-index:505;
	}
		
#menuh a	{
	position:relative;
	text-align: center;
	display:block;
	border: 0;
	white-space:nowrap;
	margin:0;
	padding: 1px;
	z-index: 510;
	}
	
#menuh a:link, #menuh a:visited, #menuh a:active	/* menu at rest */
	{
	color: #edf2f2;
	background-color: #002675;
	text-decoration:none;
	}
	
#menuh a:hover	/* menu at mouse-over  */
	{
	color: #002675;
	background-color: #edf2f2;
	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 a.parent, #menuh a.parent:hover 	 attaches side-arrow to all parents 
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	} 


#menuh ul {
position:relative;
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:115px;	/* 78px width of all menu boxes */
	z-index:515;
	}

#menuh li {
position:relative;
    min-height: 1px; 			/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	margin:0;
	padding:0;
	width:110px;
		z-index:520;
}

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

#menuh ul ul {
position:absolute;
	visibility: visible;
	top:auto;
	display:none;
	padding: 5px;
	margin:-5px 0 0 -5px;
	}

div#menuh li:hover
	{
	cursor:pointer;
	}

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 */

#header {
position:static;
	text-align: left;
	width: 830px;
	padding: 0;
	background: #ffffff;
	height: 106px;
	z-index:10;
}


#leftColumn1 {
	background-color: #ffffff;
	border-right: solid 1px #ffffff; /* Sets the right border properties for an element using shorthand notation */
/*	float: left; */
	padding-top: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-left: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-right: 1px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-bottom: 15px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 810px;
/*	height: 800px; */
}

#WellersVideo {
	visibility: visible;
	z-index: 95;
	height: 20px;
	width: 222px;
	left: 596px;
	top: 430px;
	overflow: visible;
}

#footer {
	background-color: #002675;
	border-top: solid 1px #002675; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 810px;
}



