body {background-color:#000000} 


	
/* Title */

div#title { 
  color: #FF6633; 
  font-family:arial; 
  font-size: 20pt; 
  margin-left:30%;
  margin-top:5%;
  width:320px

} 


/* Top Bar */


/*Positions the menu bar*/
#menubar
{
	position:relative;
	text-align:left;
	
}

/*Sets the attributes of the menu bar*/
#menubar ul 
{
list-style: none;
padding: 0;
margin: 0;
text-decoration:none;
}

/*Defines the position of the list elements to be relative so they position properly*/
#menubar li
{
float:left;
position: relative;
width: 134px;
background-color:#999999
}

/*Positions the drop down list position*/
#menubar li ul
{
	position:absolute;
	left:auto;
	top:auto;
	display:none;
}

/*Formats the main list and its elements: colour, border, etc*/
#menubar ul li a
{
	display:block;
	text-decoration:none;
	color:#000000;;
	padding:5px;
	border: 1px solid #FFFFFF;
}

/*Causes the list elements to lighten when higlighted*/
#menubar a:hover
{
	color:#FFFFFF;
	background-color:#FF7F00;
}


/*Causes the dropdown list to appear when one is highlighted*/
#menubar li:hover ul
{ 
	display: block;
}

/* Div for the content*/

#contentbox {
	position:relative;
	margin-top:5%;
	margin-left:15%;
	width:807px;
	border:1px solid #FFFFFF;
	color:#FF6633;
	text-align:justify;
	
}

#content {
	padding:20px;
	padding-top:50px;
}

#content h1{
	color:#FFFFFF;
}

#content h2{
	color:#FFFFFF;
}


#disclaimer{
	position:relative;
	margin-left:15%;
	font-size:10px;
	color:#FF6633;
	width:805px;
}

p#left {
	float: left;
    clear: left;
    text-align: left
}

p#right {
	float: right;
    clear: right;
    text-align: right;
}

a {
	color:#FF6633;
}

a:hover {
	color:#FFFFFF;
}