@charset "UTF-8";

/*******************************************************************************
*  visual_consistencies.css : 2005.09.07 : Ruthsarian Layouts
* -----------------------------------------------------------------------------
*  Font sizes on heading elements and the margin/padding applied to these
*  same elements will vary from browser to browser. This is an attempt to pull
*  the font sizes and spacing together for a consistent look across all
*  browsers. 
*
*  There are other rules included in this stylesheet (with comments on each)
*  to handle other visual consistency issues. You do not need to use this
*  stylesheet, nor do you need to follow it exactly. You can make changes
*  anywhere you want to make things look the way you want to. Nothing here
*  _should_ break a layout if modified.
*******************************************************************************/

ul, ol, dl, p, h1, h2, h3, h4, h5, h6
{
	/* pixels are used here, rather than ems, because I want a consistent 
	 * margin on the different headings. if I use ems, 1em for an h1 element 
	 * is much larger than 1em on an h6 element. I don't want this.
	 */
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
ul ul, ul ol, ol ul, ol ol
{
	/* kill margins on sub-lists
	 */
	margin-top: 0;
	margin-bottom: 0;
}
h1
{
	font-size: 240%;
}
h2
{
	font-size: 180%;
}
h3
{
	font-size: 140%;
}
h4
{
	font-size: 100%;
}
h5
{
	font-size: 70%;
}
h6
{
	font-size: 50%;
}
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:hover
{
	/* because I like the visual feedback a user gets when they
	 * mouse over a link and see the underline of the link
	 * disappear.
	 */
	text-decoration: none;
}
code, pre
{
	/* Make sure we're all using the same monospaced font for CODE
	 * and PRE elements
	 */
	font-family: "Courier New", Courier, monospace;
}
label
{
	/* It's all about the visual feedback. In this case, label 
	 * elements are usually clickable which then set focus on
	 * their target. I want to show that to the user in a manner
	 * they are used to and understand.
	 */
	cursor: pointer;
}
table
{
	/* Some browsers won't carry the font size down into the 
	 * browser like they're suppose to.
	 */
	font-size: 100%;
}
td, th
{
	/* I never like or use the default vertical centering "feature"
	 * provided by tables. 
	 */
	vertical-align: top;
}
body
{
	/* I've seen several comments that setting the base font size to 100.1%
	 * fixes some browser bugs. Which bugs? I don't know. I believe it's
	 * to fix some rounding-error bugs that some browsers (Mozilla) are
	 * prone to. It doesn't hurt anything, so I keep it here.
	 */
	font-size: 100.1%;
}

/******************************************************************************/

#main_menu {
	position: relative;
	margin: 25px 0 5px 20px;
    padding: 0;
	width: 950px;
   z-index: 900;
}

#main_menu li.here {
	background: transparent url(../images/bullet.gif) no-repeat 0 9px;
}

/*#main_menu li a.drop {
	padding-right: 15px;
	background: transparent url(../images/dropdown.gif) no-repeat center right;
}

#main_menu li:hover a.drop,
#main_menu li.sfhover a.drop {
	padding-right: 15px;
	background: transparent url(../images/dropdown-over.gif) no-repeat center right;
}*/

#main_menu li.expand a {
	background: transparent url(../images/expand.gif) no-repeat center right;
}

#main_menu li.expand:hover a,
#main_menu li.expand.sfhover a {
	background: transparent url(../images/expand-over.gif) no-repeat center right;
}

#main_menu li.expand li a,
#main_menu li:hover.expand li a,
#main_menu li.sfhover.expand li a {
	background-image: none;
}

#main_menu li {
	position: relative;
	margin: 0 20px 0 0;
	padding: 0;
	list-style: none;
	float: left;
}

#main_menu li:hover,
#main_menu li.sfhover {
	background: transparent url(../images/bullet.gif) no-repeat 0px 9px;
	cursor: pointer;
}

#main_menu li li {
	margin: 0 0 -1px 0;
	padding: 0;
	float: none;
	background: #c4db0d;
	border: 1px solid #fff;
}

#main_menu li:hover li,
#main_menu li.sfhover li {
	background-color: #c4db0d;
	background-image: none;
}

#main_menu li li:hover,
#main_menu li li.sfhover {
	background-color: #707061;
}

#main_menu li a {
	display: block;
	margin-left: 10px;
	padding: 3px 3px 8px 3px;
	color: #d4d4d0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 93%;
	font-weight: normal;
	text-decoration: none;
}

#main_menu li:hover a,
#main_menu li.sfhover a {
	color: #fff;
}

#main_menu li:hover li a,
#main_menu li.sfhover li a {
	color: #484C4B;
}

#main_menu li li a {
	display: block;
	margin: 0;
	padding: 5px 5px 5px 13px;
	color: #484C4B;
	font-size: 80%;
	font-weight: normal;
}

#main_menu li li:hover a,
#main_menu li li.sfhover a {
	color: #fff;
}

#main_menu li li:hover li a,
#main_menu li li.sfhover li a {
	color: #484C4B;
}

#main_menu li li li:hover a,
#main_menu li li li.sfhover a {
	color: #fff;
}


#main_menu ul {
	left: -1000px;
	margin: 0 0 0 12px;
	padding: 0;
	position: absolute;
	width: 14em;
	z-index: 910;
	background-color: #fff;
}

#main_menu ul ul {
	margin: -15px 0 0 200px;
   z-index: 920;
}

#main_menu li:hover ul,
#main_menu li.sfhover ul {
	left: auto;
  	z-index: 910;
}

#main_menu li:hover ul ul,
#main_menu li.sfhover ul ul {
	left: -1000px;
}

#main_menu li li:hover ul,
#main_menu li li.sfhover ul {
	left: 22px;
	z-index: 920;
}
/**************************************************************************
 * STYLES START HERE.  DO NOT MODIFY ANY CODE ABOVE THIS LINE, ONLY BELOW *
 **************************************************************************/

/*****************
 * GLOBAL STYLES *
 *****************/

body {
	margin: 0;
	padding: 0;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
   color: #3F3F36;
   background: #707061 url(../images/background.jpg) no-repeat 20px 53px;
}
 
#wrapper {
  	 width: 950px;
    margin-left: 20px;
    padding-top: 1px;
    position: relative;
}

span {
	display: none;
}

#logo {
	margin: 20px 0 14px 30px;
            width: 226px;
    height: 135px;
    background: transparent url(../images/logo-trans.png) no-repeat 0 0;
}

div.columns {
    margin-top: -70px;
        }

div.columns div.leftcol,
div.columns div.rightcol {
	float: left;
}

div.leftcol {
	font-size: 77%;
	margin-left: 18px;
	padding: 16px 0 0 37px;
	width: 130px;
	}

div.rightcol {
	margin: 18px 40px 0 40px;
    width: 685px;
	}

#inset {
	float: right;
    margin: -141px 13px 20px 20px;
    z-index: 100;
    }

#pageTitle {
    overflow: hidden;
    }

#tagline {
    font: normal 116% Arial, Helvetica, sans-serif;
    color: #fff;
    padding-left: 20px;
    position: absolute;
    right: -16px;
    top: -39px;
        border-left: solid 1px #C4DB0D;
}

/*********************
 * PAGE TITLE STYLES *
 *********************/

#pageTitle h2 {
	margin: 0 0 100px 0;
	padding: 27px 0 0 30px;
	width: /*507px*/ 800px;
		height: 52px;
    float: left;
  	color: #707061;
    font-family: arial;
    font-size: 120%;
    font-weight: normal;
    letter-spacing: 20px;
    border: 2px solid #fff;
    border-right: 0;
    border-left: 0;
    background: #c4db0d;
    clear: right;
}


/***********************
 * PAGE CONTENT STYLES *
 ***********************/
 
#content {
	padding: 0;
  	width: 950px;
   background: #fff;
   min-height: 975px;
}

#content div.leftcol h4 {
    background: transparent url(../images/success-trans.png) no-repeat 0 0;
	margin: -15px 0 10px 0px;
	padding: 17px 0 10px 37px;
	font-size: 80%;
}

#content div.leftcol p {
	margin: 0;
   padding: 0 0 10px 0;
}

#content div.leftcol ul {
	margin: 0;
    padding: 0;
    font-size: 108%;
}

#content .leftcol h5 {
	color: #b0c40d;
    margin: 0;
    font-size: 108%;
}

#content div.leftcol img {
	margin-bottom: 15px;
    }

.leftcol cite {
	padding-bottom: 1em;
}

#content a {
   color: #484C4B;
}

#content p.more a {
	display: block;
	padding-left: 15px;
	font-style: italic;
	background: transparent url(../images/readMore-trans.png) no-repeat 0 0;
}

#content div.rightcol {
   font-size: 85%;
   line-height: 160%;
}

#content div.rightcol h3,
#content div.rightcol h4 {
	margin: 0;
	padding: 0;
   color: #b0c40d;
}

#content div.rightcol h3 {
	margin: 0 0 20px 0;
    font-size: 161.6%;

}

#content div.rightcol h4 {
	clear: left;
    margin: 1.4em 0 -1.6em 0;
}

#content div.rightcol h5 {
	margin: 0 0 0 0;
    color: #b0c40d;
    font-size: 100%;
}

#content div.rightcol h6 {
	margin: 0 0 15px 0;
    font-size: 85%;
    font-weight: normal;
}

#content div.rightcol h3,
#content div.rightcol h5 {
    line-height: 140%;
}

#content div.rightcol p {
	margin: 1.6em 0 0 0;
    clear: left;
	}

#content div.rightcol ul,
#content div.rightcol ol {
	margin: 1.6em 0 1.6em 0;
   padding: 0 30px;
	color: #b0c40d;
   float: left;
}

#content div.rightcol ul.collapse {
	margin-top: 0;
}

#content div.rightcol ul li span,
#content div.rightcol ol li span {
	color: #3F3F36;
   display: inline;
	}

#content .rightcol ol h4 {
	font-weight: bold;
    margin: 0;
}

#content .rightcol ol li {
	margin-top: .5em;
}

#content div.rightcol p.mission {
	margin: 0 0 30px 0;
	   padding: 0;
}

span.tagline {
	color: #B0C40D;
    display: inline;
}

.clearleft {
	clear: left;
}
.floatright {
	float: right;
    margin: 0 0 15px 30px;
}
/**********************
 * PAGE FOOTER STYLES *
 **********************/

#footer {
	padding-bottom: 7px;
  	width: 950px;
  	font-size: 90%;
   background: #fff;
   overflow: hidden;
}

#footer h4 {
	font-size: 140%;
	margin: 0 auto;
	padding: 20px 0 10px 10px;
   width: 850px;
		color: #b0c40d;
   font-variant: small-caps;
	text-align: right;
   border-bottom: 3px solid #b0c40d;
}

#footer ul {
	float: right;
    position: relative;
    right: 40px;
}

#footer ul,
#footer li {
	margin: 10px 0 0 0;
   padding: 0;
   list-style-type: none;
}

#footer ul li {
	margin-right: 55px;
		float: left;
}

#footer ul li a {
	display: block;
   padding: 0 0 7px 0;
   color: #484C4B;
	border-bottom: 5px solid #b0c40d;
}

#designby {
    width: 950px;
}

#designby p {
  	color: #fff;
   font-size: 77%;
   text-align: right;
   margin-right: 20px;
}

#designby a {
	color: #fff;
}

/*****************************
//  FORM STYLES, CONTACT.PHP
//
*****************************/

#contactform {
	
}
fieldset {
	border: 1px solid #CCC;
	padding: 20px 0;
    margin-top: 20px;
}
legend {
	font-weight: bold;
	padding-right: 15px;
	padding-left: 15px;
	font-size: 130%;
	color: #666;
}
#contactform ul{
	margin: 0;
	padding: 0px;
}
#contactform li{
	list-style: none;
	padding: 0 15px;
	margin: 10px 0;
}
form label {
	clear: left;
	float: left;
	width: 200px;
}
form input , form textarea {
	clear: right; 
	width: 300px;
	margin-left: 20px;
}
#submit {
	width: 150px;
	margin-left: 220px;
}
