/* 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: 310px; /* important to be same as image width */
    height:96px; /* important to be same as image height */
	margin-bottom:0px;
    position: relative; /* important */
	overflow: hidden; /* important */
	text-align:center;

}

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

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

.sliderImage span {
    position: absolute;
    padding-top: 0px;
    width: 310px;  /* This is the width of the caption box  */
	height:96px; /* This is the height of the caption box  */
    background-color: none;  /* 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=100); -moz-opacity: 0.; -khtml-opacity: 0.; opacity: 0.;
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:15px;
	line-height:130%;
    color: #00ffff; /* This is the color of the attribution in the quote box */
    display: none;
}

.sliderImage span strong { 
	color:#000;  /* This is the color of the quote text in the quote box */
	font-size: 15px; /* This is the font size of the title text in the caption box */
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height:130%;
	}

.clear { clear: both; }


.top { top: 0; left: 0px; }  /* 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; }

