/* >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    CSS RESET
<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< */
/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 12px;
    vertical-align: baseline;
    background: transparent;
}
*/   
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 12px;
    vertical-align: baseline;
    background: transparent;
}


body {
    /* line-height: 1; */
    /* or use default: */
    line-height: 1.33;
}
/*
ol, ul {
    list-style: none;
}
*/

blockquote, q {
    quotes: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* probably add this */
/* the disabled automatic scollbars in IE */
textarea { overflow: auto; }
/* EO CSS RESET */



/* 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: #cccccc;
  background-image: url('u/bg-main.gif');
  background-position: top left;
  background-repeat: repeat-x;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  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. */
}
/*
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
}

h3 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
}
*/

h1 {
  color: #000;
  font: normal normal bold 16px Arial, Helvetica, sans-serif;
  line-height: 36px;
  text-decoration: underline;
}
h2 {
  color: #000;
  font: normal normal bold 15px Arial, Helvetica, sans-serif;
  line-height: 22px;
}
h3 {
  color: #000;
  font: normal normal normal 14px Arial, Helvetica, sans-serif;
  line-height: 21px;
}

h4 {
  color: #000;
  font: normal normal bold 12px Arial, Helvetica, sans-serif;
  line-height: 21px;
}


h5 {
  color: #000;
  font: normal normal bold 14px Arial, Helvetica, sans-serif;
  line-height: 16px;
  margin-top:14px;
  text-decoration: underline;
}

h6 {
  color: #000;
  font: normal normal bold 12px Arial, Helvetica, sans-serif;
  line-height: 16px;
}

ul.emph {
    list-style: square;
}

ul.downloads {
    padding-left:16px;
}

ul.downloads li {
    margin-bottom: 6px;
}

p {
    margin-bottom:6px;
    margin-top:12px;
}

table {
    margin-bottom:6px;
}

/* Sets the style for unvisited links. */
a,  a:link {
  color: #718925;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #718925;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #C00;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #C00;
}
/* 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: 800px;
}
#outerWrapper #header {
  background-color: #fff;
  height: 124px; /*121 + 3 for line */
  padding: 0;
  border-bottom: 2px solid #98B832;
}

/*
#outerWrapper #topNavigation {
  background-color: #F0EFF7;
  height: 44px;
  padding: 0;
  background-image: url('u/bg-line01.gif');
  background-position: top right;
  background-repeat: no-repeat;
}
*/

#outerWrapper #topNavigation {
  background-color: #FFF;
  height: 0px;
  padding: 0;
}

#outerWrapper #contentWrapper {
  background-color: #F0EFF7;
  background-image: url('u/bg-content.gif');
  background-position: top left;
  background-repeat: repeat-y;
}

#outerWrapper #contentWrapper #secondary {
  background-color: #ebebeb;
  float: right;
  padding: 0 0 0 0; 
  width: 264px;
}

#outerWrapper #contentWrapper #content {
  margin: 0 264px 0 0; 
  padding: 0 0 0 0; 
}
/* 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: both;
  display: block;
}

#outerWrapper #main {
  background-color: #fff;
}



#outerWrapper #footer {
  background-color: #eee;
  /*
  background-image: url('u/bg-footer.gif');
  background-position: top left;
  background-repeat: repeat-y;
  */
  padding: 0 0 0 0; 
}

#outerWrapper #footer .secondary {
  float: right;
  padding: 0 0 0 0;
  width: 264px;
}

#outerWrapper #footer .secondary .padded {
    padding-left: 20px;
    color: #FFF;
}

#outerWrapper #footer .secondary .padded a {
    color: #FFF;
}

#outerWrapper #footer .content {
  margin: 0 264px 0 0; 
  padding: 0 0 0 0; 
}



.padded {
    padding: 6px;
}


#header img {
    margin-top:16px;
}

#footer img {
    margin-top:3px;
    float: right;
}


#content div.people {
    text-align:center;
    margin-top: 24px;
}

p.subnote {
    font-style: italic;
}

span.subtext {
    font-style: italic;
    line-height: 20px;
}

