﻿/* style.css
 * W1 QSL Bureau Web
 * Design: Matthew Williams W1MAT
 * Last Update: 30 December 2012
 */


/* Default Style */
body 
{
    background-color: #1A235A;
    color: black;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 1px 1px 10px 1px;
    text-align: center;
}

/* Headers */
h1
{
    text-align: center;
}
h2
{
    text-align: center;
}
h3
{
    padding-left: 5px;
    text-align: left;
}

/* Hyperlinks */
a:link
{
    color: Blue;
}
a:visited
{
    color: Blue;
}
a:active
{
    color: Red;
}
a:hover
{
    color: Blue;
}


li
{
    padding-bottom: 3px;
}

/* Account Form Style */
.FormColumn1
{
    width: 14%;
    text-align: right;
    font-weight: bold;
}
.FormColumn2
{
    width: 1%;
}
.FormColumn3
{
    width: 85%;
}
.FormRow
{
    height: 22px;
}

/* Set any element to the background color */
.BackgroundColor
{
    color: #1A235A;
    background-image: #1A235A;
}

/* Layout */
div#container 
{
    width: 950px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    font-size: 1em;
}

#header 
{
    background-color: #1A235A;
    color: white;
    text-align: center;
}

#menu
{
    background-color: #1A235A;
    color: Yellow;
    width: 950px;
}

#menu a:link
{
    display:block;
    color: Yellow;
    background-color: #1A235A;
    text-decoration: none;
}
#menu a:visited
{
    display:block;
    color: Yellow;
    background-color: #1A235A;
    text-decoration: none;
}
#menu a:active
{
    display:block;
    color: Yellow;
    background-color: #212D71;
    text-decoration: none;
}
#menu a:hover
{
    display:block;
    color: Yellow;
    background-color: #212D71;
    text-decoration: none;
}

#content
{
    background-color: White;
    color: Black;
    float: left;
    border: solid 5px #1A235A;
    padding: 5px 10px 5px 10px;
}

#links
{
    background-color: White;
    color: Black;
    float: right;
    border: solid 5px #1A235A;
}

#footer
{
    color: White;
    background-color: #212D71;
    clear: both;
    text-align: center;
}

