@charset "utf-8";

html {
	background: url(../images/full-bg_2048.jpg) no-repeat fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
 if IE
	{
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='full-bg_2048.jpg', sizingMethod='scale');
-ms-filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='full-bg_2048.jpg', sizingMethod='scale');
	}

/* -- this sets the page background and font -- */
body {
	font: 1em/1.7 Arial, Helvetica, sans-serif;
	background: none;
	margin: 0;
	padding: 0;
	color: #000;
}

/* -- Colors used in the MokeWISE site layout include:
Dark Blue = 00385D / 0,56,93
Med. Blue = 5783AC / 87,131,172
Green = B4CC95 / 180,204,149
Orange = CC9639 / 204,150,57
Tan = D3BF93 / 211,191,147
-- */

/* ~~ 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 {
	color: #00385D;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
}
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;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #FFF;
	font-style: normal;
	text-decoration: none;
}
a:visited {
	color: #FFF;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	color: #00385D;
	text-decoration: none;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 980px;
	margin: 0 auto;
}

.header {
	background-image:url(../images/mockup_header.png);
	width: 980px;
	height: 180px;
	background-repeat:no-repeat;
}

/* ~~ These are the columns for the layout. ~~

*/
.sidebar1 {
	float: left;
	width: 210px;
	background: none;
	margin-left: 30px;
	margin-top: 10px;
	padding: 10px 10px 50px 0;
	background-image: url(../images/tile-green.png);
	background-repeat: repeat;
	-moz-border-radius: 15px;
	border-radius: 15px;
	clear: both;
}

.content {
	padding: 10px 0;
	margin-right: 35px;
	margin-top: 10px;
	width: 680px;
	float: right;
	/*background-image: url(../images/tile-white.png);*/
	background-color: white;
	background-repeat: repeat;
	-moz-border-radius: 15px;
	border-radius: 15px;
	min-height: 667px !important;
}

/* ~~ This highlights the current page in the navigation bar ~~ */
body#home a#nav-home,
body#announcements a#nav-announce,
body#documents a#nav-docs,
body#contactus a#nav-contact,
body#participation a#nav-part {
	color: #CC9639;
	text-decoration: overline;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol {
	padding: 0 15px 15px 40px;
}

/* ~~ The navigation list styles ~~ */
#navbar {
	width: 980px;
	height: 50px;
	display: block;
	margin: 0, auto;
	background-image: url(../images/mockup_navbar.png);
	background-repeat: none;
}
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 0px solid #FFF; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 0px; /* this creates the space between the navigation on the content below */
	font-weight:bold;
	font-size: 1em;
	text-align: center;
}
ul.nav li {
	border-bottom: 0px solid #FFF; /* this creates the button separation */
	margin: 7px 7px 7px 0;
	float: left;
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 25px;
	display: block;
	width: 145px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. */
	text-decoration: none;
	background: none;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: none;
	color: #B4CC95;
}

/* ~~ The footer ~~ */
.footer {
	display: block;
	padding: 0;
	width: 980px;
	height: 70px;
	background: none;
	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 */

	margin: 0 auto;
	text-align: center;
	top: 10px
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* -- custom classes for esrwmp site features and layout -- */
.logo {
	width: 760px;
	margin-left: 105px;
	margin-top: 65px;
	margin-bottom: 0px;
	padding: 0;
	float: left;
}
.logo2 {
	width: 105px;
	margin-left: 10px;
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0px;
	padding: 0;
	float: left;
}
h1.main {
	font-size: 3em;
	color: #FFF;
	padding-top: 40px;
	margin-top: 0px;
	margin left: 10px;
	line-height: .7em;
}
h2.main {
	font-size: 1.6em;
	color: #FFF;
	padding-top: 0px;
	margin-top: 0px;
	margin left: 10px;
	line-height: .05em;
}
.links {
	font:Verdana, Geneva, sans-serif;
	font: .8em;
	color: #fff;
}
ul.links {
	list-style: none; /* this removes the list marker */
	border-top: 0px solid #FFF; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-left: 11px;
	margin-bottom: 10px; /* this creates the space between the navigation on the content below */
	color: #FFF;
}
li.links {
		font-size: .7em;
		border-top: 1px solid #FFFFFF;
		padding: 3px 0 3px 0;
		margin-right: 10px;
		margin-top: 10px;
}
/* -- this is the photo class used on the home page -- */
.photo {
	float: left;
	margin-left: 20px;
	margin-bottom: 20px;
	padding-top: 5px;
	padding-left: 0;
	padding-right: 20px;
	clear: right;
}
/* -- this is the list class used on the home page -- */
ul.bullets {
	font-family: Arial, Helvetica, sans-serif;
	font: 1em/1.7;
	color: #000;
	margin-left: 20px;
	margin-top: 10px;
	margin: 0px;
	padding-left: 10px;
	text-align: left;
}
li.bullets {
	list-style-type: none;
	padding-left: 20px;
	background: url(../images/bullet-arrow.gif) no-repeat 0 10px;
}
.bullets a:link {
	color: #5783AC;
}
.bullets a:hover {
	color: #CC9639;
}
.bullets a:visited {
	color: #5783AC;
}
/* -- this is the table class used on the participation page -- */
.table {
	font: 1em/1.4em Arial, Helvetica, sans-serif;
	width: 600px;
	margin-left: 15px;
	border: #5684ae;
	text-align: center;
}
.table a:link {
	color: #0f416f;
}
.table a:hover {
	color: #5684ae;
}
/* -- this is the form class used on the contact page -- */
.form {
	font-size: 1em;
	width: 600px;
	margin-left: 15px;
}
/* -- this is the swf object container div used on the about page -- */
.swfobject1 {
	width: 640px;
	height: 480px;
	margin-left: 15px;
	padding-bottom: 10px;
}

#scroll {
position:absolute;
top:0;
bottom:-0.1px;
width:1em;
z-index:-1;
}

.footnote {
	font-size:10px;
	font-style:italic;
}

/* -- these classes set the hyperlinks to blue so they are visible against the white background. These should be used for all page links not appearing in the nav bar or sidebar -- */
.bluelinks a:link {
	font-weight: bold;
	color: #5783AC;
}
.bluelinks a:hover {
	color: #CC9639;
}
.bluelinks a:visited {
	color: #5783AC;
}

/* -- these classes set the hyperlinks hover color to blue so they are visible against the green table background. These should be used for all table links -- */
.tablelinks a:link {
	color: #5783AC;
}
.tablelinks a:hover {
	color: #00385D;
}
.tablelinks a:visited {
	color: #5783AC;
}

.table_container{
    display:table;
    width:95%;
    border-collapse: collapse;
    }
.table_heading{
     font-weight: bold;
     display:table-row;
     background-color:#696969;
     text-align: center;
     line-height: 35px;
     color:#fff;

}
.table-row{
     display:table-row;
     text-align: center;
     line-height: 30px;
}
.table_col{
    display:table-cell;
    border: 1px solid #CCC;
}

.participation_ul li
{
   padding-bottom: 10px !important;
}