﻿/* stylesheet.css */
/* Body text and page background */
body{
	 position:relative; z-index:0;
     margin:0px;
     padding:0px;
	 background-image: url("images/ewa.gif");
     font-family:"Times New Roman", "Courier New", serif; 
	 font-size:large; 
     color: #191970;
}
#wrapper{
	width:100%;
}
/* Page header style */
#header{
     width: 100%;
     height:65px;
     background-color:#669ACC;
}
/* Style for sidebar column */

#sidebar{
           float: left;
           display: inline;
           margin:0;
		   width:9em;
		   background-color:#669ACC;
}
/* Style for main content column */
#main{
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left: 9em;
       position:relative;
       min-height:20em;
}
       html>body #main{height:auto}
       
/* Applies to paragraphs in main div */
#main p{
	color:black;
	padding-left:1.5em;
	padding-top:2em;
	width:399px;
	position:relative;
	z-index:4;	
}
/* Page footer style */
#footer{
     width: 100%;
     clear:both;
     background-color:#669ACC;
     margin:0px; 
     padding-top: 4px; 
     padding-bottom:4px;
}
#footer ul{
margin:0;
padding:0;
height:1.5em;
}

/* Unordered list in footer */
#footer li{
float:left;
width:19.5%;
list-style-type: none;
text-align:center;
line-height:1.5em;
}
 
/* Unvisited links (no underline) */
a:link{
    text-decoration: none;
}
/* Visited links (no underline) */ 
a:visited{
    text-decoration: none;
}
/* Hover links (underline) */ 
a:hover{
   color: #000000; 
   text-decoration: underline;
}
/* Level 1 headings */
h1 {
	 font-family: Papyrus, "Curlz MT", "Juice ITC", Algerian, fantasy;
	 font-weight: bold;
	 text-align:center; 
	 color: #1F2159;
 }
/* Level 2 headings */
h2 {
	font-family: "Arial Black", Impact, Charcoal, fantasy;
	color: #1F2159;
	text-align: center;
}
/* Level 3 headings */
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: italic;
	text-decoration: underline;
	color: #1F2159;
	text-align: center;
}

/* Generic style class for highlighting text */
.hilite{
 	background-color:#ffff00;
}
/* General style for horizontal lines */
hr{
   background-color: #0000ff;
   width: 80%;
}

