/* 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-image: url(images/newbg-1.jpg);
  background-repeat: repeat;
  color: #003333;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 1em;
  line-height: 1.25em;
  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 {
  color: #003333;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.25em;
}
/* Commonly used to style section titles. */
h2 {
  color: #003333;
  font-size: 1.75em;
  font-weight: bold;
  line-height: 1.25em;
}
/* Sets the style for unvisited links. */
h3 {
  color: #003333;
  font-size: 1.50em;
  font-weight: bold;
  line-height: 1.25em;
}
h4 {
  color: #003333;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1.25em;
}
a,  a:link {
  color: #003333;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #CC9900;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #663300;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #663300;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #CCCC33;
}
/* 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 {
  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: 80%;
}
#outerWrapper #header {
    border-bottom: solid 1px #003333; /* Sets the bottom border properties for an element using shorthand notation */
	position: relative;
	margin: 0;
	padding: 0;
	width: 800px;
	height: 200px;
	overflow: hidden;
}	
#outerWrapper #header span {
    display: block;
	position: absolute;
	left:0;
	top: 0;
	z-index: 1;
	width: 800px;
	height: 200px;
	margin: 0;
	padding:0;
	background: url(images/heading_new.jpg) top left no-repeat;
}
#outerWrapper #contentWrapper #leftColumn1 {
  border-right: solid 1px #003333; /* Sets the right border properties for an element using shorthand notation */
  border-top-style: none;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 20%;
}
/* 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: 0 0 0 26%; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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 {
  border-top: solid 1px #003333; /* Sets the top border properties for an element using shorthand notation */
  color: #003333;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
  font-size: 0.75em;
  line-height: 1.25em;
  text-align: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
.indent {
    padding-left: 20px;
}
#outerWrapper #skip {
	margin: auto;
	text-align: right;
	font: 0.75em Arial, Helvetica, sans-serif;
	left: 10px;
	}	
#outerWrapper #skip li {
	list-style: none;
	margin: 0 ;
	padding: 0;
	display: inline;
	text-align: right;
}
#outerWrapper #skip li a {
	padding: 3px;
	margin: 0;
	border: 1px solid #003333;
	border-bottom: none;
	text-decoration: none;
}
#outerWrapper #skip li a:link {
	color: #003333;
	border-bottom: 1px solid #003333;
}
#outerWrapper #skip li a:visited {
	color: #CC9900;
}
#outerWrapper #skip li a:hover {
	color: #663300;
	}
#fieldset li {
	float:left;
	clear: left;
	width: 100%;
	padding-bottom: 1em
}
#fieldset {
	float: left;
	clear: left;
	width: 100%;
	margin: 0 0 -1em 0;
	padding: 0 0 1em 0;
	border-style: none;
	border: 1px solid #003333;
	background-color: #F2EFE9;
}
#legend {
	margin-left: 1em;
	padding: 2em;
	color: #003333;
	font-weight: bold;
}
#legend span {
	position: absolute;
	margin-top: 0.5em;
	font-size: 135%;
}
#fieldset ol {
	padding: 1em 1em 0 1em;
	list-style: none;
}
#label {
	position: relative;
	float: left;
	width: 10em;
	margin-right: 1em;
}
#label strong {
	position: absolute;
	left: 30em;
	top: 0.2em;
	width: 19em;
	color: #FF0000;
	font-size: 85%;
	font-style: normal;
	text-transform: uppercase;
}
#fieldset.submit {
	float: none;
	width: auto;
	border: 0 none #FFFFFF;
	padding-left: 12em;
	padding-top: inherit;
	background-color: #000066;
}
.featureimage {
	float: right;
	width: 300px;
	border: 2px solid #56ad8e;
	margin-left: 20px;
	margin-bottom: 6px;
}
.important {
 	color: #FF0000;
	 padding-left: 30px;
}
#outerWrapper #contentWrapper #albumlist {
 	font-family: "Trebuchet MS", Helvetica, sans-serif;
 	font-size: 0.9em;
 	line-height: 1.25em;
 	margin: 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
 	padding: 10px 0 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 	clear: left;
 	list-style-type: none;
	height: 300px;
}
#album ul {
	list-style-type: none;
}
#album li {
	float: left;
	width: 230px;
	margin-right: 6px;
	margin-bottom: 10px;
	font-size: 0.9em;
	font-weight: bold;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: #999999;
	list-style-type: none;
}
#album img{
	display: block;
	border: 1px solid #000066;
} 
#nav, #nav ul { /* all lists */
		padding: 0;
		margin: 0;
		list-style: none;
		font-size: 1em;
        line-height: 1.25em;
		float : left;
		width : 80%;
	}
	
#nav li { /* all list items */
		position : relative;
		float : left;
		line-height : 2em;
		margin-bottom : -1px;
		width: 80%;
	    text-decoration: none;
	}
	
#nav li ul { /* second-level lists */
		position : absolute;
		left: -999em;
		margin-left : 8.05em;
		margin-top : -1.35em;
	}
	
#nav li ul ul { /* third-and-above-level lists */
		left: -999em;
	}
	
#nav li a {
	width: 10em;
	w\idth : 9em;
	display : block;
	color : #003333;
	font-weight : bold;
	text-decoration : none;
	background-color : #DBFED3;
	border : 1px solid #003333;
	padding : 0 0.5em;
	}
	
#nav li a:hover {
	color : #fff;
	background-color :  #9EB48B;
	}
	
#nav li:hover ul ul,  #nav li.sfhover ul ul {
		left: -999em;
	}
	
#nav li:hover ul, #nav li li:hover ul,  #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
		left: auto;
	}
	.image {
    text-align: center;
	} 
.standards {
	text-align: left;
}

