/* CSS Document */

body {
	background-color: #003399; /* light blue */
	/*background-color: #2D8ADC; /* lighter blue - same colour as zigzag in logo */
	/*background-color: #09206C; /* darker blue - same colour as logo background */
	}

h1 {
	font-size: 32px;
	font-weight: 400;
	color:#000099;
	text-align: center;
	margin: 30px 0px 0px 0px;
	}
	
h2	{
	font-size: 24px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-style:italic;
	color:#09206c;
	text-align: center;
	margin-top: 5px;
	}


h3	{
	font-size: 18px;
	color:#09206c;
	text-align: center;
	}

h4	{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
	font-style:italic;
	color:#000000;
	text-align:center;
	padding: 0px;
	margin: 0px;
	}

p {
	margin-left: 5px;
	margin-right: 5px;
	}
	
p.quote {
	font-style:italic;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-align:center;
	}
	
ol li {
	margin-top: 5px;
	margin-bottom: 10px;
}

/* image properties, to float either left or right of text */
	
img.left {
	margin: 0px 10px 0px 0px; /* top right bottom left */
	float: left; /* usgae: <img src="images/image.jpg" class="left" /> */
	}
	
img.right {
	margin: 0px 0xp 0px 10px; /* top right bottom left */
	float: right; /* usage: <img src="images/image.jpg" class="right" /> */
	}


/* hyperlink properties */	

a { /* colour of the link before it is clicked */
	color: #000099;
	text-decoration: none;
	font-weight: bold;
}

a:hover {
	color:#0066CC; /* changes the font colour when a link is hovered over */
}

a:visited {
	color:#990000; /* denotes the colour of a link after it has been clicked on*/
}

a:visited:hover {
	color: #0066CC; /* denotes the colour of a link after it has been clicked on, when it is hovered over*/
}



/* usage: changes the colour & weight of text that goes between <span class="first>text</span>*/
.first {
	color:#000000;
	font-weight: 900;
	}

/* creates the effect of a drop shadow */


/* original container properties */
#container {
        border: 1px solid #848284;
		margin: 0px auto;
        padding: 10px;
		width: 850px;
		vertical-align: middle;
		border: 2px solid #000000;
		background-color: #FFFFFF;
		font-family:Arial,Helvetica,sans-serif;	
	}




#banner {
	width: 850px;
	height: 200px;
	margin-bottom: 10px;
	}


#bannerheader {
	width: 620px;
	height: 200px;
	margin: 0px 10px 0px 10px;
	float: left;
	}

#bannerheader img {
	margin-left: 5px;
	z-index: -1;
}


/* holds the language icons together */
#language {
	width: 250px;
	height: 20px;
	float: left;
	margin: 5px -10px 5px 100px;
	position: static;
	}

/* properties for each language icon */
#language img {
	margin: 2px;
	z-index: 1;
	height: 30px;
	width: 50px;
	}

/* holds the right zigzag in place */
#zigzag {
	float: right;
	}

/* alters the width of the left zigzag */
.zigzagleft {
	float: left;
	width: 200px;
	}

/* holds the rotating image in place */
#rotatorcontainer {
	width: 200px;
	height: 200px;
	float: left;
	}

/* rotating image properties */

#rotator {
	border: 1px solid #000;
	overflow: hidden;
	margin: 0px auto;
	padding: 0px;
	float: left;
	width: 200px;
	height: 170px;
}

#rotator img{
	width: 200px;
	height: 170px;
	display: inline;
	float: left;
	top: 0;
	left: 0;
	text-align:center;
}


/* code to edit img src in css instead of in each HTML document */
#rotator img src {
	
}

	
#menu {
	list-style: none;
	background-color:none;
	width: 200px;
	float: left;
	margin: 8px auto;
	padding: 0px;
	}

/* properties for an INACTIVE menu item */
#menu .nolink {
	display: block;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	text-decoration: none;
	text-transform:uppercase;
	font-weight: 600;
	padding: 10px 10px 10px 10px;
	margin-left: 0px;
	background-color:#09206C; 
	border-bottom: 1px dashed;
	text-align:center;
	}

#menu a {
	display: block;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	color:#000033;
	text-decoration: none;
	text-transform:lowercase;
	padding: 10px 10px 10px 10px;
	margin-left: 0px;
	background-color:#369; 
	border-bottom: 1px dashed;
	text-align:center;
	}

#menu a:hover {
	background-color: #09206C;
	/*other possible colour -   background-color:#003399;*/
	color:#FFFFFF;
	text-transform:uppercase;
	font-weight: 600;
}

#rightcolumn {
	width: 630px;
	float: left;
	padding: 0px;
	margin: 0px 10px 10px 10px;
	}
	
#clear {
	clear:both;
}
p.centre {
    text-align:center;
    }

#copyright {
	padding-top:10px;
	font:12px Arial,Helvetica,sans-serif;
	color:#FFFFFF;
	text-align:center;
}

#copyright a {
	text-decoration:none;
	color:#369;
}

#copyright a:hover {
	color:#F39;
}

	

