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

#slider1 {
	width: 564px; /* important to be same as image width */
	height: 388px; /* important to be same as image height */
	position: relative; /* important */
	overflow: hidden; /* important */
	top: 0px;
}

#slider1Content {
   width: 564px; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: -16; /* important */
   margin-left: -40; /* important */
}

.slider1Image {
	float: left; /* important */
	position: relative; /* important */
	display: none; /* important */
	top: -10px;
}

.slider1Image span {
   position: absolute; /* important */
   left: 0;
   font: 13px/22px Arial, Helvetica, sans-serif;
   padding: 25px 25px;
   width: 250px;
   background-color: #000;
   filter: alpha(opacity=70); /* here you can set the opacity of box with text */
   -moz-opacity: 0.7; /* here you can set the opacity of box with text */
   -khtml-opacity: 0.7; /* here you can set the opacity of box with text */
   opacity: 0.7; /* here you can set the opacity of box with text */
   color: #fff;
   
   display: none; /* important */
   top: 0;

   /*
       if you put
       top: 0; -> the box with text will be shown at the top of the image
       if you put
       bottom: 0; -> the box with text will be shown at the bottom of the image
   */
}

.clear {
   clear: both;
} 

.sliderImage span strong, .slider1Image span strong, .slider2Image span strong {
    font-size: 16px;
}
.slider1Image A:link {text-decoration: underline; color: #b2fd90}
.slider1Image A:visited {text-decoration:underline; color: #b2fd90}
.slider1Image A:active {text-decoration: underline; color: #7cdcff}
.slider1Image A:hover {text-decoration: underline; color: #7cdcff;}

.myheading {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	border-bottom: 6px;
	color: #FFFFFF;
	padding-bottom: 6px;
	margin-bottom: 6px;
}

