
/*	body tag: 
	set background color
	reset margins
	reset padding 
	center the elements contained
	specify default font-family */
body {
	background-color: #272727;
	margin: 0px; 
	padding: 0px;
	text-align: center;
	font-family: "Verdana","Times New Roman", serif;
}

h1 {
	font-size: 180%;
	font-weight: bold;
	text-align: left;
}

h2 {
	font-size: medium;
	font-weight: bold;
	text-align: left;
	padding: 0px;
	margin: 0px;
}

h3 {
	font-size: small;
	font-weight: bold;
	text-align: left;
}

p {
	padding: 0px;
	margin: 1px;
}	

/* 	div.title:
	container for the banner region 
	700 px wide, centered */

div.title {
	margin-left: auto; 
	margin-right: auto;
	width: 785px;
	padding: 10px 0px 5px 0px;
	text-align: center;
}

/*	div.toread:
	renders a black box to highlight important information */

div.toread {
	border: solid black 3px;
	padding: 5px;
	text-align: center;
	width: 40%;
}

/*	div.main:
	container for the main content pane */

div.main {
	font-size: 75%;
	font-weight: normal;
	text-align: left;
	background-color: #000000;
	color: #ffffff;
	border: ridge 1px;
	margin-left: auto; 
	margin-right: auto;
	width: 785px;
	padding: 0px;
}

div.main1 {
	width: 90%;
	display: inline;
	padding: 0px;
}

/*	updates box */

.update {
	border: inset 2px;
	background: #333333;
	margin: 10px;
	padding: 0px;
}

.update p, .update h2 {
	margin: 5px;
}

/*	links box */

.links {
	background: #999999;
	border: inset 2px;
	font-family: "Arial","Verdana","Times New Roman", serif;
	padding: 0px;
	margin: 0px;
}

.links p {
	margin-right: 30px;
	margin-left: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
}

/*	ul.default, li.default:
	circular bullets become square
	padding of 3px */

ul.default {
	list-style-type: square;
	list-style-position: inside;
	padding: 0px;
	margin: 10px;
}

li.default {
	padding: 0px;
	margin: 0px;
}

/*	ul.textnav, li.textnav, a.textnav:
	used to create the text navigation links at the bottom of the page 
	convert a list into horizontal black text links
	with underline on mouse hover */

ul.textnav {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

li.textnav {
	display: inline;
}

a.textnav:link, a.textnav:visited, a.textnav:active {
	color: #000000;
	margin: 5px 0px 0px 15px;
}

a.textnav:hover {
	text-decoration: underline;
	color: #000000;
}

/*	a.textnav2:
	used to customise links for the DHTML menu
	black links, with underline appearing on mouse over */

a.textnav2:link, a.textnav2:visited, a.textnav2:active {
	float: left;
	color: #ffffff;
	margin: 5px 0px 0px 15px;
}

a.textnav2:hover {
	text-decoration: underline;
	color: #ffffff;
}

/*	default a:
	customised blue link for the default tag
	underline appears only on mouse hover */

a:link, a:visited, a:active {
	text-decoration: none;
	color: #efef11;
}

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

/*	span tags to customise font size and weight */


span.ital {
	font-style: oblique;
}

span.bold {
	font-weight: bold;
}

span.highlight {
	color: #3366FF;
}

img {
 	border-style: none;
} 

img.links {
	padding-right: 10px;
}



.floatright {
	float: right;
}

.floatleft {
	float: left;
}




/*	styles for positioning of the DHTML menu
	.menu: default for main menu container*/
.menu {
	width: 785px;
	height: 30px;
	padding: 0px 0px 5px 0px;
	border-style: hidden;
	text-align: left;
	position: relative;
	margin: 0 auto;
}

/*	.menusub: default for menu items */
.menusub {
	background-color: #c0c0c0;
	border-style: outset;
	border-width: 2px;
	border-bottom: 3px outset #999999; 
	padding: 5px;
	font-size: small;
	font-weight: bold;
	width: 165px;
	text-align: center;
	position: absolute;

}

/*	#menusub1, #menusub2, #menusub3, #menusub4
	positioning for menu options 1 to 4 */
#menusub1 {
	top: 0;
	left: 0;

}

#menusub2 {
	top: 0;
	left: 25%;
}

#menusub3 {
	top: 0;
	left: 50%;

}

#menusub4 {
	top: 0;
	left: 75%;

}

/*	.menudrop: default for dropdown submenu */
.menudrop { 
	z-index: 10;
	border-style: ridge;
	border-width: 2px;
	background-color: #cccccc;
	font-size: small;
	font-weight: normal;
	text-align: left;
	position: absolute;
	visibility: hidden;
	padding: 5px;	 
}

/*	#menu1, #menu2, #menu3, #menu4
	positioning for submenus 1 to 4 */
#menu1 {
	top: 23px;
	left: 15px;
	width: 135px;

}

#menu2 {
	top: 23px;
	left: 190px;
	width: 135px;

}

#menu3 {
	top: 23px;
	left: 365px;
	width: 135px;

}

#menu4 {
	top: 23px;
	left: 545px;
	width: 135px;
}
