/* CSS Document */

/*body*/

body {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: orange;
	background: black;
	}

/*headers*/

#header {
	position: absolute;
	top: 2em;
	left: 2em;
	border-bottom: 2px solid #A6A6A6;
	padding: 10px;
	width: 90%;
	font-size: 150%;
	color: white;
	}

/*navigation*/

#nav {
	position: relative;
	top: 6em;
	left: 0em;
	padding: 5px;
	font-family: helvetica;
	}

#nav ul {
	list-style: none;
	}

#nav ul a, #nav ul ul a {
	text-decoration: none;
	color: orange;
	}

#nav ul a:hover, #nav ul li a:hover {
	color: white;
	font-weight: bold;
	}

/*banner*/

#banner {
	position: relative;
	top: -10em;
	left: 20em;
	z-index: -1;
	}

#banner img {
	border: 2px solid white;
	}

/*portraits*/

#portraits {
	position: relative;
	top: -10em;
	left: 20em;
	width: 75%;
	padding: 5px;
	}

/*information*/

#information {
	position: relative;
	top: -8em;
	left: 20em;
	color: white;
	font-family: helvetica;
	width: 50%;
	}

/*footer*/

#footer {
	position: absolute;
	top: 38em;
	left: 2em;
	padding: 10px;
	border-top: 2px solid #A6A6A6;
	width: 90%;
	color: orange;
	}