/* #################
   ### MAIN SECT ###
   ################# */
.rotatorWrapper {
	width:900px;
	
}   
.main_image {
    width: 599px;
    height: 379px;	
    float: left;
    background: #23283F;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
    color: #fff;
	border:solid 1px #8287A2;
	border-right-width:0;
	cursor:pointer;
}
.main_image h2 {
    font-size: 2em;
    font-weight: normal;
    margin: 0;
    padding: 10px 10px 0;
	color:#fff;
}
.main_image p {
    font-size: 1.2em;
    line-height: 1.6em;
    padding: 0 10px 10px;
    margin: 0;
}

.main_image .block small, .main_image .block span, .image_thumb  .block span{ display:none;}
.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;
}
.main_image a.collapse { /*--This is our hide/show tab--*/
    display:none;
	background: url(btn_collapse.gif) no-repeat left top;
    height: 27px;
    width: 93px;
    text-indent: -99999px;
    position: absolute;
    top: -27px;
    right: 20px;
	border:solid 2px red;
}
.main_image a.show {background-position: left bottom;}


/* ###################
   ### THUMBS SECT ###
   ################### */

.image_thumb {
    float: left;
    width: 300px;
    background: #f0f0f0;
}

.image_thumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.image_thumb ul li{
overflow:hidden;
    margin: 0;
    padding: 0;
    background: #f0f0f0 url(../images/thumb_bg.png) repeat-x;
    width: 100%;
    float: left;
    border: 1px solid #8287A2;
	height:74px;
}
.image_thumb ul li.hover { /*--Hover State--*/
    background: #ddd;
    cursor: pointer;
}
.image_thumb ul li.active { /*--Active State--*/
    background: #A9ACBE url(../images/thumb_bg.png) repeat-x bottom left;
    cursor: default;
}
html .image_thumb ul li h2 {
    font-size: 18px;
    margin: 0;
    padding: 0;
}
.image_thumb ul li .block {
    float: left;
    margin: 0 0 0 10px;
    padding:12px 5px 12px 10px;
	background: transparent;
	border-width:0;
	
}
.image_thumb ul li p{display: none;}/*--Hide the description on the list items--*/
