/* CSS Document */


/* ---------------- Begin of layout formating ---------------- */
	
*{               /*Remove all default settings*/
	padding:0px;
	margin:0px;

}

body{
	background-color:#d1a600;
	
	font-family:verdana;
	font-size:0.75em;
	
	
}

#wrapper { /*Invisible container that holds the whole page and centers it*/
	position:relative;
	
	margin:0px auto;
	margin-top:10px;
	width:700px;     /*Set width but not height, let the content set the page height*/
	
	border:1px solid white;
	
	text-align:left;
	
	
}

#header{
	clear:both;
	height:70px;
	width:700px;
	
	margin-bottom:5px;
	border-bottom:1px solid white;
	
	
	background-color:black;
	background-image:url("image/header.jpg");
	background-repeat:no-repeat;
}

#container{ /* ---- Contains nav and content -----*/

	float:left;
	background-color:white;
	
	padding-top:10px;
	border-top:3px double #d1a600;
	
	width:700px;
	height:auto;
	
	background-image:url("image/lightbackgr.png");
	
}

#nav{
	float:left;

	height:400px;
	border-top:1px solid black;
	border-right:1px solid black;
	border-bottom:1px solid black;
	
	padding:5px;
	
	background-image:url("image/contentbackgr2.png");
	background-repeat:repeat-x;
	

}


#content{
	float:left;
	clear:right;
	
	line-height:20px;
	
	margin-left:10px;
	margin-bottom:10px;

	height:auto;
	width:560px;
	
	padding:3px;
	padding-top:0px;
	border:1px solid black;	

	background-color:white;
	background-image:url("image/ball2.jpg");
	background-repeat:no-repeat;
	background-position:right bottom;
	
}

#footer{
	clear:both;
	
	color:white;
	font-size:0.75em;
	text-align:center;
	
	width:700px;

	padding-top:5px;
	padding-bottom:3px;
	
	border-top:3px double white;	
	
	background-color:black;

}

table tr td table tr td{
	border-bottom:1px solid #000000;
}


/*  ----------------- Tag formatting and rollovers ------------------------*/
img{

	border:1px solid black;

}

p{ margin-bottom: 10px; }

h1{ 
	color:white;
	
	font-size:1.4em;
	font-weight:normal;
    font-style:italic;
	
	text-align:center;
	border-bottom:1px solid #d1a600;
	
	margin-bottom: 10px;
	
	background-image:url("image/h1back.png");
}

h2{
	font-size:1.1em;
	font-weight:bold;
	margin-top: 5px;
	margin-bottom: 5px;
}

#content ul li{
	margin-left:30px;
}


#nav ul {
	margin-left:5px;
}



#nav ul li{
	list-style-type:none;
	
	width:100px;
	
	margin-right:5px;
	margin-bottom:3px;
	
	padding-top:3px;
	padding-bottom:3px;
	
	border-bottom:1px dashed black;
	
	text-align:center;
	font-size:0.75em;
	
}

#nav ul li a{
	color:white;
	text-decoration:none;
}


#nav ul li a:hover{
	color:black;
	

}

#content table{

	margin-left:20px;

}

img{
	border:1px solid black;
}



