@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	background: #333333;
	margin: 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0 0;
	text-align: center; /* this centers the container in IE 5* browsers. */
	color: #FFFFFF;
	height: 100%;
}
#container {
	width: 100%;  /* this will create a container 100% of the browser width */
	min-height: 100%;
	height: 100%;
	background: #333333;
	/* margin: auto 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. */
} 

#header {
	background: #000000;
	height: 50px;
	padding: 0px 10px 0 0;   /* 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. */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header h1 {
	margin: 0 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 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 24px;
	font-weight: normal;
	text-transform: capitalize;
	color: #FFF;
	font-variant: small-caps;
	width: 400px;
}

#menu { 
/*	margin: 0 20px 0 13em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
  z-index: 3;  /* menu is the topmost element */
  position:absolute; right:0px; top:20px;
  margin: 0 0px;
} 
#mainContent {
	margin: 0 auto;
	padding: 0 0;
	background: #333333;
	text-align: center; /* this overrides the text-align: left on the container element. */
}

#centered {
	width: 600px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: left;
	font-size: 10pt;
}

#flashcontent {
	z-index: 0;
}

#imageframe {
	background-color:#000;
	width: 800px;
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 20px;
	padding: 15px;
}

#footer { 
	position:absolute;
	width: 100%;
	bottom: 0;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	height: 30px;
} 
#footer p {
	margin: 0 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 */
}

#language {
	position:absolute;
	font-size:10px;
	color:#FF0;
	right:0px;
	top:5px;
	width:120px;
	height:22px;
	z-index:3;
}
#language:hover {cursor:pointer; color:#C00}

#header a
{
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
}
#navmain img {
	border-style:none;
}

#navmain td {
	padding: 5px;
	background-color:#000;
}
#navmain td:hover, td:focus
{
	background-color: #666;
}

p a
{
	display: block;
	cursor: pointer;
	color: #FFF;
	text-decoration: none;
}


