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

body {
	font-size: 63%;
	font-family:Georgia, "Times New Roman", Times, serif;
	background-color:#e55ea7;
	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;
}
.oneColFixCtrHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:#e55ea7 url(../images/logo2.jpg) no-repeat;
	background-position:top;
	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. */
}
.oneColFixCtrHdr #header {
background-color:#e55ea7;
	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: 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;
	font-size:1.6em;
}
.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 h1{
	text-align:center;
	font-size:5.5em;
	margin:0;
	padding:0;
}
.oneColFixCtrHdr #mainContent p{
	text-align:center;
	font-size:2em;
	padding: 0;
	margin: 0;
	}

.oneColFixCtrHdr #footer {
	background-color:#e55ea7;
	margin:0;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:center;
	font-size:1em;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

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

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

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

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

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

.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;
}