/* CSS Document */

body 
		{
		text-align: center;			/*centers containing block for IE*/
		background-color: #403C30;
		color: black;
		font: 80% "Trebuchet MS", Verdana, Tahoma, sans-serif;
		margin: 0px;
		padding: 0px;
		}

div, h1, h2, p, img, ul {
		margin: 0px;
		padding: 0px;
		display: block;
		position: absolute;
		}

#outer		{				/*outer containing block*/
		margin: 0px auto;			/*sets top & bottom margins to 0 and centers containing block horizontally (not in IE)*/
		position: relative;		
		background-color: transparent;
		text-align: center;		/*need to set a text-align to counteract IE block centering workaround*/
		width: 900px;
		top: 30px;
		left: 50px;
		}
		
h1		{
		top: 5px;
		left: 0px;
		text-transform: uppercase;
		color: #FAF0E6;
		font-size: 2em;
		font-family: "Trebuchet MS";
		font-weight: 700;
		}

h2		{
		top: 35px;
		left: 0px;
		color: #FAF0E6;
		font-size: 1.3em;
		font-family: "Trebuchet MS";
		font-weight: 500;
		}
		
#content
		{
		background-color: #303C40;
		text-align: left;
		width: 650px;
		height: 345px;
		top: 80px;
		left: 0px;
		}

#content p
		{
		width: 230px;
		height: 260px;
		top: 50px;
		left: 40px;
		color: #FAF0E6;		
		}
		
#navbar
		{
		background-color: transparent;
		position: absolute;
		text-align: left;
		width: 150px;
		height: 350px;
		top: 105px;
		left: 650px;
		}
		
#copyright
		{
		background-color: #695D59;
		color: #FAF0E6;
		font-size: 0.8em;
		text-align: left;
		width: 650px;
		height: 15px;
		top: 415px;
		left: 0px;
		}

#image1
		{
		background-color: #FAF0E6;
		width: 252px;
		height: 335px;
		top: 80px;
		left: 350px;
		}
	
		
ul		
		{
		list-style: none;
		margin-left: 1.2em;
		line-height: 1.75em;
		}
		
a:link
		{
		color: #FAF0E6;
		text-decoration: none;
		}


a.a_footer:link
		{
		color:#999999;
		}

a:visited
		{
		color: #FAF0E6;
		text-decoration: none;
		}

a.a_footer:visited
		{
		color:#999999;
		}

a:link:hover, a:visited:hover
		{
		color:#838EB5;
		text-decoration: none;
		}		

a.a_footer:link:hover, a.a_footer:visited:hover
		{
		color:#838EB5;
		text-decoration: none;
		}	


		

		
		
		
		


		
