/*color definitions
color1: #000000 (background)
color2: #FFFFFF	(text)
color3:	#FF2400	(links)
color4:	#FFCC00	(links: hover)
color5: #666666 (links: visited)

*/

body { 
	text-align: center;
	color: #FFFFFF;
	background: #000000;
	/*padding: 0px; 
	margin: 0px;*/
	margin-left: auto;
	margin-right: auto;
}

/* global */

* {
	font-family: Verdana, Arial, serif; 
	/*padding: 0px; 
	margin: 0px;*/
}

/* layout */

#bottom {
	text-align: center;
	background: #222222;
	/*color: #FFFFFF; */
	font-size: 0.8em;
}

/* navigation */

#navBar ul {   /* defined as left because the nav is in the left div */
	margin: 0 0 0 0;  /* top margin brings the menu down slightly */
	padding: 0 0 0 0;
}

#navBar li {
	display: inline;
	list-style-type: none;
	padding-right: 0px;
}

/*links*/

a:link { 
	color: #FFCC00; 
	text-decoration:none;
	font-weight: bold;
	border-bottom: 1px dashed #FFCC00;
}

 a:visited {  
		color: #666666;
	text-decoration:none;
	font-weight: bold;
	border-bottom: 1px dashed #666666;
}

a:hover, a:active {  
	color: #FF2400;
	text-decoration:none;
	font-weight: bold;
	border-bottom: 1px solid #FF2400;
}

a img {
	border: 0;
}

a.image {
	text-decoration: none;
	border: none;	
}

/* style */

p {
	text-align: left;
	padding-left: 15%;
}



