/*********************************
 * NAME: styles.css
 * Description: main site styles
 * Author: LRM
 * Date: 11/20/2009
 * Change History:
 *      11/20/2009 - 1.0:
 *          Initial Styles
 ********************************/
/* CLEARFIX */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
}
 
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}
/* END CLEARFIX */

/* set up page size, padding font size and background */
html {
    text-align: center;
    padding: 0px;
    margin: 0px;
}

.pagecontainer {
    width: 900px;
    margin: 10px auto;
    text-align: center;
    padding: 0px;
    font-size:1em;
}

/* Hide top H1 - contains page title */
h1.hidden {
    display: none;
}
/* float right for sidebar to fit in place */
div#content.main {
    width: 620px;
    margin: 0px;
    padding: 5px 20px; /* = 660px total width */ 
    float: right;
    text-align: left;
}

div#content h2.title {
    font-size: 1.6em;
    line-height: 120%;
    color: darkblue;
}
div#content p {
    font-size: 0.9em;
    line-height: 200%;
    
}
.helpbutton {
    float: right;
    margin-right: 50px;
    position: relative;
}
div#content .helpbutton .messagelink {
    position: absolute;
    display: none;
    top: -200px;
    left: -150px;
    width: 225px;
    background-color: #dddddd;
    border: groove;
    border-width: 4px;
    padding: 5px;
}
div#content .helpbutton .messagelink h3 {
    margin-top: 5px;
}
div#content .helpbutton .messagelink p {
    font-size: 1em;
    line-height: 1.2em;
}
div#content .helpbutton:hover div.messagelink {
    display: block;
}
.sidebarmenu {
    float: left;
    margin-top: 30px;
    padding: 0px 10px 0px 0px;
    width: 215px;
    border: none;
    border-right: 5px solid blue;
    background: none;
}
.sidebarmenu ul {
    margin-top: 0px;
    margin-left: 10px;
    font-weight: bold;
}
.sidebarmenu ul li {
    text-align: left;
    list-style: square;
    font-weight: bold;
    line-height: 1.5em;
    font-size: 0.75em;
}
.sidebarmenu li li {
    font-size: 1em;
}
.sidebarmenu ul {
    margin-bottom: 0px;
}
.sidebarmenu ul li a {
    line-height: 1.5em;
    display: block;
}
.sidebarmenu ul li a:hover {
    color: green;
    background-color:#dddddd;
}
.footer {
    clear: both;
    width: 80%;
    padding-left: 20px;
    text-align: left;    
    font-weight: bold;
    font-size: 0.6em;
}
