body { 
margin:0; 
padding:0; 
} 

.mainTable {
	background-color: #2A578E;
}

.dockageTable {
	border-style: solid;
	border-color: #000000;
	border-width: 1px;
}

.bodyText {
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	color: #666666;
}

.mainHeader {
	font-family: Arial, Helvetica, sans-serif;
	font-style: bold;
	font-size: 22px;
	color: #223250;
}

.mainText {
	font-family: Arial, Helvetica, sans-serif;
	font-style: bold;
	font-size: 12px;
	color: #223250;
}

.blueHeader {
	font-family: georgia;
	font-style: italic;
	font-size: 22px;
	color: #22A3DC;
}

a.whiteLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 9pt;
	text-decoration: none;
}

a:visited.whiteLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 9pt;
	text-decoration: none;
}

a:hover.whiteLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 9pt;
	text-decoration: none;
}


/* CSS For News Section of Main Page */
.newsText {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #223250;
}

a.newsLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #bc943f;
	font-weight: bold;
	font-size: 8pt;
	text-decoration: none;
}

a:visited.newsLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #bc943f;
	font-weight: bold;
	font-size: 8pt;
	text-decoration: none;
}

a:hover.newsLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #bc943f;
	font-weight: bold;
	font-size: 8pt;
	text-decoration: none;
}

/* CSS For Left Navigation on internal pages */
.navCurrent
{
	font-family: Arial, Helvetica, sans-serif;
	color: #B03F40;
	font-weight: bold;
	font-size: 10pt;
	text-decoration: none;
}

a.navLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #236075;
	font-weight: bold;
	font-size: 10pt;
	text-decoration: none;
}

a:visited.navLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #236075;
	font-weight: bold;
	font-size: 10pt;
	text-decoration: none;
}

a:hover.navLink
{
	font-family: Arial, Helvetica, sans-serif;
	color: #236075;
	font-weight: bold;
	font-size: 10pt;
	text-decoration: none;
}

/* CSS For Main Navigation Drop Down Menus */
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#nav a {
	display: block;
	color: #FFFFFF;
	font-size: 12px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
}

#subnav a {
	display: block;
	color: #FFFFFF;
	font-size: 12px;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	margin-left: 18px;
	margin-top: 5px;
	margin-bottom: 5px;
	width: 100px;
}

#nav li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */
}

#nav li:hover {
	position: relative; 
	z-index: 1; 
	width: 120px;
	background:  url("/images/flag.jpg") left no-repeat #7E9DC1;
} 

#nav li ul { /* second-level lists */
	position: absolute;
	width: 120px;
	border-style: solid;
	border-color: #FFFFFF;
	border-width: 1px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	background-color: #283E69;
}

#content {
	clear: left;
	color: #ccc;
}

/* CSS For Side Layout */
#leftSide {
	background-image: url("/images/leftSide.jpg");
	background-repeat: repeat-x;
}

#rightSide {
	background-image: url("/images/rightSide.jpg");
	background-repeat: repeat-x;
}

#leftSideInternal {
	background-image: url("/images/leftSideInternal.jpg");
	background-repeat: repeat-x;
}

#rightSideInternal {
	background-image: url("/images/rightSideInternal.jpg");
	background-repeat: repeat-x;
}

/* CSS For Image Floating */
img.floatLeft { 
    float: left; 
    margin: 10px; 
}

img.floatRight { 
    float: right; 
    margin: 10px; 
}

