@charset "UTF-8";

body  {
	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: justify;
	background-color: #E9E9E9;
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
}


.thrColFix #container {
	width: 1000px;
	margin: 0px auto 0px auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-repeat: repeat-y;
} 

#masthead {
	height: 150px;
	width: 1000px;
	padding:0px;
	margin:0px;
	background-image: url(images/Teal1000x150px.gif);
	background-repeat: no-repeat;
	font-size: 90%;
}
/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#menuwrapper {
	padding-top: 124px;
	z-index: 100;
	position: absolute;
	width: 960px;
	padding-left: 40px;
}
.thrColFix #container #mainContent2 .BoxPress {
	background-color: #FF0000;
	margin: 5px 0px 5px 0px;
	padding: 0px;
	background-image: url(/HaggardsWebsite/hagCrthr/images/stopPressBacktop.gif);
	background-repeat: no-repeat;
	background-position: top;
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#menubar, #menubar ul {
	padding: 0px;
	margin: 0px;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#menubar a {
	display: block;
	text-decoration: none;
	padding: 5px 10px 5px 10px;
	border-right: 1px solid #333;
	font-size: 0.95em;
	color: #FFFFFF;
	font-weight: bold;
	text-align: left;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#menubar a.trigger {
	padding: 5px 16px 5px 10px;
	background-image: url(images/WO_south.gif);
	background-repeat: no-repeat;
	background-position: right center;
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#menubar li {
	float: left;
	width: 10em;
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#menubar li ul, #menubar ul li  {
	width: 12em;
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#menubar ul li a  {
	color: #999999;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#menubar li ul {
	position: absolute;
	display: none;
	background-color: #D1DCDA;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	background-repeat: repeat-x;
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#menubar li:hover a, #menubar a:focus,
#menubar a:active, #menubar li.hvr a {
	color: #333333;
	background-color: #486D5F;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#menubar li:hover ul, #menubar li.hvr ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#menubar li:hover ul a, #menubar li.hvr ul a {
	color: #476B5D;
	background-color: Transparent;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#menubar ul a:hover {
	background-color: #486D5F!important;
	color: #FFFFFF!important;
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#menubar li {width: auto;}

/*Sidebar 1*/

.thrColFix #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 15px;
	list-style-type: none;
	margin: 0px;
	display: block;
}
/*Sidebar 1---Ends*/


/*Sidebar 1- Navigation*/

#nav2     {
	list-style-type: none;
	padding: 0px;
	width: 155px;
	display: block;
	margin: 0px;
	}
#nav2 ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	float: left;
	display: block;
}
#nav2  li   {
	list-style-type: none;
	padding-top: 0px;
	margin-top: 0px;
	line-height: 2;
	margin: 0px;
	padding: 0px;
	}
#nav2   li    a    {
	text-decoration: none;
	color: #5D619C;
	display: block;
	width: 140px;
	padding: 1px 0px 3px 6px;
	background-color: #EAEAEA;
	font-size: 80%;
	margin: 1px 0px 1px 0px;
	}	
#nav2  li   a:hover  {
	text-decoration: none;
	text-align: left;
	color: #414478;
	font-weight: bold;
	background-color: #E1E1E1;
	}
/*Sidebar 1- Navigation Ends*/
	
/*TopBar 1- Spacer*/
.thrColFix #topBar {
	padding: 15px 0px 0px 0px;
	margin: 0px;
}
/*TopBar 1- SpacerEnds*/

/*3column Main Content*/
.thrColFix #mainContent {
	margin: 0px 245px 25px 175px;
	padding: 0px;
	display: block;
	padding-left: 15px;
}
.thrColFix   #mainContent   h1 {
	color: #5D619C;
}

.thrColFix   #mainContent   h3 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #5D619C;
	color: #5D619C;
	margin-bottom: 5px;
	padding-bottom: 8px;
	font-size: 110%;
	margin-top: 15px;
	line-height: 1.1;
}
.thrColFix  #mainContent p{
	margin: 0px;
	padding: 0px;
	font-size: 110%;
	margin-top: 15px;
	font-style: normal;
	text-align: justify;
}
.thrColFix    #mainContent   ul {
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	padding-left: 12px;
	margin-left: 0px;
	list-style-type: lower-roman;
}
.thrColFix    #mainContent   li{
	font-size: 100%;
	margin: 0px;
	padding: 0px;
}
	
	/*3column Main Content Ends*/


/*2column Main Content*/
.thrColFix #mainContent2 {
	margin: 0px 275px 15px 30px;
	padding: 20px 0 0 0;
	display: block;
	padding-left: 15px;
	text-align: justify;
	min-height: 550px;
}
.thrColFix   #mainContent2   h1 {
	color: #5D619C;
}

.thrColFix   #mainContent2   h3 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #486d5f;
	color: #2C4A3F;
	margin-bottom: 0px;
	padding-bottom: 3px;
	font-size: 110%;
	margin-top: 10px;
	line-height: 1;
}
#mainContent2   h3.stopPress           {
	color: #FF0000;
	margin-bottom: 0px;
	padding-bottom: 0px;
	font-size: 110%;
	margin-top: 10px;
	border-bottom-style: none;
}
.thrColFix  #mainContent2 p{
	margin: 0px;
	padding: 0px;
	font-size: 98%;
	margin-top: 15px;
}
.thrColFix  #mainContent2 p.greenBold{
	margin: 0px;
	padding: 0px;
	font-size: 98%;
	margin-top: 10px;
	color: #2C4A3F;
	font-style: normal;
	font-weight: bold;
}

.thrColFix  #mainContent2 p.whiteBold{
	margin: 0px;
	padding: 0px;
	font-size: 98%;
	margin-top: 15px;
	color: #FFFFFF;
	font-style: normal;
	font-weight: bold;
}
.thrColFix  #mainContent2 a{
	color: #486D5F;
}
.thrColFix    #mainContent2   ul {
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	padding-left: 12px;
	margin-left: 0px;
}
.thrColFix    #mainContent2   ol {
	margin-bottom: 10px;
	margin-top: 5px;
	font-size: 90%;
	padding-left: 12px;
	margin-left: 0px;
	color: #486D5F;
}

.thrColFix    #mainContent2  ol li{
	font-size: 110%;
	margin: 5px 0px 5px 15px;
	padding: 0px;
	color: #000000;
	list-style-type: decimal;
	list-style-position: outside;
}

.thrColFix    #mainContent2  ul li{
	font-size: 110%;
	margin: 5px 0px 5px 0px;
	padding: 0px;
	color: #000000;
	list-style-image: url(images/blt.gif);
	list-style-type: none;
}

.thrColFix    #mainContent2  img {
	padding: 5px;
	margin: 0px 10px 10px 0px;
	float: left;
	border: thin solid #CCCCCC;
}
.thrColFix #mainContent2 #mainImage img{
	padding: 0px;
	margin: 0px;
	width:698px;
	height:198px;
	border: 0px;
}
	
	/*3column Main Content Ends*/

	
.thrColFix #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	display: block;
	height: 500px;
	margin-top: 20px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
}

#chartered dl, #feature dl, #feature2 dl, #feature3 dl{
	margin: 0px;
	padding: 0px;
}


#chartered    {
	width: 220px;
	background-color: #2C4A3f;
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 10px;
	background-image: url(images/featGDDown.jpg);
	margin-top: 0px;
	margin-bottom: 10px;
}
#chartered img   {
	float: left;
	margin-top: -5px;
	margin-right: 10px;
}

#chartered dt{
	margin:0px;
	background-image: url(images/featGDUp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 1;
	;
	color: #FFFFFF;
	font-size: 90%;
	padding: 10px 0px 8px 5px;
}

#chartered dd{
	margin:0px;
	padding: 0px 10px 0px 15px;
	font-size: 80%;
	background-color: #2C4A3f;
	color: #fff;
	padding-bottom: 0px;
}

#chartered dd a{
	color: #fff;
	font-weig
; 	font-weight: bold;
}




#feature    {
	width: 220px;
	background-color: #486d5f;
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 7px;
	background-image: url(images/featGGDown.jpg);
	margin-top: 0px;
}

#feature dt{
	margin:0px;
	background-image: url(images/featGGUp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 2;
	color: #FFFFFF;
	font-size: 90%;
	padding: 0px 0px 0px 10px;
}

#feature dd{
	margin:0px;
	padding: 0px 10px 0px 10px;
	font-size: 80%;
	background-color: #486d5f;
	color: #fff;
	padding-bottom: 0px;
}

#feature dd a{
	color: #fff;
	font-weight: bold;
}

#feature2    {
	width: 220px;
	margin: 0px;
	background-image: url(images/featGDDown.jpg);
	background-color: #2C4A3f;
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

#feature2 dt{
	margin:0px;
	background-image: url(images/featGDUp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 2;
	;
	color: #FFFFFF;
	font-size: 90%;
	padding: 0px 0px 0px 10px;
}

#feature2 dd{
	margin:0px;
	padding: 0px 10px 0px 10px;
	font-size: 80%;
	background-color: #2C4A3f;
	color: #fff;
}

#feature2 dd a{
	color: #fff;
	font-weight: bold;
}

#feature3    {
	width: 220px;
	margin: 0px;
	padding: 0px;
	background-image: url(images/feaDwn3.gif);
	background-color: #8AA49A;
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-top: 10px;
	padding-bottom: 10px;
}

#feature3 dt{
	margin:0px;
	background-image: url(images/feaUp3.gif);
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 2;
	;
	color: #333333;
	font-size: 90%;
	padding: 0px 0px 0px 10px;
}

#feature3 dd{
	margin:0px;
	padding: 0px 10px 0px 10px;
	font-size: 80%;
	background-color: #D1DCDA;
	color: #1E232B;
}

#feature4    {
	width: 220px;
	background-color: #486d5f;
	background-repeat: no-repeat;
	background-position: left bottom;
	padding-bottom: 10px;
	background-image: url(images/featGGDown.jpg);
	margin-top: 0px;
}

#feature4 dt{
	margin:0px;
	background-image: url(images/featGGUp.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 2;
	color: #FFFFFF;
	font-size: 90%;
	padding: 0px 0px 0px 10px;
}

#feature4 dd{
	margin:0px;
	padding: 0px 10px 0px 10px;
	font-size: 80%;
	background-color: #486d5f;
	color: #fff;
	padding-bottom: 0px;
}

#feature4 dd a{
	color: #fff;
	font-weight: bold;
}


#feature3 dd a{
	color: #414478;
	font-weight: bold;
}


#address{
	margin-top:75px;
	float: left;
	width: 150px;
}
#address   p   {
	text-decoration: none;
	text-align: left;
	color: #666666;
	padding: 0px;
	margin: 0px;
	font-size: 80%;
	}
	
iframe {
	padding: 0px;
	margin: 20px 0px 10px 0px;
	}
.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;
}
.blueContent {
	color: #5D619C;
}
table  tr th{
	background-color:#486D5F;
	color: #FFFFFF;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
}

table th, td{
	color: #000000;
	padding: 5px;
	font-size: 90%;
	background-color: #B0D3B3;
}
#footer{
	width:1000px;
	margin:0px auto 40px;
	height: 30px;
	background-color: #486D5F;
	padding: 0px;
	text-align: left;
}
 .footerleft{
	text-align: left;
	color: #FFFFFF;
	font-size: 75%;
	padding: 8px 0px 0px 40px;
	margin: 0px;
	float:left;
	width: 200px;
	display: block;
	height: 20px;
}
.footerright{
	text-align: right;
	color: #FFFFFF;
	font-size: 75%;
	padding: 8px 20px 0px 0px;
	margin: 0px;
	float:right;
	width: 200px;
	display: block;
	height: 20px;
}

.footerright a{
	color: #FFFFFF;

}
