@charset "utf-8";
body {
	font-family: Calibri, Verdana, Arial, Helvetica, 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 */
}
.oneColFixCtr #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 540px;
	border-color: #FFFFFF;
	border-style: solid;
	border-width: 1px;
}

p {
	font-size: small;
	font-weight: normal;
	margin-top: 5px;
	margin-bottom: 4px;
	color: #666666;
}



td, th {
	color: #99CCCC;
}

h1 {
	color: #666666;
}

h2 {
	color: #333333;
}
a {
	color: #CCCCCC;
}

/*** set the width and height to match your images **/
#slideshow {
    position: relative;
    height:350px;
	width: 540px;
}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}