@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #FFFFFF;
	background-position: center center;
	background-repeat: no-repeat;
	
	color: #999999;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 18px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	
	
	vertical-align: middle;
	margin-top: 10px;
	margin-right: auto;
	
	margin-left: auto;



}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #999;
  
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #999;
  
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:hover {
	color: #93C94D;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #93C94D;
}

#outerWrapper {
	border: solid 1px #cccccc; /* Sets the border properties for an element using shorthand notation */
	background-image: url(../images/bg-home.jpg);
	height: 612px;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	max-width: 1024px;
	min-width: 1024px;
	text-align: right; /* Redefines the text alignment defined by the body element. */
	width: 1024px;
	background-repeat: no-repeat;
}
#outerWrapper #contentWrapper {
  height: 612px;
  margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  overflow: hidden;
 
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	height: 100px;
	text-transform: uppercase;
	margin: 508px 105px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: px;
}




.copyright {
	font-size: 9px;
	color: #999;
	margin-top: 10px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-style: normal;
	font-variant: normal;
	text-align: left;
}

#nav {
	width: 400px;
	margin-top: 20px;
	margin-right: 35px;
	display: inline-block;
	word-spacing: 8px;
	}

