/* CSS Document */

/* ------------------------------- formatting ----------------------------- */

body {
	margin: 0;
	background-image:url('images/botright.jpg');
	background-repeat:no-repeat;
	background-position: bottom right;
	}

h1 {
	font: bold x-large Arial, sans-serif;
	color: #1E5B70;
	margin-top: 0;
	}

#news h2 {
	color: #D6D6D6;
	margin-top: 10px;
	}

h2 {
	font: large Arial, sans-serif;
	color: #9C1A1E;
	text-align: center;
	}
h3{font: large Arial, sans-serif; color:#9c1a1e; text-align:left;}

h4 {
	font: bold small Verdana, sans-serif;
	color: #9C1A1E;
	margin-bottom: 2px;
	}

h5 {
	font: italic bold small Arial, sans-serif;
	color: #43616B;
	margin-top: 2px;
	}
	
p {
	font: 0.7em Verdana, sans-serif;
	}
	
#listp {
	font: 0.7em Verdana, sans-serif;
	}
	
#center p {
	font: 0.8em Verdana, sans-serif;
	}

#sponsor p, #articlesponsor p {
	color: #A5B5C6;
	}
	
#footer p {
	margin: 4px;
	text-align: center;
	}

a {
	color: #34339B;		
	}
a:hover {
	color: #9C191E;	
	}

hr {
	color: #A5B5C6;
	height: 1px;
	}
	
a img {
	border: 0 none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}

img {
	border: 0 none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}
	
.imgright, .imgleft {
	float: right;
	margin: 10px 20px 10px 10px;
	border: 1px solid #1E5B70;
	padding:5px;
}
.imgleft{float:left;}
.imgcentre{margin: 10px 20px 10px 10px; border:1px solid #1e5b70; padding:5px; display: block; margin-left: auto; margin-right: auto; }
.imgbdr { border: 1px solid #1E5B70; padding:5px;}


.topblue {
	margin-right: 0px;
	padding-right: 0px;
	font-size: 1.1em;
	color: #000 /*#1E5B70*/;
}

.topblue a:link, .topblue a:visited, .topblue a:hover {color: #000; text-decoration: none; cursor: text;}

div#top a {
	display: block;			/* makes the background hover effect work in Mozilla */
	width: 153px;
	background-color: #5C6F90;
	}

div#top a:hover {
	background-color: #43616B;
	}

.textbox {					/* Until IE understands <css> input[type="file"] { </css> It's better to define a new style then it is to re-define the input tag because radio buttons cop a beating */
	padding: 2px;
	font:  small verdana, sans-serif;
	color: #000;
	background-color: #fff;
	border: 1px solid #000;
	}

.button {
	padding: 2px;
	font: bold small verdana, sans-serif;
	color: #fff;
	background-color: #5C6F90;
	border: 1px solid #000;
	width: 100px;
	}

.latestarticle {
	margin-bottom: 0;
	}

p.latestarticle a {
	clear: right;
	font: bold small Verdana, sans-serif;
	}

p.crumbtrail {
	margin: 10px 28% 0;
	font-size: x-small;
	}
/* 

------------------------------- layout ----------------------------- 

Notes:

Do not mix px widths with % widths for margins, borders or padding because 
the total box width = set width + padding + border.  (It helps if you can add them together)

The box model hack is used to fix an bug in IE5-Win ...for an explanation from the guy that
wrote it go to http://www.tantek.com/CSS/Examples/boxmodelhack.html

IE6-Win will behave like IE5-Win  if you include <?xml version="1.0"?>  It is apparently
unneccessary so leave it out!

Left Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |   0    |          25%         |   0    |	
 
Center Margins:
 |  marg  |         width        |  marg  | 
 ------------------------------------------
 |   25%  |        (auto)        |   25%  |

Right Col Widths:
 |  pad   |         width        |  pad   | 				
 ------------------------------------------					
 |  1.5%  |          22%         |  1.5%  |				total width= 25%
 

*/

#top {
	padding: 4px;
	padding-top: 1px;
	background: #0B85B6 url('images/topbg.jpg') repeat-x;
	border-bottom: 1px solid #1E5B70;
	height: 110px;
	}

#topdetail {
	position: absolute;
	right: 100px;
	height: 100px;
	width: 200px;
	background: transparent url('images/topdt.jpg') no-repeat;
}

div#topcontent {
	position: absolute;
	top: 5px;
	right: 0;
	width: 80%;
	text-align: right;
	}

#topcontent h2, #topcontent p {
	padding: 0px;
	margin: 0px;
	margin-right: 10px;
	}
	
#center {
	margin: 0 1% 0 25%;
	padding: 1% 3%;
	background: transparent;
	color: #000;
	}

div#center ul {
	font: 0.8em Verdana, sans-serif;
	}

#left {
	position: absolute;
	padding: 0;
	top: 116px;
	width: 25%;
	background: #99BED4 url('images/leftbot.jpg') left bottom repeat-x;
	color: #000;
	}

#otherleftstuff {
	width: 88%;
	padding: 10px 6% 40px 6%;
	}

.spacer {
	display: block;
	height: 1px;
	font: 1px /1 sans-serif;
	clear: both;
	}
		
#footer {
	/* clear: both;
	margin-top: 15px;
	border-top: 1px solid #5C6F90;
	border-bottom: 1px solid #5C6F90;
	background-color: #D6D6D6;
	color: #000; */
	}

/* --------------------- Logo Transparency ------------------- */
#logo {
	position: absolute;
	height: 93px;
	width: 150px;
	margin: 0px auto 4px 5px;
	background: transparent url('images/logo.gif') no-repeat;
	}

/* 
-------------------------------- Navigation ------------------------------ 
List tips courtesy of A List Apart: http://www.alistapart.com/stories/taminglists/
*/


ul#mainnav {
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: #99BED4;
	}
		
ul#mainnav li {
	border-top: 1px solid #99BED4;
	}

ul#mainnav li a {
	text-decoration: none;
	display: block;
	width: 88%;
	padding: 6px 6%;
	background-color: #1E5B70; /*     iuqwyduioyuiwyeuifyaweuifyuiaweyfuiywuifyuiayfiu      */
	font: bold 0.8em /1.5 arial, sans-serif;
	color: #fff;
	}

ul#mainnav li a:hover {
	background-color: #43616B;
	text-decoration: underline;
	color: #eee;
	}
	
ul#mainnav ul.subnav {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align:right;
	}

ul#mainnav ul.subnav li {
	border-top: 0 none;
	padding-right: 1.5em;
	}

ul#mainnav ul.subnav li a {
	padding: 1px;
	font: bold 0.7em /1.5 verdana, sans-serif;
	color: #1E576A;
	background-color: transparent;
	}

ul#mainnav ul.subnav li a:hover {
	color: #43616B;
	background-color: transparent;
	text-decoration: underline;
	}
	
/* --------------------------------------------------------------------*/
.520 {
	width: 520px;
	max-width:520px;
}

.tbcentre {
	text-align: center;
	vertical-align:text-top;
}
