@charset "utf-8";
/* CSS Document */

/*removes browser default padding and margins which can muck up the layout*/
*{
margin: 0px;
padding: 0px;
}

/*controls the background colour of the site*/
body {
background-color:#080128 ;
}

/*sets the default font, style and size*/
body,td,th {
font-family:Century Gothic, sans-serif;
color: #080128;
font-size: 100%;
}

/*these set the default link font colours and styles*/
a:link {
color:#080128;
text-decoration: none;
border: 0px;	
}
a:visited {
text-decoration: none;
color: #080128;
}
a:hover {
text-decoration: underline;
color: #cccccc;
}
a:active {
text-decoration: none;
color:#080128;
}


/*sets the size and position of the site on the screen*/
#container {
margin: 20px auto 0px auto;
width:800px;
min-height:560px;
height: auto !important;
height:560px;
}


/*sets the position of the logo*/
#logo{
background-color:#FFFFFF;
width:110px;
height:110px;
float: left;
display:inline;
padding: 10px;
margin-left:46px;
margin-top:35px;
}

/*sets the size, position of the navigation bar*/
#navbar {
padding-top: 79px;
margin-left: 175px;
padding-bottom: 4px;
}

/*sets the look of the navigation links on mouse hover...also the current page navbar link*/
#navbar a:hover, #currentpage a{
color: #cccccc;
margin-left: 0px;
text-decoration:none;
}

/*sets the style and layout of the links within the navigation bar*/
#navbar ul li{
display: inline;
color: #080128;
font-size: 155%;
list-style-type:none;
padding-right: 6px;
padding-left: 8px;	
}

/*sets the size and position of the text content area on the main site*/
/*#content{
clear:both;
width:800px;
padding-top: 47px;
}*/

/*sets the size and position, font size and style of the text content area on the temporary site*/
#temp_content{
padding-top: 80px;
text-align:center;
font-size: 155%;
color:#FFFFFF;
}

/*sets the colour of the links in the content area*/
#temp_content a{
color: #FFFFFF;
}

/*sets the position and parameters of the text area on your "about" page*/
/*#abouttext{
clear: both;
float:left;
width: 300px;
height: 305px;
margin-left: 55px;
text-align:left;
overflow:auto;
padding-right: 10px;
margin-top: 8px;
}*/

/*sets the position of the image on the "about" page*/
/*#aboutimg{
width: 325px;
height: 325px;
float: right;
margin-right: 50px;
}*/
