/*stylesheet for cycle.js*/
.marquee {
padding:10px;
}
.main_image {
    width: 529px;
    height: 395px;
    float: left;
    background: #333;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
    color: #fff;
}

.main_image img {width:529px;}
.main_image h2 {
    font-family:Arial !important;
	font-size:27px !important;
	line-height:30px;
	margin-bottom:-5px;
	margin-top:-4px;
	padding:0;
}
.main_image p {
	color:#CCCCCC;
	font-family:Arial;
	font-size:13px;
	line-height:17px;
	padding-top:5px;
}

.block small { /*--We'll be using this same style on our thumbnail list--*/
    font-size: .7em;
    padding: 5px 0 0 0;
    /*background: url(icon_calendar.gif) no-repeat 0 center;*/
}
.main_image .block small {
	margin: 5px 5px 5px 0;
	line-height:17px;
	font-family:Arial;
}

.main_image .desc{
    position: absolute;
    bottom: 0;
    left: 0; /*--Stick the desc class to the bottom of our main image container--*/
    width: 100%;
    display: none; /*--Hide description by default, if js is enabled, we will show this--*/
}

.main_image .block{
    width: 100%;
    background: #111;
    border-top: 1px solid #000;
    padding:10px;
}

.image_thumb {
    float: left;
    width: 74px;
    background: #f0f0f0;
    border-right: 1px solid #fff;
    border-top: 1px solid #ccc;
}
.image_thumb img {
    border: 1px solid #ccc;
    padding: 5px;
    background: #fff;
    float: left;
	width:50px;
	height:40px;
}
.image_thumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.image_thumb ul li{
    margin: 0;
    padding: 6px 5px;
    background: #f0f0f0;
    width: 65px;
    float: left;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #fff;
    border-right: 1px solid #ccc;
}

.image_thumb ul li.hover { /*--Hover State--*/
    background: #ddd;
    /*background:url('/sitewide/images/site-images/arrow-left-white.gif') no-repeat scroll 0 0 transparent;*/
    cursor: pointer;
}
.image_thumb ul li.active { /*--Active State--*/
    background: #000;
    cursor: default;
}

.image_thumb ul li .block {
    float: left;
    margin-left: 5px;
    padding: 0;
	width:120px;
	display:none; /*--Hide the description on the list items--*/
}
