/*
	OPEN GATE STYLESHEET
	++++++++++++++++++++++
	T.Wiltshire 6th July 2003
	
	The only clever trick here is two nested divs for the topbar, giving me two shots
	at the background image!
	The rest is fairly standard now - Pure CSS graphic rollovers, 2 Column layout.

*/
body {
	margin: 0px;
	padding: 0px;
	background-color: #D2DFB8;
}


.dummybar {
	background-image: url(graphics/topbarbgnd.gif);
	background-repeat: repeat-x;
	background-position: top;
	margin: 0px;
	border: 0px;
	padding: 0px;
}

.topbar {
	background-image: url(graphics/topbarleaves.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 126px;
	font-family: Geneva, Helvetica, Verdana, Arial, sans-serif;
	margin: 0px;
	padding: 0px;
	padding-right:12px;
	padding-top:40px;
	text-align: right;
}

div.topbar h1 {
	/* Text styling */
	font-size: 120%;
	color: #FFFFFF;
	letter-spacing: 1em;
	/* Margins, borders, and padding */
	margin: 0px;
	padding: 0px;
}

div.topbar h2 {
	/* Text styling */
	font-size: 100%;
	color: #FFFFFF;
	/* Margins, borders, and padding */
	margin: 0px;
	margin-top: 4px;
	padding: 0px;
}

.content {
	margin-left: 210px;
	margin-top: 12px;
	margin-bottom: 12px;
	margin-right: 12px;
	padding: 12px;
	color: #000000;
	font-family: Geneva, Helvetica, Verdana, Arial, sans-serif;
	background-color: #FFFFFF;
}

div.content a {
	/* Style for links in the content text */
	color: #009900;
	text-decoration: none;
}

div.content a:hover {
	/* Rollover style for links in the content text */
	color: #00CC00;
	text-decoration: underline;
}

div.figure {
	/* This provides a box for a diagram or picture
	within the content area. It can have a caption.*/
	float: right;
	clear: right;	/* Force it below other things on the right */
	width: 30%;
	border: dotted 1px #006600;
	margin: 8px;
	margin-right: 0px;
	margin-top: 0px;
	padding: 4px;
	text-align: center;
}

div.largefigure {
	/* This provides a large invisble box for a bigger diagram or picture
	within the content area. It can have a caption.*/
	border: dotted 1px #006600;
	margin: 0px;
	margin-right: 32px;
	/*margin-top: 0px;*/
	padding: 4px;
	text-align: center;
}

p.caption {
	/* This style wraps a caption with an image for div.figure
	within the content area */
	margin: 0px;
	margin-top: 2px;
	padding: 0px;
	font-size: 75%;
	font-style: italic;
	text-indent: 0;
}

div.figure img {
	width: 100%;
}


.menu {
	float: left;
	width: 200px;
	font-family: Geneva, Helvetica, Verdana, Arial, sans-serif;
	font-size: 100%;
}

/* These two styles turn a list of links inside a menu div into a cool menu with graphic rollovers! */
div.menu a {
	display: block;
	/* Background */
	background-color: #006600;
	background-image: url(graphics/buttonbgnd.jpg);
	background-repeat: repeat-y;
	background-position: left;
	/* Borders, Margins and Padding */
	border-color: #000000;
	border-width: 1px;
	border-style: solid;
	margin: 12px;
	padding: 8px;
	/* Font styling */
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #FFFFFF;
}

div.menu a:hover {
	/* This is a mouseOver image */
	
	/* Background */
	background-color: #00CC00;
	background-image: url(graphics/buttonhilite.jpg);
	background-repeat: repeat-y;
	background-position: left;
	/* Font styling */
	color: #000000;
}

.footer {
	/* Footer bar at the foot of each content page */
	clear: both;	/* Ensures we're below any floated elements (pictures, typically) in the content area */
	font-size: 80%;
	font-family: Geneva, Helvetica, Verdana, Arial, sans-serif;
	text-align: center;
}
