/*-----------------------------------------------------------------*
 * base_window.css                                                 *
 *-----------------------------------------------------------------*/

div.g_BWD_navBar
{
    background-color:           #667;
    background:                 -webkit-gradient( linear, left top, left bottom, color-stop(0%, #778), color-stop(100%, #667) );
    background:                 -moz-linear-gradient( top, #778, #667 );
    background:                 -o-linear-gradient( #778, #667 );
    background:                 linear-gradient( #778, #667 );
    border-bottom:              0.2em solid black;
    filter:                     progid:DXImageTransform.Microsoft.gradient(startColorstr='#707080', endColorstr='#606070');
    position:                   fixed;
    width:                      100%;
    text-align:                 center;
    z-index:                    1;
}

div.g_BWD_navBar span
{
    border-bottom:              0.3em solid black;
    color:                      #ccd;
    cursor:                     pointer;
    display:                    inline-block;
    font-size:                  1.25em;
    font-variant:               small-caps;
    font-weight:                bold;
    padding:                    0.5em 0.75em;
    text-shadow:                0.15em 0.15em #112;
    filter:                     progid:DXImageTransform.Microsoft.Shadow( Strength=4, Direction=90, Color='#101020' );
    filter:                     DropShadow(Color=#101020, OffX=3, OffY=3);
}

div.g_BWD_navBar span.home
{
    border-color:               #f00;
}

div.g_BWD_navBar span.resume
{
    border-color:               #cf0;
}

div.g_BWD_navBar span.projects
{
    border-color:               #0f7;
}

div.g_BWD_navBar span.links
{
    border-color:               #07f;
}

div.g_BWD_navBar span.admin
{
    border-color:               #c0f;
}

div.g_BWD_navBarPadding
{
    display:                    block;
    position:                   relative;
}

div.g_BWD_content
{
    background-color:           #eef;
    box-shadow:                 0 2em 2em 1em #445;
    max-width:                  50em;
    min-height:                 50em;
    margin:                     auto;
    padding:                    1em 2em;
}

/*-----------------------------------------------------------------*/