@charset "utf-8";
/* CSS Document */
/* layout750Plain.css */
/* This is the css document that controls the overall page layout. It is preceded by reset.css and  typography.css files and is followed by a style sheet particular to this site's colors, fonts and special div's. */

/****** html styles ********/

body{
    background-color: #ffffff;
    }

img {
    border: none;
    }


/***********************************************/
/* Layout Divs                                 */
/***********************************************/

#container { /*Note: this holds everything on the page including all nav bars, footer, topsection etc. */

    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    position: relative;
    width: 1024px;
}

#topSection{    /*This holds the masthead and any other tiny nav bars, buttons or information in the masthead that is constant on all pages*/
    clear: both;
    background:url(../images/topback72.gif) repeat;
    height:72px;
}

#topSection img {
    visibility: visible;
    float: left;
}

#floatwrapper{ /*this holds everything below the masthead/topsection*/
    width: 1022px;/*was 974 but too narrow*/
    margin: 0;
    padding-top: 0em;
    }


    



/***********************************************/
/*Component Divs                               */
/***********************************************/








/************* #globalNav styles (this is the main horizontal nav at the top - it is a part of the floatwapper) *************/
#globalnav {
    background-image:url(../images/globalnavbackgrnd.gif);
    background-repeat:repeat-x;
    margin: 0;
    padding: 0;
    height: 29px;
    text-align: center;
    border-bottom: 1px solid #999999;
    width: 1024px;
/*added 4/29/2011 to increase size of menu text*/
    font-size: 115%;
    
}

#globalnav ul {
    list-style-type: none;
    padding-top: 5px; 
    padding-bottom: 5px;
    margin-bottom: 0;
}

#globalnav li {
    display: inline;
    

}
#globalnav li a, .leftmenu li a, #utilitynav li a {
    text-decoration: none;
    color: #255276;
}
#globalnav li a:hover, .leftmenu li a:hover, #utilitynav li a:hover {
text-decoration: underline;
font-weight: normal;
}

#globalnav li a {
    padding-left: 1.5em;/*was .5*/
    padding-right: 1.5em;/*was .5*/
    white-space: nowrap;
    
    
    }



/************* #footer styles ***************/
/*Note: the footer is in the container and in the floatwrapper*/
#footer{
    clear: both;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 0px;
    font-size: 0.8em;
    width: 1024px;
    text-align: center;
    background-color: transparent;    
    background-image:url(../images/topback72.gif);
    background-repeat: repeat-x;    
    
}













