/* 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: #0B97CF;
	color: #666666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 17px;
	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;
	background-image: url(images/top_bar.gif);
	background-repeat: no-repeat;
	background-position: top;
}
/* Commonly used to style page titles. */
h1 {
	color: #03428A;
	font-size: 20px;
	font-weight: bold;
	line-height: 22px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 15px;
}
/* Commonly used to style section titles. */
h2 {
	color: #999999;
	font-size: 17px;
	font-weight: bold;
	line-height: 21px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h3 {
	color: #999999;
	font-size: 22px;
	font-weight: normal;
	line-height: 28px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: right;
	margin-top: 10px;
	margin-right: 0px;
}
h4 {
	color: #03428A;
	font-size: 15px;
	font-weight: bold;
	line-height: 18px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 15px;
	margin-bottom: 2px;
}

/* Sets the style for unvisited links. */
a,  a:link {
	color: #0B97CF;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #3b62a6;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #99FF00;
}

/* Sets the style for a link that has focus. */
a:focus {
  color: #ca0009;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #262499;
}
/* 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: 0 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: 790px;
}
#outerWrapper #header {
	background-color: #8e9fd0; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 170px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	background-image: url(images/top_bar.gif);
	background-repeat: no-repeat;
	background-position: top;
	margin: 0px;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #FFFFFF; /* Sets the right border properties for an element using shorthand notation */
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 175px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	border-right-style: none;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 215px;
	padding-top: 10px;
	padding-right: 35px;
	padding-bottom: 10px;
	padding-left: 10px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	background-color: #03428A;
	border-top: solid 1px #8e9fd0; /* Sets the top border properties for an element using shorthand notation */
	height: 50px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFFFFF;
	text-align: center;
}
#outerWrapper #nav {
	background-color: #99FF00; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 35px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	text-align: left;
}
#outerWrapper #picbar {
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	background-image: url(images/pic_bar.jpg);
	background-repeat: no-repeat;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #03428A;
}
#outerWrapper #picbar1 {
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	background-image: url(images/pic_bar_2.jpg);
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #03428A;
}
#outerWrapper #picbar2 {
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	background-image: url(images/pic_bar_4.jpg);
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #03428A;
}
#outerWrapper #picbar3 {
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	background-image: url(images/pic_bar_6.jpg);
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #03428A;
}
#outerWrapper #picbar4 {
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	background-image: url(images/pic_bar_7.jpg);
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #03428A;
}
#outerWrapper #picbar5 {
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 100%;
	margin: 0px;
	background-image: url(images/pic_bar_5.jpg);
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #03428A;
}




.pd_menu_01 {
	float:right;
	padding:0;
	margin:0;
	color: #FFFFFF;
	width:585px;
	clear:both;
	background-color: #0462CA;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #99FF00;
	border-right-color: #99FF00;
	border-bottom-color: #99FF00;
	border-left-color: #99FF00;
	height: 35px;
} /*Color navigation bar normal mode*/
.pd_menu_01  a, .pd_menu_01 a:visited {
	font-family:Arial, Helvetica, sans-serif;
	font-style:normal;
	font-weight:bold;
	font-size:12px;
	color: #FFFFFF;
	background-color: #0462CA;
	text-decoration: none;
	height: 35px;
}

/*CSS MENU START */
.pd_menu_01 ul {
	list-style-type:none;
	padding:0;
	margin:0;
}
.pd_menu_01 ul li {
	float:left;
	position:relative;
	z-index:auto !important /*Non-IE6*/;
	z-index:1000 /*IE6*/;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #99FF00;
}
.pd_menu_01 ul li a {
	color: #FFFFFF;
	background: #0000DD;
	float:none !important /*Non-IE6*/;
	float:left /*IE-6*/;
	display:block;
	height:35px;
	line-height:35px;
	text-decoration:none;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
.pd_menu_01 ul li ul {
	display:none;
	border:none;
	color: #FFFFFF;
	background-color: #0462CA;
}
.pd_menu_01 ul li:hover a {
	background-color:#03428A;
	text-decoration:none;
	color:#FFFF00;
} /*Color main cells hovering mode*/
.pd_menu_01 ul li:hover ul {display:block;  position:absolute; z-index:999; top:29px; margin-top:1px; left:0;}
.pd_menu_01 ul li:hover ul li a {
	display:block;
	width:12em;
	height:auto;
	line-height:1.3em;
	margin-left:-1px;
	padding:5px 10px 5px 10px;
	border-left:solid 1px #004080;
	border-bottom: solid 1px #004080;
	background-color:#00FF00;
	color:#03428A;
} /*Color subcells normal mode*/
.pd_menu_01 ul li:hover ul li a:hover {
	background-color:#03428A;
	text-decoration:none;
	color:#FFFF00;
} /*Color subcells hovering mode*/
.pd_menu_01 table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
	color: #FFFFFF;
	background-color: #0462CA;
}
.pd_menu_01 ul li a:hover {
	background-color:#03428A;
	text-decoration:none;
	color:#FFFF00;
} /*Color main cells hovering mode*/
.pd_menu_01 ul li a:hover ul {display:block; width:12em; position:absolute; z-index:999; top:29px; left:0; }
.pd_menu_01 ul li a:hover ul li a {
	display:block;
	width:12em;
	height:1px;
	line-height:1.3em;
	padding:4px 16px 4px 16px;
	border-left:solid 1px #004080;
	border-bottom: solid 1px #004080;
	background-color:#00FF00;
	color:#03428A;
} /*Color subcells normal mode*/
.pd_menu_01 ul li a:hover ul li a:hover {
	background-color:#03428A;
	text-decoration:none;
	color:#FFFF00;
} /*Color subcells hovering mode*/
.selected {
	background-color: #03428A;
}
.address {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
}
#addressbox {
	float: right;
	width: 195px;
	margin: 0px;
}
#formbox {
	border: thin solid #0462CA;
	float: none;
	width: 300px;
	clear: none;
	margin: 0px;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 12px;
	padding-left: 8px;
	background-color: #D7F7FF;
}

/*.threepxfix class below:
Targets IE6- ONLY. Adds 3 pixel indent for multi-line form contents.
to account for 3 pixel bug: http://www.positioniseverything.net/explorer/threepxtest.html
*/

* html .threepxfix{
margin-left: 3px;
}
#navbox {
	width: 585px;
	float: right;
	background-color: #03428A;
}
#outerWrapper #accreds {
	background-color: #FFFFFF; /* Sets the top border properties for an element using shorthand notation */
	height: 100px;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #03428A;
	text-align: center;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #8e9fd0;
}
.social {
	margin-left: 15px;
}
