﻿/* CSS  */

body 
{
    /* Set background to yellow */
	background: #fded02;
	/* Remove Margin on outside of page */
	margin: 0;
}
a:link {color: #fded02; text-decoration: underline;}
a:active {color: #fded02; text-decoration: underline;}
a:visited {color: #fded02; text-decoration: underline;}
a:hover {color: #fded02; text-decoration: none;}


#Header
 {
	/* Create top border */
	border-top:     10px solid #000000;  

    /* Set Height of Header */
	height: 200px;    
    
    /* Set background to red */
    background-color: #d31000;

    /*Add bottom border*/
	border-bottom:  10px solid #000000;
	
	text-align: center;
 
 } 

#Back
 {
	height: 25px;    
    background-color: #fded02;
    text-align: center;
 }
#Back a
{
	color:#000000;
    text-align:center;
    font-family:"Verdana", Times, serif;
    font-size:20px;    
}
#Back a:link {
 color: #000000;
 /*text-decoration:none;*/
 }
#Back a:visited {
 color: #000000;
  /*text-decoration:none;*/
 }
#Back a:active {
 background-color: #000000;
  /*text-decoration:none;*/
 }
#Back a:hover {
 color:#d31000;
 /* text-decoration:none;*/
} 

#Footer
 {
    /*position:relative;*/
    width:100%;
    padding-top:5px;
    /*top:925px;*/
	border-top:     5px solid #000000;  
	height: 50px;    
    background-color: #d31000;
	border-bottom:  5px solid #000000;
	text-align: center;
    color:#fded02;
 
 }

