/*******************************************************************************
Layout
*******************************************************************************/

body
{
    margin: 0px 0px 0px 0px;
    padding: 10px 10px 10px 10px;
    background-color: #6F7A86;
    text-align: justify;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #505050;
    /*
    Internet Explorer Scrollbar Colors
    */
    scrollbar-arrow-color: #E7E9F1;
    scrollbar-face-color: #1762A9;
    scrollbar-highlight-color: #1762A9;
    scrollbar-3dlight-color: #E7E9F1;
    scrollbar-shadow-color: #1762A9;
    scrollbar-darkshadow-color: #E7E9F1;
    scrollbar-track-color: #E7E9F1;
}

#page
{
    position: relative;
    margin: 0px auto 0px auto;
    border: 1px solid #000000;
    width: 960px;
    height: 650px;
    background: #7BADE0 url(../Images/Layout_Collage.jpg) no-repeat bottom left;
}

#content
{
    position: absolute;
    z-index: 3;
    top: 110px;
    left: 185px;
    border: 8px solid #0064CD;
    padding: 35px 50px 0px 50px;
    width: 647px;
    height: 467px;
    background-color: #FFFFFF;
    overflow: auto;
}

#contentBottomPadding
{
    clear: both;
    height: 35px;
}

#menuContainer
{
    position: absolute;
    z-index: 3;
    top: 118px;
    left: 12px;
    width: 173px;
    /*
    The height when one of the contained menus is expanded.
       Menu items not including menu item of expanded menu
       |       1px space between menu items not including menu item of expanded menu
       |       |      Height of the expanded menu (See menu class for breakdown)
    ___|__   __|__   _|_
    22 * 4 + 1 * 3 + 137 = 228
    */
    height: 228px;
    overflow: hidden;
    visibility: hidden;
}

#menuContainer .menu
{
    position: absolute;
    width: 100%;
    /*
    Menu item
    |    Space between menu item and first submenu item
    |    |      Submenu Items
    |    |      |     Extra space after last submenu Item
    |    |      |     |
    |    |   ___|__   |
    22 + 3 + 16 * 6 + 16 = 137
    
    Since the menu item and 1 pixel of the 3 pixels of space between the menu item and the first
    submenu item are always visible, the menus will only need to slide down 137 - 22 - 1 = 114
    pixels. See the constructor in the SlidingMenu.js file to specify the sliding distance.
    */
    height: 137px;
}

#menuContainer .menuBg
{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #3971AB;
    margin-left: 5px;
}

#menuContainer .menuItem
{
    display: block;
    position: relative;
    margin-bottom: 3px; /* This is the space between the menu item and the first submenu item. */
    padding-top: 4px; /* The padding is added to the height for a total height of 22 pixels. */
    padding-left: 10px;
    width: 100%;
    height: 18px;
    background: #003E80 url(../Images/Layout_MenuItemBg.gif) no-repeat;
    color: #FFFFFF;
    cursor: pointer;
}

#menuContainer .subMenuItem
{
    display: block;
    position: relative;
    padding: 1px 0px 0px 15px;  /* The padding is added to the height for a total height of 16 pixels. */
    width: 100%;
    height: 15px;
    font-size: 10px;
}

#menuContainer a
{
    text-decoration: none;
    color: #FFFFFF;
}

#menuContainer .sfHover
{
    text-decoration: none;
    color: #FFA64D;
}

#links
{
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 10px;
}

#links a
{
    color: #D2E8FF;
	padding: 5px 7px 3px 7px;
	margin-right: 10px;
	border-bottom: none;
}

#links a:hover
{
	text-decoration: none;
	border-bottom: 3px solid #0156FF;
}

#footer
{
    position: absolute;
    z-index: 3;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-size: 85%;
    color: #003E80;
}

#footer a
{
    color: #0000FF;
}

#header
{
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 88px;
    background-color: #007CFF;
}

#lightSeparator
{
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 100%;
    height: 8px;
    background-color: #007CFF;
    font-size: 1px;
}

#darkSeparator
{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 5px;
    background-color: #000000;
    font-size: 1px;
}

#topBorder
{
    position: absolute;
    z-index: 4;
    top: 110px;
    left: 185px;
    width: 730px;
    height: 8px;
    background: url(../Images/Layout_ContentBorderT.jpg);
    font-size: 1px;
}

#leftBorder
{
    position: absolute;
    z-index: 4;
    top: 118px;
    left: 185px;
    width: 8px;
    height: 470px;
    background: url(../Images/Layout_ContentBorderL.jpg);
}

#pageBg
{
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: url(../Images/Layout_RobinsonProj.jpg) no-repeat;
}

/*******************************************************************************
Tags
*******************************************************************************/

a { color: #0000FF; text-decoration: none; }
a:link { color: #0000FF; }
a:visited { color: #00ABEA; }
a:hover { color: #FFA64D; text-decoration: underline; }

h1
{
    margin: 0px 0px 1.5em -25px;
    line-height: normal;
    font-size: 150%;
    font-weight: bold;
    color: #0068C0;
}

h4
{
    margin: 0px 0px 18px 0px;
    font-size: 11px;
    font-weight: bold;
    clear: both;
    text-decoration: underline;
}

h5
{
    margin: 0px 0px 18px 0px;
    font-size: 11px;
    font-weight: normal;
    font-style: italic;
    clear: both;
    text-decoration: underline;
}

p
{
    margin: 1.5em 0px 1.5em 0px;
    line-height: 150%;
}

ul, ol
{
    line-height: 150%;
}

.chart
{
    text-align: left;
    padding-top: 20px;
    padding-bottom: 0px;
    background-color: #FFFFFF; 
} 
     
.chart ul
{
    margin: 0px 0px 0px 0px; 
    padding: 0px 0px 0px 0px; 
    list-style: none; 
} 
  
.chart ul ul
{
    margin: 0px 0px 0px 20px;
} 
  
.chart ul ul ul
{
    margin-left: 20px; 
    padding-top: 0px;
}

.chart li
{
    margin: 0px 0px 0px 0px; 
    padding: 0px 0px 0px 0px;
    width: 250px;
}


.chart ul ul li
{
    position: relative; 
    bottom: 10px; 
    border-left: 1px solid #CCCCCC;
}

.chart .charttop
{
    height: 10px;
    line-height: 10px;
}

.chart .chartfooter
{
    border-left: 1px solid WHITE;
}

.chart div
{
    min-height: 20px;
    //line-height: 20px;
}

.chart ul ul div
{
    border-top: 1px solid #CCCCCC;
}

.chart p, .chart a
{
    position: relative; 
    bottom: 11px; 
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 5px;
    height: 100%;
    background-color: #FFFFFF; 
}

.chart ul ul p, .chart ul ul a
{
    left: 10px; 
}

.chart a
{
    display: block; 
}

.chart a:hover
{
    text-decoration: none;
    background-image: url(../Images/Layout_ChartArrow.gif);
    background-repeat: no-repeat;
}

