@charset "UTF-8";
/* CSS Document */

body {
font-size:62.5%;
font-family:Georgia, "Times New Roman", Times, serif;
	background-color:#006E54;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-image: url(../images/starz3.jpg);
}
.oneColFixCtrHdr #container {
	width: 76em;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/globalbehind2.jpg);
	border-color: #CFB357;
	border-width: 1em;
	border-style:solid;
}
.oneColFixCtrHdr #header {
	background-color:#006E54;
	padding: 0 10px 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */

}
.oneColFixCtrHdr #header p {

	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0 20px 0;
	/* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align:center;
	color:#FFFFFF;
}
.oneColFixCtrHdr #header a {
	color:#ffffff;

}
.oneColFixCtrHdr #header a:hover{
	color:#FFFF00;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.oneColFixCtrHdr #mainContent p{
	text-align:center;
	margin:0;
	padding: 0;
	font-size: 2em;
	}
.oneColFixCtrHdr #mainContent h2 {
	font-size: 2.8em;
	margin: 0px;
	padding: 0px;
}


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */


.mattblacktabs{
	overflow: hidden;
	margin: 0 0 0 2em;
	padding: 0;
}

.mattblacktabs ul{
	margin:0;
	padding: 0;
	list-style-type: none;
}

.mattblacktabs li{
	display: inline;
	margin: 0;
	text-align:center;
	font-size: 1.2em;
	font-weight: bold;
	padding: 0;
}

.mattblacktabs li a{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0 0.5em; /*padding inside each tab*/
	color: black;
	background-color: #CFB357; /*background of tabs (default state)*/
	width:13em;
	text-align:center;
	padding: 0;
}

.mattblacktabs li a:visited{
color: black;
}

.mattblacktabs li a:hover, .mattblacktabs li.selected a{
background: black; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */

color: white;
}

