/*	Beirut stylesheet -- a CSS layout demo
 *	original at http://stijlstek.nl/demo/beirut/
 *	copyleft 2004 Ben de Groot -- http://stijlstek.nl/contact
 *	licensed under the GNU Free Documentation License which in layman's terms
 *	means you are free to use and modify this stylesheet as long as you
 *	keep the license notice and credit to the original author intact  */

/*	Let's start with zeroing out any browser default margins and paddings */

* {
	margin: 0;
	padding: 0;
	}

/*	Next we set the page height, to position the footer at bottom of the window
 *	when page is short, and at the bottom of the page when page is longer  */

html, body {
	height: 100%;
	background: rgb(250,255,245);
	color: #000;
	}

body {
    font-family: verdana, helvetica, arial, sans-serif;
    font-size: 73%;  /* Enables font size scaling in MSIE */
	}

html>body { font-size: 9pt; } /* for modern browsers that can resize px */

/* ##### Layout structural elements ##### */

#wrap {
	position: relative;
	height: 100%;
	width: 100%;
	}

#middle {
	position: relative;
	height: auto;
	min-height: 100%; /* for modern browsers, to push the footer down */
	margin-right: 200px; /* right column width */
	margin-left: 200px; /* left column width */
	margin-bottom: -3em; /* footer height */
	width: auto;
	}

#middle:after { /* this will keep the floats contained, for modern browsers */
    content: "."; 
    display: block; 
    height: 0; 
    overflow: hidden; 
    clear: both;
    visibility: hidden; 
    } 

* html #middle {
	height: 100%; /* for IE because it doesn't do min-height */
	}

/*	Now we set the header, footer and columns...   */

#header {
	position: absolute;
	top: 0;
	left: 0;
	height: 10.25em;
	width: 100%;
	overflow: hidden;
	z-index: 3; /* to show it on top */
	}

#main, #rightcol { /* so that the content will not overlap with the header or footer */
	padding-top: 10.25em;
	padding-bottom: 0em; /* original was 3em ?? */
	}

#main {
	position: relative; /* IE float bug workaround */
	float: left;
	width: 100%;
	margin-right: -1px;
	}

#content {
	background-color: rgb(255,255,255);
	position: relative;
	float: right;
	width: 100%;
	margin: 0 -1px;
	}

#leftcol {
	position: relative;
	float: left;
	width: 200px;
	margin-left: -199px; /* width -1 */
	}

#rightcol {
	position: relative;
	float: right;
	width: 200px;
	margin-right: -199px; /* width -1 */
	}

* html #rightcol { /* addressing some IE bugs */
	width: 199px; 
	margin-top: 1.7em;
	}

* html #rightcol, * html #leftcol, * html #content {
	overflow:hidden;
	}

#footer {
	clear: both; /* just to make sure it comes below the columns */
	position: relative;
	width: 100%;
	height: 3em;
	}

/* ##### Style functional elements ##### */

/*	And finally giving block elements inside the columns a default margin.
 *	This prevents the need for a box model hack on all the columns.
 *	If it wasn't for IE, we could do #nav>*,#content>*,#xtra>* { rules } */

h2, h3, h4, h5, h6, p, ul, ol, dl, pre, blockquote, form, fieldset, address {
	margin: 1em 15px;
	}

/* Now some basic universals */
ol {
    margin: 1em 0 1.5em 0;
    padding: 0;
    }
ol li {
    line-height: 1.5em;
    margin: 1.25ex 0 0 2em;
    padding: 0;
    }
ul {
    list-style-type: square;
    /*list-style-position: outside;*/
    margin: 1em 0 1.5em 1em;
    padding: 0;
    }
ul li {
    line-height: 1.5em;
    margin: 1.25ex 15px 0 1.5em;
    padding: 0;
    }
dl {
    margin: 1em 0 0.5em 0;
    padding: 0;
    }
dt {
    font-weight: bold;
    margin: 0 15px;
    padding: 0 0 1ex 0;
    }
dd {
    line-height: 1.75em;
    margin: 0 15px 1.5em 2.5em;
    padding: 0;
    }
.doNotDisplay { display: none !important; }
.smallCaps {
    font-size: 117%;
    font-variant: small-caps;
    }
a {
    text-decoration: none;
    color: rgb(0,0,255);
    }
a:hover {
    text-decoration: underline;
    }
img {
	border: 0px none;
	display: block;    /* removes extra space underneath caused by default text-alignment */
	}
.headshot {
	display: inline;
	float: left;
	margin: 0px 0.5em 0.5em 0px;
	}
/* ##### Header ##### */

.superHeader {
    color: rgb(130,128,154);
    background-color: rgb(19,58,37);
    text-align: right;
    margin: 0;
    padding: 0.5ex 10px;
    }
.superHeader span {
    color: rgb(255,255,255);
    background-color: transparent;
    font-weight: normal;
    }
.superHeader a {
    color: rgb(195,196,210);
    background-color: transparent;
    text-decoration: none;
    margin: 0;
    padding: 0 0.25ex 0 0;
    }
.superHeader a:hover {
    color: rgb(193,102,90);
    background-color: transparent;
    text-decoration: none;
    }
.midHeader {
    color: white;
    background-color: rgb(0,102,51);
    margin: 0;
    padding: 0.26ex 10px;
    line-height: 1.23; /* IE6 peek-a-boo bug workaround */
    }
.headerTitle {
    font-size: 300%;
    margin: 0;
    padding: 0;
    }
.headerSubTitle {
    font-size: 151%;
    font-weight: normal;
    font-style: italic;
    margin: 0 0 1ex 0;
    padding: 0;
    }

.subHeader {
    color: white;
    background-color: rgb(0,204,102);
    margin: 0;
    padding: 0.5ex 10px;
    }
.subHeader a, .subHeader .highlight {
    color: white;
    background-color: transparent;
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0 0.25ex 0 0;
    }
.subHeader a:hover, .subHeader .highlight {
    color: rgb(255,204,0);
    background-color: transparent;
    text-decoration: none;
    }
.current {
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    margin: 0;
    padding: 0 0.25ex 0 0;
    color: rgb(0,0,0);
    background-color: transparent;
    text-decoration: none;
    }
div#search form {
	position: absolute;
	right: 0px;
	top: 70px;
	margin: 0px;
	white-space: nowrap; /* added as recent builds of Firefox wrap the form content */
    padding-right: 0.5em; /* need this or Firefox produces horizontal scroll bar */
	}
div#search p {
   display: inline;
   margin-left: 0.15em;
   margin-right: 0.1em;
   }

/* ##### Main Copy ##### */

#content {
    text-align: justify;
    padding: 0;
    }
#content h1 {
    color: rgb(0,153,77);
    background-color: transparent;
    font-family: "trebuchet ms", verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-size: 186%;
    letter-spacing: 1px;
    padding: 1.5ex 0 0 0;
    margin: 0 0 0 15px;
    }
#content h2 {
    color: rgb(0,153,77);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 151%;
    letter-spacing: 1px;
    padding: 1ex 0 0 0;
    }
#content h3 {
    color: rgb(0,153,77);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: normal;
    font-size: 151%;
    letter-spacing: 2px;
    padding: 0.75ex 0 0 0;
    }
#content h4 {
    color: rgb(0,153,77);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 120%;
    letter-spacing: 2px;
    padding: 0.75ex 0 0 0;
    }
#content p {
    line-height: 1.75em;
    padding: 0;
    }
#content p.references {
    line-height: 1.1em;
    padding: 0;
    }
.floatbox {
    overflow: visible;
    font-size: 95%;
    font-family: verdana, helvetica, arial, sans-serif;
    font-style: normal;
    text-align: left;
    line-height: 1.25;
    margin: 0 0.75em 0.25em 0.75em;
    padding: 0.25em;
    border: 1px solid rgb(0,102,51);
    float: right;
    clear: right;
    color: black;
    background: rgb(215,254,219);
    width: 50%;
    }
#content p.highlight {
    font-size: 95%;
    font-family: verdana, helvetica, arial, sans-serif;
    line-height: 1.25em;
    padding: 1.5em;
    border: 1px solid rgb(0,102,51);
    background: rgb(215,254,219);
    }
.more {
    text-align: right;
    margin: 0;
    padding: 0.5em 0;
    }
.more a {
    color: rgb(0,0,255);
    background-color: transparent;
    font-size: 92%;
    text-decoration: none;
    margin: 0;
    padding: 0.25ex 0.75ex;
    }
.more a:hover {
    color: rgb(0,0,255);
    text-decoration: underline;
    }
.topOfPage {
    font-size: 90%;
    font-weight: bold;
    font-variant: small-caps;
    text-decoration: none;
    padding-left: 1ex;
    padding-right: 1ex;
    float: right;
    margin-right: 15px;
    }
.feedDisplay {
    line-height: 1.75em;
    margin: 0 1em;
}

/* -------- Table ---------- */
table.generic {
    margin-left: auto;
    margin-right: auto;
    background-color:#FFFFFF;
    border: solid #000 1px;
    font: 100% Arial, sans-serif;
    }
table.generic td {
    padding: 2px;
    border: solid #000 1px;
    }
table.generic caption {
    text-align: center;
    font-size: 120%;
    }
.data {
    color: #000;
    text-align: right;
    }
.datamid {
    color: #000;
    text-align: center;
    }
.dataleft {
    color: #000;
    text-align: left;
    }
.toprow {
    font-weight: bold;
    text-align: center;
    background-color: #f7f2ea;
    }
.evenrow {
    font-style: normal;
    text-align: center;
    background-color: #eee;
    }
.oddrow {
    font-style: normal;
    text-align: center;
    background-color: #e6e4e4;
    }
.labelcol {
    font-weight: bold;
    text-align: left;
    width: 15%;
    background-color: #f7f2ea;
    }

/* ##### Left sidebar content ##### */

#lside-bar {
    color: rgb(0,102,51);
    background-color: white;
    width: 180px;
    margin: 1em 0 1em 1.5ex;
    padding: 1ex 0;
    border: 1px solid rgb(0,102,51);
    }
    /*
[id="lside-bar"] {  Side menu scrolls with the page. But not in IE 
    position: fixed !important;
    }
    */
#lside-bar li {
    list-style-type: square;
    line-height: 1.2em;
    margin-left: 1.5em;
    padding: 0;
    }
#lside-bar li a:hover {
    text-decoration: underline;
    }
#lside-bar li.header {
    line-height: 1.25em;
    list-style-type: none;
    font-weight: bold;
    margin: 0;
    padding: 2ex 0 0 2.5ex;
    }

/* ##### Rigt sidebar content ##### */

h4 {
    color: rgb(153,0,0);
    background-color: transparent;
    font-family: verdana, helvetica, arial, sans-serif;
    text-align: left;
    font-weight: bold;
    font-size: 120%;
    letter-spacing: 1px;
    padding: 0;
    }
/* box with listed links - border currently off */
#rside-listbox {
    color: rgb(0,102,51);
    background-color: transparent;
    list-style-type: square;
    list-style-position: inside;
    width: 180px;
    margin: 1em 1.5ex 2em 1em;
    padding: 1ex 0;
    /*border: 1px solid rgb(0,102,51);*/
    }
#rside-listbox li {
    line-height: 0.5em;
    margin: 0;
    padding: 0.75ex 1.75ex 1ex 0;
    }
/* paragraph ~ border currently on */
#rightcol p {
    width: 179px;
    padding: 0 0.5em;
    margin: 1em 1.5ex 1em 1.5ex;
    /* border: 1px solid rgb(0,102,51); */
    background-color: transparent;
    color: #000;
    font-size: 0.9em;
    font-family: verdana, helvetica, sans-serif;
    line-height: 1.5em;
    text-align: left;
    }

/*  -------------------- Subscription Form --------------- */

div.subscontainer {
    float: none;
	width: 194px;
    padding: 0;
    margin: 1em 0;
    background-color:#f7f2ea;
    text-align: center;
    border: solid 1px #000;
    font-family: verdana, arial, sans-serif;
    font-size: 100%;
    color: #000;
    }
.subshead {
    color: #fff;
    font-weight: bold;
    background-color: rgb(0,102,51);  /*rgb(19,58,37);*/
    font-variant: small-caps;
    letter-spacing: 2px
    }
.subsform {
    padding: 0;
    margin: 0;
    text-align: center;
    background-color:#f7f2ea;
    color: #000;
    font-family: verdana, arial, sans-serif;
    font-size: 75%;}
.subsfoot {
    color: #000;
    background-color:#efefef;
    font-family: arial, sans-serif;
    font-size: 90%;
    }
span.h {
    color: #900;
    font-weight: bold;
    }

/* ##### Footer ##### */

#footer {
    color: rgb(51,51,102);
    background-color: rgb(239,239,239);
    font-size: 87%;
    text-align: center;
    line-height: 1.25em;
    margin: 0;
    padding: 1ex 0 20px 0;
    border-top: 1px solid rgb(0,102,51);
    }
#footer a:hover { text-decoration: underline; }
