.main_image {
    width: 500px;
    height: 320px;
    float: left;
    background: #FFF;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
    color: #fff;
}
.main_image p {
    font-size: 12px;
    line-height: 14px;
    padding: 5px;
    margin: 0;
	border: 0px solid #33FF00;
}
.block small { /*--We'll be using this same style on our thumbnail list--*/
    font-size: 14px;
    padding: 0 0 0 10px;
    background: url(icon_calendar.gif) no-repeat 0 center;
}
.main_image .block small {margin-left: 10px;}
.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--*/
	border: 0px solid #33FF00;
}
.main_image .block{
    width: 100%;
    background: #111;
    border-top: 1px solid #000;
}
.main_image a.collapse { /*--This is our hide/show tab--*/
    background: url(btn_collapse.gif) no-repeat left top;
    height: 22px;
    width: 37px;
    text-indent: -99999px;
    position: absolute;
    top: -22px;
    right: 20px;
}
.main_image a.show {
 background-position: left bottom;
 
 }

/*////////////////////////////////////////////////////////////*/
.image_thumb {
overflow:hidden;
    float: left;
    width: 210px;
    background: #f0f0f0;
	border:0px solid #00CC00;
}
.image_thumb img {
    border: 1px solid #FFF;
    float: left;
}
.image_thumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.image_thumb ul li{
    margin: 0;
    padding: 12px 10px;
    background: url(selec2.png);
    width: 190px;
    float: left;
	background-position: bottom right;
	color:#2667BB;
	height:56px;
	border:0px solid #00CC00;
}
.image_thumb ul li.hover { /*--Hover State--*/
    background: #ddd;
    cursor: pointer;
	
}
.image_thumb ul li.active { /*--Active State--*/
    background: #fff;
    cursor: default;
	background: url(selec.png);
	background-position: bottom right;
	color:#FFF;
}
html .image_thumb ul li h2 {
	float: left;
	font-size: 12px;
	font-weight:normal;
	margin:0px 0px 0px 0px;
	border:0px solid #00CC00;
	width:105px;
	padding-left: 5px;
}
.image_thumb ul li .block {
    float: left;
	border:0px solid #333300;
	width:100px;
}
.main_image h2 {
	font-weight:bold;
	font-size: 17px;
	padding: 0px 5px 0px 5px;
	color:#FFF;
	margin:0;
}
.image_thumb ul li p{display: none;}/*--Hide the description on the list items--*/

