@CHARSET "UTF-8";
.main_image {
    width: 465px;
    /* height: 312px; */
	height: 450px;
    float: left;
    background: #ddd;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
    color: #333;
	margin-top:5px;	
}
.main_image h2 {
    font-size: 1em;
    font-weight: bold;
    margin: 0 0 5px;
    padding: 0px 20px 5px 0px;
    color: #333;
}
.main_image p {
    font-size: 0.9em;
    line-height: 1.2em;
    /* padding: 10px; */
    margin: 0;
	
}

.main_image p a {
	color: #333;			    
}

.block small { /*--We'll be using this same style on our thumbnail list--*/
    font-size: 0.8em;
    
	
}

.block smalldesc { /*--We'll be using this same style on our thumbnail list--*/
   display:block;
    font-size: 0.8em;
    
	line-height:20px;
	
}

.main_image .block small {display:block;padding-left:0px;,}
.main_image .block small a {color: #333;}

.main_image .desc{
    position: absolute;
    bottom: 0;
    left: 0; /*--Stick the desc class to the bottom of our main image container--*/
    width: 435px;
    display: none; /*--Hide description by default, if js is enabled, we will show this--*/
	clear:both;
	background-color: #ddd;
	margin-left:20px;
	margin-right:20px;
	
	
}
.main_image .block{
    width: 100%;
    background: #ddd;
    border-top: 0px solid #000;
	height:80px;
}
.main_image a.collapse { /*--This is our hide/show tab--*/
    background: url(btn_collapse.gif) no-repeat left top;
    height: 27px;
    width: 93px;
    text-indent: -99999px;
    position: absolute;
    top: -27px;
    right: 20px;
}
.main_image a.show {background-position: left bottom;}

.image_thumb {
    float: left;
    width: 200px;
    background: #fff;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
	margin-top:4px;
}
.image_thumb img {
	margin: 8px 6px 8px 12px;
    border: 1px solid #ccc;
    padding: 0px;
    background: #fff;
    float: left;
}
.image_thumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.image_thumb ul li{
    margin: 0;
   /*  padding: 12px 10px; */
    background: #fff url(nav_a.gif) repeat-x;
    width: 265px;
    float: left;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.image_thumb ul li.hover { /*--Hover State--*/
    background: #ddd;
    cursor: pointer;
}
.image_thumb ul li.active { /*--Active State--*/
    background: #fff;
    cursor: default;
}
html .image_thumb ul li h2 {
	font-weight:bold;
    font-size: 0.7em;
    margin: 5px 0 0;
    padding: 0;
	line-height:10px;
    
}

.image_thumb ul li .block {
    float: left;
    margin-left: 5px;
    padding: 0;
    width: 170px;
}
.image_thumb ul li p{display: none;}/*--Hide the description on the list items--*/