@charset "UTF-8";
/* CSS Document */


/*General styles*/

html {
	height: 100%;
}

body {
	font-size: 1.1em; /*equivalent of 11px font size*/
	font-family: arial, helvetica, sans-serif;
	background-color: black; 
	margin: 0;
	padding: 0;
	line-height: 1.454545em;
	color: black;
	height: 101%; /* in conjuntion w/ html height at 100%, forces scroll bars always appear */	
}

img {
	border: 0;
}

h1 {
	font-size: 1.4em;
}

h2 {
	font-size:1.1em;
}

#wrapper {
	width: 960px;
	background-color: black;
	position: relative;
	height: 100%;
	margin: 0 auto;
}

a:link {
	color:white;
}

a:visited {
	color:white;
}
a:hover {
	color:silver;
}

ul {
	list-style: square;
	padding-left:1em;
	margin: 0;
	
}


/*Top bar styles*/

#header {
	padding-top:10px;
}


/* column container */
.colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug */
	clear:both;
	float:left;
	width:960px;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
	margin-top:20px;
}

	/* column container */
	.colmask {
		position:relative;	/* This fixes the IE7 overflow hidden bug */
		clear:both;
		float:left;
		width:100%;			/* width of whole page */
		overflow:hidden;		/* This chops off any overhanging divs */
	}
	/* common column settings */
	.colright,
	.colmid,
	.colleft {
		float:left;
		width:100%;			/* width of page */
		position:relative;
	}
	.col1,
	.col2,
	.col3 {
		float:left;
		position:relative;
		padding:1em 0 1em 0;	/* no left and right padding on columns, we just make them narrower instead 
						only padding top and bottom is included here, make it whatever value you need */
		overflow:hidden;
	}
	/* 3 Column settings */
	.threecol {
		background:#487d0c;		/* right column background colour */
		background-image: url(../newimages/greencorner.png);
		background-repeat: no-repeat;
		background-position: top right;
	}
	.threecol .colmid {
		right:25%;			/* width of the right column */
		background:#145977;		/* center column background colour */
		border-right: 20px black solid;
		background-image: url(../newimages/bluecorner.png);
		background-repeat: no-repeat;
		background-position: top right;
	}
	.threecol .colleft {
		right:50%;			/* width of the middle column */
		background:white;	/* left column background colour */
		border-right: 20px black solid;
		background-image: url(../newimages/whitecorner.png);
		background-repeat: no-repeat;
		background-position: top right;
	}
	.threecol .col1 {
		width:44%;			/* width of center column content (column width minus padding on either side) */
		left:104%;			/* 100% plus left padding of center column */
		color: white;
	}
	.threecol .col2 {
		width:19%;			/* Width of left column content (column width minus padding on either side) */
		left:33%;			/* width of (right column) plus (center column left and right padding) plus (left column left padding) */
	}
	.threecol .col3 {
		width:20%;			/* Width of right column content (column width minus padding on either side) */
		left:91%;			/* Please make note of the brackets here:
						(100% - left column width) plus (center column left and right padding) plus (left column left and right padding) plus (right column left padding) */
		color:white;
	}
	
	.col2 a {
		color:#145977;
	}
	
	
	.col2 a:visited {
		color:#145977;
	}
	.col2 a:hover {
		color:#487d0c;
	}
	
	.col1 img{
		margin: 3px 3px 3px 3px;
		padding: 0;
		border: 1px black solid;
	}
	
	.floatRight{
		float:right;
		margin: 3px 0px 0px 3px;
		padding: 0;
		border: 1px black solid;
	}
	
	.col2 img{
		display: block;
		margin-left: auto;
		margin-right: auto 
	}

