/*
 * This file establishes the layout/framework of how the page is layed out by the
 * browser.
 */
* {
    margin: 0px;
    padding: 0px;
}

html,
body {
    height: 100%;
}

html {
    color: #000000;
    background: #55686F url('../images/background.jpg') repeat;
}

body {
    font-family: Tahoma, Verdana, Georgia, sans-serif;
    font-size: 16px;
    font-size: 62.5%; /* IEWin font-size bug current browsers assign 16 px as medium keyword (default) */
    text-align: center; /* IEWin centering hack */
}

/*
 * FRAME
 *
 * This is the main DIV which contains all other content DIVs.
 * Purpose is to set height of page.
 */
#frame {
    width: 730px;
    top: 0px;
    text-align: left;
    background:  url('../images/drop_shadow.jpg') repeat top left;
    height: auto;
}

html>body #frame {
    height: auto;
    margin: 0px auto;
}

/*
 * CONATINER
 *
 * Content container.  Contains the content exluding the footer.
 */
#container {
    position: relative;
    width: 720px;
    left: 5px;
}

/*
 * HEADER
 *
 * Contains the banner graphic, any slogans and navigation
 * Contained by CONTAINER
 */
#header {
    height: 291px; /* Flash movie height */
    top: 0px;
    left: 5px;
}

/*
 * Contains the HTML version of the Flash Menu
 * Contained by HEADER
 */
#banner {
    height: 100%;
    background: transparent url('../images/header_background.jpg') repeat-x;
}

/*
 * CONTENT
 *
 * All the main content of the site.  Conains the left and right columns.
 * Contained by CONTAINER.
 */
#content {
    float: left;
    overflow: hidden;
    height: auto;
    background-color: #323232;
}

#left_column {
    float: left;
    width: 280px;
    background: #EEEFDC url('../images/filefolder_column_head_280.jpg') repeat-x top left;
    padding-bottom: 32768px;
    margin-bottom: -32768px;
    margin-top: 15px;
    margin-left: 5px;
}

#left_content {
    font-size: 1.1em;
    text-align: left;
    /*background: url('../images/column_footer_280.jpg') repeat-x bottom left;*/
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 57px; /* left_column image size (margin-top) + 15px spacing */
}

#right_column {
    float: right;
    width: 415px;
    background-color: #323232;
    padding-top: 15px; /* Spacer from bottom of header */
    padding-left: 15px;
}

/* Used to push the right contents down so they line up[ with the bottom
    of the left_content image */
#right_content {
    font-size: 1.1em;
    text-align: left;
    padding-top: 42px; /* Height of column_head graphic */
    padding-left: 5px;
    padding-right: 10px;
}

#footer {
    float: none;
    clear: both;
    position: relative;
    width: 720px;
    height: 63px;
    bottom: 0px;
    left: 5px;
    color: white;
    background-color: #323232;
    font-family: Tahoma;
    font-weight: bold;
    font-size: 11px;
}

#footer_content {
    height: 43px;
    background: transparent url('../images/footer_background.jpg') repeat-x;
    padding-left: 20px;
    padding-right: 20px;
}

#footer_content p#disclaimer {
    color: #AEAEAE;
    padding-top: 10px;
}

#footer_content p#disclaimer a {
    color: #AEAEAE;
    text-decoration: none;
}

#footer_content a#send_resume {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #397F9A;
    padding-top: 10px;
    padding-right: 30px; /* footer_content padding right + 10px*/
}

h3 {
    color: #397F9A;
    font-size: 1.3em;
    font-weight: bold;
}

h5 {
    color: #397F9A;
    font-size: 1.0em;
    font-weight: bold;
}

#left_content img {
    display: block;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
    margin: 0px auto;
}