@charset "UTF-8";

/* ________________________________CSS resets______________________________________________________________________ */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 15px;
	background-color:#F6F6F6;
	margin: 0;
	padding: 0;
	color: #000;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. 
For consistency, you can either specify the amounts you want here, 
or on the list items (LI, DT, DD) they contain. 
Remember that what you do here will cascade to the 
.nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	padding: 0;
	margin: 0;
}


/* ________________________________Main Fixed Width 960px Centered Container__________________________________________________ */


.container {
	width: 960px;
	/*height: 1450px;*/
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	
	-webkit-box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 10px -8px rgba(0,0,0,0.75);
}

.container2 {
	width: 960px;
	height: 2450px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	
	-webkit-box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
	-moz-box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
	box-shadow: 10px 10px 10px -8px rgba(0,0,0,0.75);
}


/* ____________________________________Header for Banner Image_______________________________________________________________ */


/*  Set to height of banner image */
header {
	height: 90px;
}


/* ____________________________________Navigation/Menu Panel_______________________________________________________________ */


nav {
	background: rgb(3,57,109);
	color: white;
	border: 0;
	float: left;
	font-size: 0.8em;
	height: 28px;
	-webkit-border-bottom-right-radius: 4px;
    	-moz-border-radius-bottomright: 4px;
    	border-bottom-right-radius: 4px;
}

nav ul{
	list-style: none; /* this removes the list marker */
}

nav ul li {
	display: inline-block;
	list-style-type: none;
	padding: 0.5em;
}

nav > ul > li > a {
	color: #fff;
	display: block;
	text-decoration: none;
}

nav li a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	color: #FFF;
	text-decoration: underline;
}

/* set for currently selected list item */
.selected {
	/*border-bottom: inset #FFFFFF;*/
	/*border-width:small;*/
	background-color: rgb(33,87,139);
	height: 15px;
}

/* set for currently selected list item */
.selected_r {
	/*border-bottom: inset #FFFFFF;*/
	/*border-width:small;*/
	background-color: rgb(33,87,139);
	height: 15px;
	border-bottom-right-radius: 4px;
}

/* set for currently selected list item */
.selected_l {
	/*border-bottom: inset #FFFFFF;*/
	/*border-width:small;*/
	background-color: rgb(33,87,139);
	height: 15px;
	border-bottom-left-radius: 4px;
}

#right_nav {
	float: right;
	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 0px;
	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 0px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 0px;
}

#left_middle_nav {
	background: rgb(3,57,109);
	float: left;
	height: 28px;
}

#left_middle_nav2 {
	background: white;
	padding:0.5em;
	border-top-left-radius: 4px;
	height: 25px;
}
#right_middle_nav {
	background: rgb(3,57,109);
	float: right;
	height: 28px;
}

#right_middle_nav2 {
	background: white;
	padding:0.5em;
	border-top-right-radius: 4px;
	height: 25px;
}

/* ____________________________________Center Title styling_______________________________________________________________ */

#centre_title {
	color: 	rgb(3,57,109);
	margin-top: 5px;
}

#centre_title > h2 {
	font-size: 1.1em;
}

#centre_title2 {
	color: 	rgb(3,57,109);
	margin-top: 5px;
	margin-bottom: 10px;
	background: white;
	height: 35px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

#centre_title2 > h2 {
	font-size: 1.3em;
}


/* ____________________________________Main Left Column content (570px)_______________________________________________________________ */


.maincontent {
	clear: both;
	float: left;
	width: 570px;	
	font-size:14px;
}

.maincontent_aboutsection {
	clear: both;
	float: left;
	width: 870px;	
	font-size:14px;
}
.maincontent_gll {
	clear: both;
	float: left;
	width: 870px;	
	font-size:14px;
}

.maincontent_dems {
	clear: both;
	float: left;
	width: 870px;	
	font-size:14px;
}



/* ____________________________________Main Left Column content (570px)_______________________________________________________________ */


.mainwidecontent {
	clear: both;
	float: left;
	width: 920px;	
	font-size:14px;
}
/* ____________________________________Main Right Column content (370px)_______________________________________________________________ */


.mainside {
	float: left;
	width: 385px;	
	font-size: 14px;
}

/* ____________________________________H1, H2 defaults_______________________________________________________________ */


h1 {
	color: 	rgb(3,57,109);
	font-size: 1.1em;
}

h2 {
	color: 	rgb(3,57,109);
	font-size: 1.0em;
	margin-bottom: 16px;
}

/* ____________________________________Page Footer_______________________________________________________________ */

footer {
	font-size:0.7em;
	height: 1.5em;
	padding: 8px 0;
	color: white;
	background-color: rgb(3,57,109);
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

footer a {
	color: #fff;
	text-decoration: none;
}

/* ____________________________________Old Browser support_______________________________________________________________ */

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;
}

/* ____________________________________Misc_______________________________________________________________ */

.centre {
	text-align: center;	
}

.clearfix{ clear: both }


/* ------- annotation at top of blue pane ------- */

.outerpane_annotation {
	position: absolute;
	top: 10px;
	left: 10px;	
	color: white;
	font-size: 0.9em;
}

.outerpane_annotation2 {
	position: absolute;
	top: 10px;
	left: 235px;	
	color: white;
	font-size: 0.75em;
}

.outerpane_annotation2b {
	position: absolute;
	top: 10px;
	left: 215px;	
	color: white;
	font-size: 0.75em;
}

.outerpane_annotation3 {
	position: absolute;
	top: 10px;
	left: 160px;	
	color: white;
	font-size: 0.75em;
}

.outerpane_annotation3b {
	position: absolute;
	top: 10px;
	left: 220px;	
	color: white;
	font-size: 0.75em;
}

.outerpane_annotation4 {
	position: absolute;
	top: 3px;
	left: 5px;	
	color: white;
	font-size: 0.75em;
}

.outerpane_annotation5 {
	position: absolute;
	top: 4px;
	left: -2px;	
	color: white;
	font-size: 0.95em;
}

.outerpane_annotation5a {
	position: absolute;
	top: 4px;
	left: 210px;	
	color: white;
	font-size: 0.95em;
}


.outerpane_annotation5b {
	position: absolute;
	top: 4px;
	left: 500px;	
	color: white;
	font-size: 0.95em;
}

.outerpane_annotation_tsbig1 {
	position: absolute;
	top: 34px;
	left: 10px;	
	color: white;
	font-size: 0.95em;
}
.outerpane_annotation_tsbig2 {
	position: absolute;
	top: 470px;
	left: 10px;	
	color: white;
	font-size: 0.95em;
}



/* ------- image placeholder in blue pane, leaving annotation gap at top of pane ------- */

.image_placeholder {
	position: absolute;
	top: 40px;
	left: 10px;	
	border-style:groove;
	border-width: 1px;
}

.image_placeholder1a {
	position: absolute;
	top: 40px;
	left: 10px;	
	border-style:groove;
	border-width: 1px;
}
.image_placeholder1b {
	position: absolute;
	top: 245px;
	left: 10px;	
	border-style:groove;
	border-width: 1px;
}

.image_placeholder2a {
	position: absolute;
	top: 60px;
	left: 10px;	
	border-style:groove;
	border-width: 1px;
}

.image_placeholder2b {
	position: absolute;
	top: 500px;
	left: 10px;	
	border-style:groove;
	border-width: 1px;
}

/* ------- popout information pane ------- */

.info_wrapper {
	position: absolute;
	top: 35px;
	right: 0px;
	width: 70%;
	box-shadow: 10px 10px 10px -8px rgba(0,0,0,0.75);
	background-color: rgb(3,57,109);	
	border-color: rgb(3,57,109);	
	border-style: solid;
    border-width: 3px;
	border-radius: 8px 8px 8px 8px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;	
}

.info_pane {
	position: relative;
	top: 10px;
	left: 0px;
	background-color: white;	
	padding-top: 5px;
}

/* ------- download icon wrapper ------- */

.download_icon_div {
	position: absolute;
	top: 6px;
	right: 40px;	
	color: white;
	font-size: 7px;
	width: 16px;
	height: 32px;
}

.txtwrap {
	float: right;
	margin: 10px;
}

a.download_link:hover, a.download_link:active, a.download_link:visited, a.download_link:link {color: white;}


.txtsmaller {
font-size: 0.8em;
}
