/* style1.1.css */

body {
		margin: 0;
		background-image: url('background.jpg');
		background-color: #CCCCCC;
		text-align: center;
		font-family: Arial, Verdana;
		font-size: 12px;
		}

a {
		color: black;
		text-decoration: none;
		}

a:hover {
		color: #FF9900;
		text-decoration: underline;
		}

/* begin ids */

#container {
		background-color: white;
		width: 750px;
		text-align: left;
		}

#header {
		background-image: url('header.jpg');
		height: 150px;
		font-family: Century Gothic, Arial, Verdana;
		}

#header h1 {
		padding: 20px 0 0 25px;
		font-size: 25px;
		}

#header h2 {
		padding: 10px 0 0 80px;
		font-size: 13px;
		font-style: italic;
		}
		
/* navigation */

#nav {
		float: right;
		width: 165px;
		padding: 0;
		}

#nav a {
		color: #333333;
		display: block;
		padding: 5px 1em 5px 1em;
		border-left: 5px solid gray;
		border-bottom: 1px dashed #999999;
		margin-top: 1em;
       	text-align: center;
		}

#nav a:hover {
		color: black;
		border-left: 5px solid black;
		text-decoration: none;
		background-color: #FFCC66;
		}

/* content */

#content {
		margin: 0 180px 0 10px;
		text-align: justify;
		}
		
#content h1 {
		font-size: 20px;
		}
		
#content h2 {
		font-size: 15px;
		padding-top: 1em;
		color: #FF6600;
		}

#content p {
		font-family: Verdana; 
		line-height: 1.5em;
		}

#footer {
		clear: both;
		width: 300px;
		margin-left: 250px;
		border-top: 2px solid #FF6600;
		text-align: center;
		}