﻿/* SITEWIDE LAYOUT styles */

html
{
    /* min-height: 100%; margin-bottom: 1px; */
    /* works in all browsers but makes long scroller on short pages */
    overflow: -moz-scrollbars-vertical;
    overflow-x: auto;
    /* forces vertical scrollbar in FF on short pages */
}

body
{
    margin: 0;
    padding: 0;
    border: 0;
    height: 100%;
}

#Page_Container
{
    /* border: thin solid Blue; */
    width: 760px;
    height: 100%;
    margin: 0 auto; /* margin: 0 auto; centers a fixed width page*/
}
#Branding
{
    /* border: thin solid Maroon; */
    position: fixed;
    height: 95px;
    width: 760px;
    padding-top: 15px;
    padding-bottom: 0px;
    top: 0px;
    background-color: #FFFFFF;
    /* bottom of this box will be at 110px*/
}
#Navigation
{
    /* border: thin solid Green; */
    position: fixed;
    top: 110px;
    height: 40px;
    width: 610px;
    padding-top: 5px;
    padding-left: 150px; /* total box=760 and will make content align with left side of BIG logo */
    padding-bottom: 10px;
    background-color: #FFFFFF;
    /* bottom of this box will be at 155px*/
}
#Content
{
    /* border: thick dashed Yellow; */
    width: 740px;
    margin-top: 205px;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    /* #Credits box at bottom of page will "rise" 80px */
    margin-bottom: 80px;
    padding-bottom: 25px;
    /* background-color: LightGoldenRodYellow; */
}

/* remove this section?
#Navigation_Breadcrumbs
{
    position: fixed;
    bottom: 40px;
    background-color: #FEFE06;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    width: 750px;
}
*/

#Credits
{
    /* border: thin dashed Gray; */
    position: fixed;
    bottom: 0px;
    padding-top: 15px;
    padding-bottom: 5px;
    width: 760px;
    height: 60px;
    background-color: #FFFFFF;
    font-size: .75em;
}

#Copyright
{
    float: left;
}
#Last_Update
{
}
#Site_Designer
{
    position: relative;
    float: right;
    top: -1.25em;
    text-align: right;
}

.Center
{
    clear: all;
    text-align: center;
}

/* Possibly PAGE SPECIFIC layouts below -- REFACTOR later*/

/* Index */

.Content_Section_Left
{
    clear: all;
    float: left;
    border: thin solid Black;
    display: table;
    width: 570px;
    height: 180px;
    margin: 0 auto;
    font-size: 1.35em;
    text-align: left;
    padding-left: 150px;
}
.Content_Section_Right
{
    clear: all;
    float: left;
    border: thin solid Black;
    display: table;
    width: 570px;
    height: 180px;
    margin: 0 auto;
    font-size: 1.35em;
    text-align: right;
    padding-right: 150px;
}
.Vertically_Centering_Container
{
    border: thick dashed red;
    height: 125px;
    display: table-cell;
    vertical-align: middle;
}

.Float_Left, .Float_Left_Text, .Float_Right, .Float_Right_Text
{
	
}

.Float_Left
{
    float: left;
    border: thin solid Black;
    padding-right: 10px;
}
.Float_Left_Text
{
    float: left;
    display: block;
    border: thin solid Black;
    padding-right: 10px;
}
.Float_Right
{
    float: right;
    border: thin solid Black;
    padding-left: 10px;
}
.Float_Right_Text
{
    float: right;
    display: inline-block;
    
    border: thin solid Black;
    padding-left: 10px;
}
