/* ----- CSS ----- */


body{
font-family: Arial,Helvetica,sans-serif;
font-size: 0.9em;
color: rgb(153, 153, 153);
font-weight: 500;
}

/* ----- DIVS ----- */

div.container {
margin: 10px;
margin-left: auto;
margin-right: auto;
padding: 10px;
		}

div.top{
text-align: center;
background-image:url(images/bg_top.png);
width: 100%;
}

div.footer{
clear: both;
padding-top:20px;
}



/* ----- HR ----- */

hr{border: none 0;
border-top: 1px solid #bdd097;
border-bottom: 1px solid #bdd097;
width: 100%;
height: 2px; margin: 10px auto;
text-align: center;
}

/* ----- NAV ----- */

.navcontainer
{
margin: 0;
padding: 0 0 0 12px;
}
.navcontainer UL
{
list-style: none;
margin: 0;
padding: 0;
border: none;
}
.navcontainer LI
{
display: block;
margin: 0;
padding: 0;
float: left;
width: auto;
}
.navcontainer A
{
color: #444;
display: block;
width: auto;
text-decoration: none;
background: #DDDDDD;
margin: 0;
padding: 2px 10px;
border-left: 1px solid #fff;
border-top: 1px solid #fff;
border-right: 1px solid #aaa;
}
.navcontainer A:hover, .navcontainer A:active { background: #BBBBBB; }
.navcontainer A.active:link, .navcontainer A.active:visited
{
position: relative;
z-index: 102;
background: #BBBBBB;
font-weight: bold;
}
.subnav
{
position: relative;
top: -1px;
z-index: 101;
margin: 0;
padding: 0px 0 3px 0;
background: #BBBBBB;
border-top: 1px solid #fff;
border-bottom: 1px solid #aaa;
}
.subnav UL
{
list-style: none;
margin: 1px 0 0px 13px;
padding: 0px;
border-right: 1px solid #fff;
border-left: 1px solid #aaa;
}
.subnav LI
{
position: relative;
z-index: 102;
display: block;
margin: 0;
padding: 0;
float: left;
width: auto;
}
.subnav A
{
color: #fff;
display: block;
width: auto;
text-decoration: none;
margin: 0;
padding: 2px 12px 2px 10px;
}
.subnav A:hover, .subnav A:active { color: #444; }
.subnav A.active:link, .subnav A.active:visited { color: #444; }
.subnav BR, .navcontainer BR { clear: both; }
body, html { border-style: none;
background-color: rgb(255, 255, 255);
background-repeat: repeat-x;
}

/* ----- LINKS ----- */

a:hover{
}
a:visited, a:active, a:focus{
}
a:visited{
}
a:active{
}

/* ----- BOXES ----- */

 .box
{
float: left;
width: 250px;
border: 1px solid #999;
margin: 0 15px 15px 0;
padding: 5px;
}

/* ---- BR ------ */

br.clearboth{
clear: both;
}


/* ---- Fonts ------ */

.small{
font-size: 0.6em;
}


/* ---- Forms ------ */

form { /* set width in form, not fieldset (still takes up more room w/ fieldset width */
font:100% verdana,arial,sans-serif;
margin: 0;
padding: 0;
min-width: 400px;
max-width: 500px;
width: 460px; }
form fieldset {
/ * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
border-color: #000;
border-width: 1px;
border-style: solid;
padding: 10px; /* padding in fieldset support spotty in IE */
margin: 0;
}
form fieldset legend {
font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
/* be careful with padding, it'll shift the nice offset on top of border */
}
form label { display: block; /* block float the labels to left column, set a width */
float: left; width: 150px; padding: 0; margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
text-align: right; }
form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
text-decoration:underline; /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
/* pseudo-class on legend elements, but do support it on label elements */
/* we instead underline first letter on each label element and accesskey */
/* each input. doing only legends would lessens cognitive load */
/* opera breaks after first letter underlined legends but not labels */
}
form input, form textarea {
/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
width:auto; /* set width of form elements to auto-size, otherwise watch for wrap on resize */
margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
label aligns textarea better in IE */
}
form input#reset {
margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}
textarea { overflow: auto; }
form small {
display: block;
margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
padding: 1px 3px;
font-size: 88%;
}
form .required{font-weight:bold;} /* uses class instead of div, more efficient */
form br {
clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

div.left{
margin-left: 20%;
}


