@charset "UTF-8";
body {
	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;
	background-color: #CCC;
}
.egenixOneCol #container {
	width: 800px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	background-color: #FFF;
	margin: 0 auto;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-left-color: #CCC;
}
.egenixOneCol #header {
	background-color: #FFFFFF;
	height: 110px;
	background-image: url(../images/banner11V2.jpg);
	background-repeat: no-repeat;
	padding: 0px 0px 10px;
}
.egenixOneCol #header h1 {
	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;
}
.egenixOneCol #container #mainNav {
	height: 25px;
	background-color: #FFFFFF;
	width: 799px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #DCD1EC;
	border-bottom-color: #DCD1EC;
}
.egenixOneCol #container #mainNav table {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-bottom: 0px;
	color: #6C3EB0;
}
.egenixOneCol #mainContent {
	margin-bottom: 0px;
	height: auto;
	margin-top: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	background-color: #F8F6F5;
}
.egenixOneCol #footer {
	margin-top: 0px;
	height: 75px;
	background-color: #dcd1ec;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #6C3EB0;
	border-bottom-width: 6px;
	border-bottom-style: solid;
	border-bottom-color: #6C3EB0;
}
.egenixOneCol #footer p {
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	text-align: center;
}
.egenixOneCol #credit {
	font: italic 10px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color: #333;
	text-align: center;
	margin: 0 auto;
	width: 800px;
}
a:link {
	color: #6C3EB0;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	color: #909874;
}
a:visited {
	text-decoration: none;
	color: #6C3EB0;
}
a:active {
	text-decoration: none;
	color: #E7F4B9;
}

