/* 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 0 0 0;
	border: 0;
	outline: 0;
}
/* 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. */

html {
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	height: auto;
}
body {
	color: #000;
	margin:0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Centers the page content container in IE 5 browsers. */
	background-color: #262B30;
	background-repeat: repeat;
	background-image: url(images/bg.png);
}

}
/* Sets the style for unvisited links. */
a, a:link {
	color: #AAA;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #AAA;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #EEE;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #EEE;
	text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #EEE;
	text-decoration: none;
}
.clear {
	clear:both;
}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 5px;
}
.left {
	float: left;
	margin-right: 10px;
	margin-bottom: 15px;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 1em;
}
.galleryleft {
	float:left;
	border:solid 5px #000;
	margin:10px 10px 0 0;
}	
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	display: block;
	padding-left: 15px;
	margin-top: 8px;
}
/* ---------- Page Structure CSS ---------- */

#header {
	text-align: left;
	padding-left: 0px;
	position: inherit;
	height: auto;
	background-color: #262B30;
	background-image: url(images/bg.png);
	background-repeat: repeat;
	background-position: top;
}
#headlinks {
	float:left;
	width:950px;
	text-align:left;
	color: #AAA;
	font-size: 10px;
	background-color: #262B30;
	background-repeat: repeat;
	background-image: url(images/bg.png);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#headlinks2 {
	float:left;
	width:950px;
	text-align:left;
	color: #AAA;
	font-size: 10px;
	background-color: #3E4953;
	background-repeat: repeat y;
	background-image: url(images/content-fill.gif);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#headlinks a, #headlinks a:link, #headlinks a:visited, #headlinks a:active {
	color: #AAA;
}
#headlinks a:hover {
	color: #AAA;
	text-decoration:none;
}
#headlinks2 a, #headlinks2 a:link, #headlinks2 a:visited, #headlinks2 a:active {
	color: #AAA;
}
#headlinks2 a:hover {
	color: #66F;
	text-decoration:none;
}
/* 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: #272C30;
	margin: 0 auto 0 auto; /* Redefines the text alignment defined by the body element. */
	width: 950px;
	background-image: url(images/bg.png);
	background-repeat: repeat;
}
#outerWrapper2 {
	background-color: #3F4953;
	margin: 0 auto 0 auto; /* Redefines the text alignment defined by the body element. */
	width: 950px;
	background-image: url(images/page-bg2.jpg);
	background-repeat: repeat;
}

#contenttop {
	height: 20px;
	width: 950px;


	background: #272C30 url(images/bg.png repeat top);
}
#threeColumns { /* This sets the id for a 3 column layout */
	overflow: hidden;
	background: #3E4953 url(images/content-fill.gif) repeat-y left;
	width: 920px;
}
#threeColumns #leftColumn {
	float: left;
	padding: 15px 0px 10px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
#threeColumns #rightColumn {
	float: right;
	padding: 15px 30px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
/* 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. */
#threeColumns #content {
	margin: 0 205px 0 215px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 460px;
}
#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
	background: #3E4953 url(images/content-fill.gif) repeat-y left;
	width: 920px;
}
#twoColumnleft #content, #twoColumnright #content {
	width:560px;
}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
#twoColumnleft #rightColumn {
	display: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. */
#twoColumnleft #content {
	margin: 0 15px 0 285px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#twoColumnright { /* This sets the id for a 2 column layout with a right column only */
	overflow: visible;
	background: #3E4953 url(images/content-fill.gif) repeat-y left;
	width: 950px;
}
#twoColumnright #leftColumn {
	display:none;
}
#twoColumnright #rightColumn {
	float: right;
	padding: 5px 25px 5px 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 260px;
	text-align: left;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #FFF;
}
/* 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. */
#twoColumnright #content {
	margin-top: 0;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 20px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 5px;
	text-align: left;
}
#footer {
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background: #272c30 url(images/bg.png repeat top);
	height: 90px;
	color: #FFF;
	clear: both;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
}
#footer2 {
	padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */


	background: #3E4953 url(images/content-fill.gif repeat top);
	height: auto;
	color: #AAA;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
/* ---------- Navigation CSS ---------- */

#navcontainer {
	position:relative;
	height:122px;
	width:950px;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #262B30;
}
#nav {
	position:relative;
	height:122px;
	font-size:10px;
	text-transform:none;
	font-weight:bold;
	padding:0 0 15 0px;
	background-color: #262B30;
}
#nav ul {
	margin:0;
	padding:0;
	list-style-type:none;
	width:auto;
	float:left;
}
#nav ul li {
	display:block;
	float:left;
	margin:0px;
}
#nav ul li a {
	display:block;
	float:left;
	color:#FFF;
	text-decoration:none;
	padding:0 0 0 20px;
	height:40px;
}
#nav ul li a span {
	padding:12px 20px 0 0;
	height:28px;
	float:left;
}
#nav ul li a:hover {
	color:#AAA;
	background:transparent url(images/nav-bg-over.gif) repeat-x left bottom;
}
#nav ul li a:hover span {
	display:block;
	width:auto;
	cursor:pointer;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #AAA;
}
#nav ul li a.current, #nav ul li a.current:hover {
	color:#fff;
	background:#1D6893 url(images/nav-left-on.gif) no-repeat top left;
	line-height:325%;
}
#nav ul li a.current span {
	display:block;
	padding:0 20px 0 0;
	width:auto;
	background:#1D6893 url(images/nav-right-on.gif) no-repeat top right;
	height:auto;
	color: #66F;
	font-size: 12px;
	font-weight: bold;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
}
/* ---------- Typography CSS ---------- */

h1 {
	font-size: 2.0em;
	font-weight: normal;
	margin-top: 0em;
	margin-bottom: 0em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
}
h2 {
	font-size: 1.7em;
	margin: 0em 0em 0em 0em;
	font-weight: normal;
	color: #2A3FFF;
	text-align: left;
}
h3 {
	font-size: 1.2em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
	text-align: center;
	color: #000;
}
h4 {
	font-size: 12px;
	margin: 1.2em 0em 1.2em 0em;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	color: #EEE;
	font-weight: bold;
	text-align: left;
}
h5 {
	font-size: 1.0em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}
h6 {
	font-size: 0.8em;
	margin: 1.2em 0em 1.2em 0em;
	font-weight: bold;
}
img {
	border: 0;
	top: inherit;
	right: 15px;
	bottom: 15px;
}
.spaced ol, .spaced ul, .spaced li {
	font-size: 12px;
	line-height: 1.8em;
	margin-top: 0.2em;
	margin-bottom: 0.1em;
	font-weight: bold;
	color: #999;
	text-align: left;
}
p {
	font-size: 12px;
	line-height: 1
.0em;
	color: #AAA;
	line-height: normal;
	text-align: center;
	font-weight: bold;
}
li > p {
	margin-top: 0.2em;
}
pre {
	font-family: monospace;
	font-size: 1.2em;
	background: #F4F4F4;
	margin: 15px;
	padding: 10px;
	border: 1px dotted #CCC;
}
.narrow1 {
	line-height:1.1em;
	color: #AAA;
	text-align: left;
	font-size: 12px;
	font-weight: normal;
}
#footer a, #footer a:link, #footer a:visited, #footer a:active {
	color: #FFF;
}
#footer a:hover {
	color: #AAA;
	font-size: 10px;
}
#footer2 a, #footer2 a:link, #footer2 a:visited, #footer2 a:active {
	color: #FFF;
}
#footer2 a:hover {
	color: #AAA;
	font-size: 10px;
}
/* ---------- Two Column CSS ---------- */

.csscolumns {
	overflow:visible;
	width: 540px;
	text-align: left;
}
/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_2 {
	margin: 0;
	float: left;
	width:260px;
}
#col_two_2 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:260px;
	color: #333;
}
/* ---------- Three Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_3 {
	margin: 0;
	float: left;
	width:31%;
}
#col_two_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
#col_three_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
}
/* ---------- Four Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_4 {
	margin: 0;
	float: left;
	width:23%;
}
#col_two_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_three_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
#col_four_4 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:23%;
}
/* ---------- Common styles shared between both left and right columns ---------- */

.sidebarlt {
	padding: 6px;
	border: 1px solid #CECECE;
	background-color: #EEE;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-style: normal;
	text-align: center;
}
.sidebardk {
	color: #FFFFFF;
	border: 1px solid #333;
	padding: 6px;
	background-color: #3E4953;
	font-weight: normal;
}
.sidebardk a, .sidebardk a:hover, .sidebardk a:visited, sidebardk a:active {
	color: #FFFFFF;
	text-decoration:underline;
}
/* ---------- Stylings for hierarchical Sitemap ---------- */

.sitemap span.none, .sitemap span.vert, .sitemap span.last, .sitemap span.midd {
	background:transparent 0px 0px no-repeat;
	width: 24px;
	height: 18px;
	display: block;
	float: left;
	margin-left: 1em;
}
.sitemap li {
	line-height: 1.65em;
}
.sitemap span.vert {
	background-image: url(images/map_vert.gif);
}
.sitemap span.last {
	background-image: url(images/map_last.gif);
}
.sitemap span.midd {
	background-image: url(images/map_midd.gif);
}
.sitemap, .sitemap ul, .sitemap li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* ---------- Stylings for homepage jQuery slider ---------- */

#slider ul, #slider li {
	margin:0;
	padding:0;
	list-style:none;
}
#slider li {
	width:920px;
	height:244px;
	overflow:visible;
}

/* ---------- These are the styles for the contact form ---------- */
Label {
}
.inputValue {
	width:50%;
	margin-top:5px;
}
.inputText {
	width:85%;
	height:180px;
	margin-top:5px;
}
.inputButton {
}
.required {
	font-size:9px;
	color:#C00;
}

/* ---------- These are the styles for the data detail table ---------- */

#detail {
	margin-top: 5px;
}
#detail h3 {
	margin: 8px 0px 0px;
	padding: 0px;	
}
#detail p {
	line-height:normal;	
}
#detail a {
	font-weight:bold;	
}
#detail td.uline {
	border-bottom:1px solid #ccc;	
}
#outerWrapper #footer {
	font-size: 12px;
	font-family: Trebuchet MS, Arial, Helvetica, sans-serif;
	text-align: left;
}
#outerWrapper #header #headlinks a strong {
	color: #AAA;
}
#outerWrapper #header #headlinks a strong {
	font-size: 10px;
}
#outerWrapper #header #headlinks a strong {
	font-size: 10px;
	color: #AAA;
}
#twoColumnright #footer div {
	font-size: 10px;
}
.font10black {
	font-size: 12px;
	color: #000;
}
#outerWrapper #navcontainer #nav #headlinks a strong {
	text-align: right;
}
#outerWrapper #navcontainer #nav #headlinks a strong {
	text-align: right;
}
#outerWrapper #navcontainer #nav #headlinks a {
	text-align: center;
}
#outerWrapper #navcontainer #nav #headlinks a strong {
	text-align: center;
}
#outerWrapper #navcontainer #nav #headlinks a strong {
	text-align: left;
}
#outerWrapper #footer #headlinks a strong {
	color: #AAA;
	font-size: 10px;
}
#outerWrapper #footer div {
	color: #AAA;
	font-size: 10px;
}
#outerWrapper2 #footer2 div {
	font-size: 12px;
}
.font10gray {
	color: #999;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: normal;
}
