/* 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: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  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: #666 url(../images/bkgd.jpg) repeat-x scroll;
  font-family: Arial, Helvetica, sans-serif;
  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. */
  font-size: 100%;
}


/* - ================================================================================= */
/* - ========================= /* BGN CONTAINER ====================================== */
/* - ================================================================================= */


/* 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. */

#container {
  background-color: 666;
  font-size: 1em;
  line-height: 1.25em;
  margin: 20px auto 0px auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 980px;
}


/* - ================================================================================= */
/* - ========================= /* BGN LG IMAGE AREA ================================== */
/* - ================================================================================= */


#container #lgImage {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 980px;
  height: 330px;
}

/* - ========================= /* BGN LG IMAGE AREA MAIN ============================= */

#container #lgImagemain {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 980px;
  height: 258px;
}


/* - ========================= /* BGN LG IMAGE AREA LEFT - LOGO ======================= */

#container #lgImageleft {
  float: left;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 350px;
  height: 72px;
}

/* - ========================= /* BGN LG IMAGE AREA RIGHT ============================= */
#container #lgImageright {
  float: right;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 630px;
  height: 72px;
}


/* - ================================================================================= */
/* - ========================= /* BGN MAIN NAV ======================================= */
/* - ================================================================================= */


#container #mainNav {
  background: url(../images/navBkgd.jpg) no-repeat 0px 0px;
  height: 50px;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 980px;
}
#container #mainNav ul {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px;
  list-style: none;
}
#container #mainNav li {
  float: right;
}
#container #mainNav li a:link {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
  line-height: 50px;
}
#container #mainNav li a:visited {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
  line-height: 50px;
}
#container #mainNav li a:hover {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #cccccc;
  text-decoration: none;
  line-height: 50px;
  background:url(../images/mainNavbkgd.jpg) repeat-x
}
#container #mainNav li a:focus {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #cccccc;
  text-decoration: none;
  line-height: 50px;
}
#container #mainNav li a.current, #mainNav li a.current:hover, #mainNav li a.currenth:active {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #cccccc;
  text-decoration: none;
  line-height: 50px;
  cursor: default;
  background:url(../images/mainNavbkgd.jpg) repeat-x
}
#container #mainNav li a.current:hover {
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-decoration: none;
  line-height: 50px;
  cursor: default;
  background:url(../images/mainNavbkgd.jpg) repeat-x
}






#container #mainNav li a.home {
  margin: 0px 0px 0px 12px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 18px 0px 18px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #cccccc;
  text-decoration: none;
  line-height: 50px;
}


/* - ================================================================================= */
/* - ========================= /* BGN CONTENT AREA =================================== */
/* - ================================================================================= */



#container #content {
  background-color: #e0e0e0;
  background-repeat: repeat-y;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  overflow: hidden;
  width: 980px;
}


/* - ================================================================================= */
/* - ========================= /* BGN RIGHT COLUMN =================================== */
/* - ================================================================================= */


#container #content #rightColumn {
  background-color: #e0e0e0;
  float: right;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8125em;
  font-weight: normal;
  line-height: 1.25em;  
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 30px 30px 30px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 230px;
}

#container #content #rightColumn h1 {
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 2em;
}
#container #content #rightColumn h2 {
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5em;
}
#container #content #rightColumn h3 {
  color: #666;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .875em;
  font-weight: bold;
  line-height: 1em;  
}
#container #content #rightColumn a, #container #content #rightColumn a:link {
	color: #003366;
	text-decoration: none;
}
#container #content #rightColumn a:visited {
  color: #003366;
  text-decoration: none;
}
#container #content #rightColumn a:hover {
  color: #333;
  text-decoration: underline;
}
#container #content #rightColumn a:focus {
  color: #333;
  text-decoration: none;
}
#container #content #rightColumn a:active {
  color: #333;
  text-decoration: none;
}
#container #content #rightColumn #img {
  margin: 0px px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 20px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}


/* - ================================================================================= */
#container #contentWrapper #twoColumnright ul {
  margin: 50px 0px 40px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
  list-style: none;
  font-size: 1.25em;
  line-height: 30px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #7b6532;
}
#container #contentWrapper #twoColumnright li {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
font-family: Georgia, "Times New Roman", Times, serif;
	color: #7b6532;
}
#container #contentWrapper #twoColumnright li a:link {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	text-decoration: none;
	color: #7b6532;
}
 #container #contentWrapper #twoColumnright li a:visited {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: normal;
	text-decoration: none;
	color: #7b6532;
 }
#container #contentWrapper #twoColumnright li a:hover {
	color: #666;
}
#container #contentWrapper #twoColumnright li a.current, twoColumnright li a.current:hover, twoColumnright li a.current:active {
	color: #666;
	cursor: default;
}
/* - ================================================================================= */


/* - ================================================================================= */
/* - ========================= /* BGN MAIN CONTENT =================================== */
/* - ================================================================================= */


/* 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. */

#container #content #mainContent {
  background-color: #e0e0e0;
  float: left;
  margin: 0px px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 30px 0px 30px 90px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 610px;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9375em;
  font-weight: normal;
  line-height: 1.5em;
}
  #container #content #mainContent h1 {
  color: #003366;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: NORMAL;
  line-height: 1.5em;
  padding: 00px 0px 30px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}
#container #content #mainContent h2 {
  color: #003366;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5em;
}
#container #content #mainContent h3 {
  color: #003366;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9375em;
  font-weight: bold;
  line-height: 1em;
}
#container #content #mainContent #nestedtable {
  margin: 25px px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9375em;
  font-weight: normal;
  line-height: 1.3125em;
}
#container #content #mainContent a, #container #content #mainContent a:link {
  color: #003366;
  text-decoration: none;
}
#container #content #mainContent a:visited {
  color: #003366;
  text-decoration: none;
}
#container #content #mainContent a:hover {
  color: #333;
  text-decoration: underline;
}
#container #content #mainContent a:focus {
  color: #333;
  text-decoration: none;
}
#container #content #mainContenta:active {
  color: #333;
  text-decoration: none;
}
#container #content #mainContent .supscript {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	font-weight: normal;
	line-height: 1.5em;
	vertical-align: super;
}
#container #content #mainContent .subscript {
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75em;
  font-weight: normal;
  line-height: 1em;
}
#container #content #mainContent #img {
  margin: 0px px 10px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 20px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#container #content #mainContent #cutline {
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	font-weight: normal;
	line-height: 1.25em;
}


/* - ================================================================================= */
/* - ========================= /* BGN MAIN CONTENT-FULL ============================== */
/* - ================================================================================= */


/* 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. */

#container #content #mainContentFull {
  background-color: #e0e0e0;
  float: left;
  margin: 0px px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 30px 30px 10px 90px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 870px;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9375em;
  font-weight: normal;
  line-height: 1.5em;
  border-bottom:solid #999 1px
  }
  #container #content #mainContentFull h1 {
  color: #003366;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: NORMAL;
  line-height: 1.5em;
  padding: 00px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */

}
#container #content #mainContentFull h2 {
  color: #003366;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5em;
}
#container #content #mainContentFull h3 {
  color: #003366;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9375em;
  font-weight: bold;
  line-height: 1em;
}
#container #content #mainContentFull #nestedtable {
  margin: 0px px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .9375em;
  font-weight: normal;
  line-height: 1.3125em;
}
#container #content #mainContentFull a, #container #content #mainContentFull a:link {
  color: #003366;
  text-decoration: none;
}
#container #content #mainContentFull a:visited {
  color: #003366;
  text-decoration: none;
}
#container #content #mainContentFull a:hover {
  color: #333;
  text-decoration: underline;
}
#container #content #mainContentFull a:focus {
  color: #333;
  text-decoration: none;
}
#container #content #mainContentFull a:active {
  color: #333;
  text-decoration: none;
}
#container #content #mainContentFull .supscript {
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .75em;
	font-weight: normal;
	line-height: 1.5em;
	vertical-align: super;
}
#container #content #mainContentFull .subscript {
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75em;
  font-weight: normal;
  line-height: 1em;
}
#container #content #mainContentFull #img {
  margin: 0px px 10px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 20px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#container #content #mainContentFull #cutline {
	color: #666;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	font-weight: normal;
	line-height: 1.25em;
}


















/* - ============================================================================== */
/* - ========================= /* BGN FOOTER ====================================== */
/* - ============================================================================== */


#container #footer {
  background-color: #666;
  border-top: solid 1px #333; /* Sets the top border properties for an element using shorthand notation */
  color: #999;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75em;
  line-height: 20px;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 15px 0px 15px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 980px;
}
#container #footer a:link {
	font-weight: normal;
	text-decoration: none;
	color: #999;
}
#container #footer a:visited {
	font-weight: normal;
	text-decoration: none;
	color: #999;
 }
#container #footer a:hover {
	font-weight: normal;
	text-decoration: none;
	color: #CCCCCC;
}










