/* General page layout:
   1. A page is divided into three sections (or rows): top, middle and bottom.  
   2. The middle section is divided into two columns
*/
body {
    margin:0px;
    background-color:#ff6d00;
}
div.pg_container
{
    background-color:#fff0ae; 
    margin:0px;
    border:1px solid #ff6d00;
    line-height:150%;
    font-family:verdana;
    font-size:12px;
}
div.pg_header,div.pg_footer
{
    padding: 0px;
    color:white;
    background-color:#ff6d00;
    clear:left;
}
div.pg_footer
{
    padding:10px;
}
h1.pg_header
{
    padding:0px;
    margin:0px;
}
div.pg_navigation
{
    float:left;
    width:200px;
    margin:0px;
    padding:0px;
    color:#993300; 
}
div.pg_content
{
    min-height: 400px;
    margin-left:200px;
    margin-top:0px;
    background-color:#ffffff;
    color: #0a2f5b;
    border-left:1px solid #ff6d00;
    padding:1em;
}

ul.navigation {
/*    list-style-type:none; */
    padding-left:20px;
}
li.nav_normal {
    cursor: pointer;
}
li.nav_normal:hover {
    text-decoration: underline;
}
li.nav_hilight {
    background-color:white;
    cursor: pointer;
}
hr.navigation {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #ff6d00;
}
a.header {
    color: white;
    cursor: pointer;
    text-decoration: none;
}
a.header:hover {
    text-decoration: underline;
}

