@charset "UTF-8";
/* CSS Document */

*.* {
	margin: 0;
	padding: 0;
}

body {
	font: 100% Helvetica, Arial, Verdana, sans-serif;
	background: #000000;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	font-size: 12px;
	line-height: 1.5em;
}
#container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#mainContent {
	margin: 140px 0 0 0;
	padding: 5px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 675px;
	text-align: center;
}

/* SLIDER */

#slideshow_box {
 
  float: left;
  /* position:absolute;
  margin-left:580px;
  margin-top:-12px; */
}

#slideshow {
  	/* float: left; */
	margin: 0 auto 50px; 
  	width: 600px;
  	height: 380px;
  	clear: none;
  	background-color: #0000;
  	margin-top: 0px;
  	text-align: center;
}


/* General styles  */

p {
	margin: 0;
	padding: 0 0 .7em 0;
	letter-spacing: .02em; 
}


h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: .75em 0 .5em 0;
	font-family: "Century Gothic", Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #99CCFF;
	line-height: 1.4em;	
	letter-spacing: .02em; 
}



/* Link STYLES ------------ */ 
/*  Old Site link colors: link="#99FFFF" vlink="#33FFFF" alink="#FFFF99 */

a:link {
	color: #99CCFF;
	text-decoration: none;
}
a:visited {
	color: #99CCFF;
	text-decoration: none;
}
a:hover {
	color: #FFFF99;
	text-decoration: underline;
}
a:active {
	color: #FFFFFF;
	text-decoration: underline;
}



/* FOOTER  */

#footer {
	margin: 150px auto;
	padding: 20px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #000000;
	text-align: center;
	border-top: #036 solid 1px;
	width: 700px; 
}
#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 */
	font-size: 9px;
	color:#006699;
}
#footer a:link {
	color: #3399CC;
}
#footer a:visited {
	color: #3399CC;
}
#footer a:hover {
	color: #33CCFF;
}
#footer a:active {
	color: #CCFFFF;
}
