@charset "utf-8";
/* CSS Document */

#slider1 {
    width: 800px; /* important to be same as image width */
    height: 500px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	border-color:#FFF;
	border-style:solid;
	border-width:5px;
}

#slider1Content {
    width: 800px; /* important to be same as image width or wider */
	top: 0;
	left: 0;
	margin-top:0;
	margin-left:-40px;
	position:absolute;
}
.slider1Image {
	position:absolute;
	display: none;
	left:40px;
}
.slider1Image span {
    position: absolute;
	font: 10px/15px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    background-color: #000;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
	-khtml-opacity: 0.8;
    opacity: 0.8;
    color: #fff;
    display: none;
}
.clear {
	clear: both;
}
.slider1Image span strong {
    font-size: 14px;
}
.left {
	top: 0;
    left: 0;
	width: 130px !important;
	height: 500px;
}

ul { list-style-type: none;}

#footer{
	width:800px;
	height:60px;
	background-color:#00772f;
	display:block;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#FFF;
}

#footer a{
	text-decoration:none;
	color:#FFF;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}