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

body {
	font: 100%/1.2 Arial, Helvetica, Verdana,  sans-serif;
	background-color: #e6e6e6;
	margin: 0;
	padding: 0;
	color: #666;
    background-image: url(SkyBG.jpg) , url(gradient.png);
	background-position:top center, top;
    background-repeat: no-repeat, repeat-x;
	background-color:#cde8fe;

}


h1, h2, h3, h4, h5, h6 {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 0px;
	color: #2690b0;/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
p {
	margin-top: 0;
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 15px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
ul{
    list-style:none;
    margin:0 0 1em 15px;
    padding: 0;
}
ul li{
    line-height:28px;
    margin: .25em 0;
    padding: 0 0 0 30px;
    background:url(checkmark.png) no-repeat 0 4px;
}
li ul{
    margin:0 0 0 30px;
    list-style:disc;
}
li ul li{
    padding-left:0;
    background:none;
}@media print{
ul {
    list-style:disc;
    margin-left:30px;
}
ul li {
    padding-left:0px;
    background:none;
}
} /* end print */

.container {
	width: 960px;
	margin: 0px auto; 
}

.header {
	padding: 20px;
	height:80px;
}
.content {
	padding: 0px 10px 10px 10px;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0;
	font-size:80%;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
#slideshow {
    position:relative;
    height:350px;
	margin-left:30px;
}

#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;
}

