﻿@font-face {
    font-family: "Open Sans Condensed";
    font-style: normal;
    font-weight: normal;
    src: url("OpenSans-CondensedLight.woff") format("woff");
}

@font-face {
    font-family: "Open Sans Condensed";
    font-style: italic;
    font-weight: normal;
    src: url("OpenSans-CondensedLightItalic.woff") format("woff");
}

@font-face {
    font-family: "Open Sans Condensed";
    font-style: normal;
    font-weight: bold;
    src: url("OpenSans-CondensedBold.woff") format("woff");
}

body
{
    height: 100%;
    padding: 0px;
    margin: 0px;
    font-family: "Open Sans Condensed";
    font-size:16px;
    background-image: url("../images/background2.jpg");
    background-color: lightGray;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
}

#Header
{
    position: fixed;
    top: 0px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.7);
    height: 80px;
    width: 100%;
}

#Content 
{
    margin: 100px auto 150px auto;
    width: 1000px;
}
        
#News 
{
    position: fixed;
    bottom: 50px;
    color: White;
    text-shadow: -1px 0px Black, 1px 0px Black, 0px -1px Black, 0px 1px Black;
    background: repeating-linear-gradient(45deg, rgba(255,165,0,0.7), rgba(255,165,0,0.7) 10px, rgba(0,0,0,0.7) 10px, rgba(0,0,0,0.7) 20px);
    width: 100%;
    padding: 0px 10px 0px 10px;
    max-height: 70px;
}


#Footer
{
    position: fixed;
    bottom: 0px;
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.7);
    height: 50px;
    width: 100%;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: lightGray;
    font-style: italic;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: lightGray;
    font-style: italic;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: lightGray;
    font-style: italic;
}

.divCSS 
{
    margin-bottom: 5px;
}

.buttonCSS
{
    color: White;
    background-color: Maroon;
    padding: 3px 20px 3px 20px;
    border: 1px solid black;
    text-decoration: none;   
}

.buttonCSS:hover
{
    background: FireBrick;
    
}

.buttonCSS:active 
{
    background-color: Gray;
}

.lnkCSS_Header
{
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    text-decoration: none;
}

.lnkCSS_Header:hover
{
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.textboxCSS
{
    padding:6px;
    border:1px solid lightGray;
}

.textboxCSS:focus
{
    border:1px solid rgb(0, 102, 102);
}

.textBoxCSS_Username 
{
    background-image: url("../images/user_male3-15.png");
    background-position: 97% center;
    background-repeat: no-repeat;
    padding-right: 25px;
    border-radius: 5px 5px 0px 0px;
}

.textBoxCSS_Password
{
    background-image: url("../images/key-15.png");
    background-position: 97% center;
    background-repeat: no-repeat;
    padding-right:25px;
    border-radius: 0px 0px 5px 5px;
    border-top-color: transparent;
}

.bigButtonCSS
{
    color: Black;
    background-color: Tan;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    vertical-align: middle;
    width: 120px;
    height: 120px;
    text-decoration: none;
    display: table-cell;
    padding: 5px;
}

.bigButtonCSS:hover
{
    color: White;
    background-color: Wheat;
    background: radial-gradient(Wheat, Tan);
    text-decoration: none;
}

.bigButtonCSS:active
{
    color: White;
    background-color: Wheat;
    background: radial-gradient(Tan, Wheat);
    text-decoration: none;
}

.comboBoxCSS 
{
    padding:6px;
    border:1px solid lightGray;
}

.iconCSS 
{
    background-color: lightGray;
}

.iconCSS:hover
{
    background-color: White;
}

a
{
    text-decoration: none;
}