﻿body
{
    font: 90% Arial, Verdana, Helvetica, sans-serif;
    height: 100%;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: Left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #000000;
    background: #FFF; /* Old browsers */
    background: -moz-linear-gradient(top, #00b0d3 0%, #00b6f0 10%, #ffffff 63%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #00b0d3 0%,#00b6f0 10%,#ffffff 63%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #00b0d3 0%,#00b6f0 10%,#ffffff 63%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-repeat: no-repeat;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00b0d3', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

.thrColFixHdr #container
{
    width: 1000px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    background: #ffffff;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */ /*border: 1px solid #000000; 	text-align: left; /* this overrides the text-align: center on the body element. */
    overflow: hidden;
}

.thrColFixHdr #header
{
    background-image: url(../Images/header.jpg);
    height: 100px;
    padding: 0; /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

.thrColFixHdr #header h1
{
    margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
    padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

.thrColFixHdr #search
{
    background: #990000;
    padding: 3px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: solid;
    border-left-style: none;
    border-top-color: #ffffff;
    border-right-color: #ffffff;
    border-bottom-color: #ffffff;
    border-left-color: #ffffff;
    height: 24px;
}

.thrColFixHdr #picture
{
    float: right; /* since this element is floated, a width must be given */
    width: 794px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
    background: ccc; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 0;
    border-bottom-style: solid;
    border-bottom-color: #FFFFFF;
    border-left-style: solid;
    border-left-color: #FFFFFF;
}

.thrColFixHdr #sidebar1
{
    float: left; /* since this element is floated, a width must be given */
    width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
    padding: 0; /* padding keeps the content of the div away from the edges */
    margin-bottom: -2000px;
    padding-bottom: 2000px;
    background-image: url(../Images/lightergrycvsbackground.gif);
}

.thrColFixHdr #sidebar2
{
    float: right; /* since this element is floated, a width must be given */
    width: 200px; /* padding keeps the content of the div away from the edges */
    margin-bottom: -2000px;
    padding: 15px 10px 2000px 15px;
    border-left-style: solid;
    border-left-color: #990000;
    border-left-width: 2px;
}

.thrColFixHdr #mainContent
{
    margin: 0 0 0 220px;
    padding: 0 10px;
}

.thrColFixHdr #mainContent2
{
    margin: 0 270px 0 220px;
    padding: 0 10px;
}

.thrColFixHdr #footer
{
    width: 1000px; /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    text-align: left; /* this overrides the text-align: center on the body element. */
    overflow: hidden;
    background: #0174DF;
    z-index: 20;
    padding: 0;
}

.thrColFixHdr #footer p
{
    margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    padding: 5px 0 5px 10px;
}

.fltrt
{
    /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}

.fltlft
{
    /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}

.clearfloat
{
    /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0;
}

.glossymenu
{
    margin: 5px 0;
    padding: 0;
    width: 200px;
}

.glossymenu a.menuitem
{
    background: url(../Images/glossybacka.gif) repeat-x bottom left;
    font: bold 12px Arial, Verdana, Helvetica, sans-serif;
    color: white;
    display: block;
    text-align: left;
    position: relative; /*To help in the anchoring of the ".statusicon" icon image*/
    width: auto;
    padding: 4px 0;
    padding-left: 10px;
    text-decoration: none;
}


.glossymenu a.menuitem:visited, .glossymenu .menuitem:active
{
    color: white;
}

.glossymenu a.menuitem .statusicon
{
    /*CSS for icon image that gets dynamically added to headers*/
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
}

.glossymenu a.menuitem:hover
{
    background: #990000;
}

.glossymenu div.submenu
{
    /*DIV that contains each sub menu*/
    background: #E6E6E6;
    text-align: left;
}

.glossymenu div.submenu ul
{
    /*UL of each sub menu*/
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.glossymenu div.submenu ul li
{
    border-bottom: 1px solid white;
}

.glossymenu div.submenu ul li a
{
    display: block;
    font: bold 12px Arial, Verdana, Helvetica, sans-serif;
    color: Black;
    text-decoration: none;
    padding: 2px 0;
    padding-left: 10px;
}

.glossymenu div.submenu ul li a:hover
{
    background: #990000;
    color: White;
}

.style1
{
    font-size: 90%;
}

.style2
{
    font-size: 90%;
    color: #FFFFFF;
}

.style3
{
    color: #FFFFFF;
    font-weight: bold;
    font-style: italic;
}

a:link
{
    color: #0174DF;
}

a:hover
{
    color: #6E6E6E;
    text-decoration: none;
}

a:visited
{
    color: #6E6E6E;
}

a:active
{
    text-decoration: none;
}

a.two:link
{
    color: #ffffff;
    text-decoration: none;
}

a.two:visited
{
    color: #BDBDBD;
    text-decoration: none;
}

a.two:hover
{
    color: #BDBDBD;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 2em;
}

.style5
{
    font-size: 90%;
    color: #000066;
    vertical-align: top;
}

.style6
{
    font-size: 12px;
}
