body  { 
    background-color:#edecbc;
    background-image:url("images/background-main.jpg");
    background-repeat:no-repeat;
    background-position:bottom right;
    background-attachment:fixed;
    margin:25px 200px 100px 25px;
    color:#810404;
    font-family:serif
} 

h1 {
    font-size: 12pt;
    font-weight: bold;
    color: #edecbc;
    background-color: #810404;
    padding: 3px;
    margin: 15px 0px 15px 0px;
    width: 70%;
    position: relative;
    left: -3px;
    clear: both;
}

/* h5 is different from h1 in that it is right aligned and 100%*/

h5 {
    font-size: 12pt;
    font-weight: bold;
    color: #edecbc;
    background-color: #810404;
    padding: 3px;
    margin: 15px 0px 15px 0px;
    position: relative;
    right: -3px;
    clear: both;
    text-align: right;
}

/* h3 is different from h1 in that aligns to the center; this is designed so it can be centered on the page. 
 Centering will have to be done with a table, css doesn't quite support it yet, so no width is defined.*/

h3 {
    font-size: 12pt;
    font-weight: bold;
    color: #edecbc;
    background-color: #810404;
    padding: 3px;
    text-align: center;
    margin: 15px 5px 10px 0px;
}

h2 {
    font-size: 12pt;
    font-weight: bold;
    text-decoration: underline;
    margin: 10px 0px 0px 0px;
}

/* h4 is different from h2 in that it is not underflined 
This is made for putting links in headings*/

h4 {
    font-size: 12pt;
    font-weight: bold;
    text-decoration: none;
    margin: 10px 0px 0px 0px;
}

textarea {
    width: 350px;
    height: 150px;
}

.admin {
    background-color: red;
    color: white;
    font-weight: bold;
    width: 70%;
    text-align: center;
}

.admin a {
    color: white;
    text-decoration: none;
}

.admin a:hover {
    color: blue;
}

.border {
    padding: 3px;
    border: 3px solid #810404;
}

.bold-link a {
    font-size: 12pt;
    font-weight: bold;
    color: #be3c3c;
    text-decoration: none;
}

.bold-link a:hover {
    color:#810404;
}

.content  { 
    background-color:#edecbc;
    min-width:600px;
    border: 3px solid #810404;
} 

.footer  { 
    background-color:#810404;
    color:#DDDD88;
    text-align:center;
    font-size:10pt
} 

.header  { 
    background-color:#810404;
    height:75px;
    text-align:center;
    color:#edecbc;
    font-size:20pt;
    font-weight:bold
} 

.header .subtitle {
    font-size: 12pt;
    }
    
.img-left {
    float: left;
    padding: 5px;
    font-size: 10pt;
    text-align: center;
}

.img-right {
    float: right;
    padding: 5px;
    font-size: 10pt;
    text-align: center;
}

.long-input {
    width: 300px;
}

.medium-input {
    width: 100px;
}

.menu  { 
    background-color:#810404;
    width:200px;
    min-width: 200px;
    text-align:right;
    color:#edecbc;
    font-weight:bold;
    font-size: 12pt;
}

.menu a {
    color:#edecbc;
    text-decoration: none;
    font-weight: bold;
    padding: 0px 3px 0px 3px;
}

.menu a:hover {
    color: #bcbc95;
}

.menu a:active {
    text-decoration: underline;
}

.right-column {
    border-left: 3px solid #810404;
    margin-left: 10px;
    padding-left: 10px;
    width: 200px;
    min-width: 200px;
    max-width: 200px;
}

.small-input {
    width: 50px;
}