@charset "UTF-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	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(../background.jpg);
}
img
{  border-style: none;
}
.crossPlatformCtrHdr #container {
	width: 800px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	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. */
}

.crossPlatformCtrHdr #seperator {
	height: 5px;  /* this will create a container 80% of the browser width */
}

.crossPlatformCtrHdr #header {
	background: #FFFFFF; 
	padding: 0 10px 0 20px;  /* 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. */
	background-image: url(../background.jpg);
}
.crossPlatformCtrHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
.crossPlatformCtrHdr #mainContent {
	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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	font-size: 12px;
}

.crossPlatformCtrHdr #mainContent h1{
	font-size: 24px;
	font-weight: bold;
}
.crossPlatformCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF;
	font-size: 9px;
} 
.crossPlatformCtrHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.crossPlatformCtrHdr #navigationBar {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	background-color: #FFFFFF;
	border: 1px solid #000000;
}

.crossPlatformCtrHdr #navigationBar a {
	color: #0000FF;
	font-weight:normal;
	text-decoration: none;
	display:block;
	padding:2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	}
.crossPlatformCtrHdr #navigationBar a:hover {
	color: #FFFFFF;
	font-weight:normal;
	text-decoration: none;
	display:block;
	padding:2px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	border: 1pt solid #FFFFFF;
	background-color: #FFFF00;
}

