/* GENERAL SPECS */
/* set standard font and color */
body {
   background-color: black;
   font-size: 130%;
   color: yellow;
}
form {
   margin: 0px;
}
/* make input boxes and button look a bit better */
input {
   font-family: Arial, Verdana, Geneva, sans-serif;
   font-size: 1em;
   border: 1px solid #000;
}
select {
	font-size: 0.9em;
}
h1 {
	font-size: 1.4em;
   	font-weight: normal;
   	line-height: 25px;
}
h2 {
	font-size: 1.2em;
   	font-weight: bold;
	margin-bottom: -5px;
}
img {
	display: none;
}
/* ---------------------------------------------------- */
/* outer casing for whole page - the margins keep the content centred as the user resizes the window */
#contentElement {
   text-align: left;
}
/* ---------------------------------------------------- */
#header {
	margin: 0px;
	padding: 0px;
}
#heading {
	margin: 0px 0px 15px 0px;
}
#date {
	display: none;
}
#primary_nav {
	display: none;
}
#branding {
	display: none;
}
#breadcrumb {
	font-size: 0.9em;
	margin-bottom: 10px;
}
/* ---------------------------------------------------- */
#container {
	width: 100%;
	float: left;
}

#sidebar {
	display: none;
}
#footer {
	margin-top: 15px;
}
.clearing {
	height: 0;
	clear: both;
}
/* ---------------------------------------------------- */
/* SECONDARY NAVIGATION */
/* create a nice gap between heading and nav links*/
#left p{
   margin: 0 0 10px 0;
}
#left img{
   display: none;
}
#left ul{
   list-style: disc;
   margin: 0px 0px 0px 20px;
   padding: 0;
}			
#left li{
   position: relative;
   margin: 0px;
   padding: 0px;
}
/* sub menus */
#left ul ul{
   position: relative;
   margin: 0px 0px 0px 15px;
   padding: 0px;
}
/* ---------------------------------------------------- */
/* CLASSES */
/* smaller text for sporadic use where necessary*/
.small {
   font-size: 0.9em;
   line-height: 16px;
}
.text_only {
	display: none;
}
/* ---------------------------------------------------- */
/* LINKS */
/* normal links */
a {
    font-size: 1em;
	text-decoration: underline;	
	font-weight: normal;
}
a:link {
	color: cyan;
}
a:visited {
	color: cyan;
}
a:hover {
	color: red;
}

a:active {
	color: cyan;
}

