﻿/* CSS for TE website. This will start out simple but will eventually either */
/* have a ton of options for different looks or simply split out into */
/* multiple CSS files. For now it will be only one file and will be called */
/* by php do_html_header function. */

/* Basic elements - this will be the basic properties for these tags */

body {
	
	color: black;
	background-color: #87CEFA;

	margin: 0px;
	}
p {
	margin-top: 5px;
	text-align: left;
	}
h1 {
	font-weight: 700;
	font-size: 300%;
	letter-spacing: 1px;
	margin-bottom: 3px;
	}
a {
	font-weight: 700;
	text-decoration: none;
	color: black;
	}


 a:hover, a:active {
	font-weight: 900;
	text-decoration: underline;
	color: navy;
	}

/* spacific divs */

/* main is the first div, the one that basicly contains everything */
#main {
	position: absolute;
	left: 280px;
	right: 30px;
	
		}
#pagetitle {
	position: relative;
	top:0px;
	width:100%;
	/*border-width: 1px;
	border-style: solid;
	border-color: blue;*/
	height:221px;
	}
#pagetitle h1 {
	padding: 10px 0px;
	}
#pagetitle p {
	text-align: center;
	padding: 0px;
	margin: 0px;
	font-weight: bold;
}
#pagetitle img {
	margin: 0px 10px 10px;
}


#linklist {
	position: absolute;
	top: 250px;
	line-height: 1.7em;
	left:10px;
	width: 250px;
	background-color: #F0E68C;
	height: 350px;
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: blue;
	}


#linklist a {
	margin: 3px 0px;
	}
#linklist a:link {
	color: red;
	font-weight: 700;
	text-decoration: none;
	}
#linklist a:visited {
	color: red;
	font-weight: 700;
	text-decoration: none;
	}
#linklist a:active {
	color: blue;
	font-weight: 900;
	text-decoration: underline;
	}
#linklist a:hover {
	background-color: yellow;
	font-weight: 900;
	text-decoration: underline;
	}
	

#ev:first-line {
	font-size:22px;
	letter-spacing:0.2em;
	font-style:normal;
	text-decoration:underline;
	
}

#home {
	margin: 20px;
}

#home h1 {
	font-size: 30px;
}

#home p {
	margin: 20px 50px;
	font-size: 20px;
/*	text-indent: 20px; */
}