.container{
padding:0px;
margin:0px;
}

.main_image {
    width: 468px;
    min-height:248px;
	float: left;
    background: #background-color:#fff;;
    position: relative;
    overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
    color: #fff;
	/*border-right: 8px solid #fff;*/
}
.main_image h2 {     /* HEADING FOR THE DESCRIPTION -------------currently not being displayed*/
    font-size: 17px;
    font-weight: BOLD;
    margin: 0 0 5px;
    /*padding: 10px;*/

	color:#F0AD37;
	font-family:Arial, Helvetica, sans-serif;
	display:none;
}
.main_image p {
    font-size: 14px;
    line-height: 1em;
   /* padding: 10px;*/
    margin: 10px;
	font-family:Arial, Helvetica, sans-serif;
	
}
.block small { /*--We'll be using this same style on our thumbnail list--*/
    font-size: 12px;
    padding: 0 0 0 20px;
    background: url(/images/icon_calendar.gif) no-repeat 0 center;
		font-family:Arial, Helvetica, sans-serif;
		display:none;

	
}

.main_image .block small {margin-left: 10px;}
.main_image .desc{ 
    position: absolute;
    bottom: 10;
    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:solid thin red;*/
}
.main_image .block{/*DESCRIPTION CONTAINER WHICH POPS ONCE CLICKED ON */
    width: 100%;
    background: #21427b;
    border-top: 1px solid #F0AD37;
	height:50px;
}
.main_image a.collapse { /*--This is our hide/show tab--*/
    background: url(/images/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;}






/*THUMBNAIL STYLES */

.image_thumb {
    float: right;
    width: 232px;
    background: #f0f0f0;
    border-right: 1px solid #fff;
    border-top: 1px solid #ccc;
}
.image_thumb img {
    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:0px;
    background: #f0f0f0 url(/images/nav_a.gif) repeat-x;
    width: 232px;
    float: left;
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #fff;
    border-right: 1px solid #ccc;
	    border-left : 1px solid #ccc;
	 /*border: 1px solid red;*/
}
.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-size: 12pt;
	font-family:Arial, Helvetica, sans-serif;
    margin: 10px 0;
    padding: 0;
	color:#323334;
	/*border: 1px solid red;*/
	
	/*white-space:nowrap;
	margin-left:0px;*/
}
.image_thumb ul li .block {
    float: left;

    padding: 0;
    width: 162px;
	font-size:10px;

	padding-left:8px;

}
.image_thumb ul li p{display: none;}/*--Hide the description on the list items--*/