﻿/* 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:medium;
     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:180px; 
		   height:375px;
}
/* Style for main content column */
#main{
       /* margin-left must equal */
       /* total width of left sidebar */
       margin-left:180px;
}
/* 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;
}

table#table1 {
	width:60%; margin-left:20%; margin-right:20%; padding:2px; text-align:center;
}

/* 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;
}
/* General style for paragraphs */

p{
	margin-left:2em; 
	margin-right:2em;
}
ul {
	margin: 0.5em;
	padding:0;
}
li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

/* General style for horizontal lines */
hr{
   background-color: #0000ff;
   width: 80%;
}

