/* Timothy Framework - www.timothyframework.com */
/* This work is licensed under the MIT License - http://www.opensource.org/licenses/mit-license.php */


/* Color Legend */




#slider {
    width: 1000px; /* important to be same as image width */
    height: 250px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	text-align:left;

}

#sliderContent {
    width: 1000px; /* important to be same as image width or wider */
    position: absolute;
	top:0;
	margin-left: -28px;
}

.sliderImage {
    float: left;
    position: relative;
	display: none;
}

.sliderImage span {
	position: absolute;
	padding: 1px 2px 1px 15px;
	width: 550px;  /* This is the width of the caption box  */
	height:150px; /* This is the height of the caption box  */
	background-color: #000;  /* This sets the background color of the semi transparent box */
	/* If you do not want the transparent content field to appear, change all opacity values to 0 */
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:15px;
	line-height:170%;
	color: #fff; /* This is the color of the text in the caption box */
	display: none;
	border-radius:5px;
	border:1px #ccc solid;
		  -moz-box-shadow: 3px 3px 3px #000;
  -webkit-box-shadow: 3px 3px 3px #000;
  box-shadow: 3px 3px 3px #000;
}

.sliderImage span strong { 

	text-align:left;
	font-family:Tahoma, Geneva, sans-serif;
	text-transform:uppercase;
	color: #fff;

 /* This is the color of the title text in the caption box */
	font-size: 20px; /* This is the font size of the title text in the caption box */
	line-height:80%;
	}

.clear { clear: both; }


.top { top: 10px; left: 415px; }  /* This sets the upper left corner of the caption box */

.bottom { bottom: 0; left: 0; } /* This sets the lower left corner of the caption box */

#slider ul 		{ list-style-type: none;}
#slider ul li 	{ margin-left:0px; }
