@charset "UTF-8";
/* CSS Document */

.main_image {
	width: 695px;
	height: 360px;
	float: left;
	background: #EEE;
	position: relative;
	overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
	color: #fff;
	padding: 20px 20px 19px 20px;
	margin: 0;
}
.main_image h4 {
	font-size: 1.5em;
	font-weight: normal;
	margin: 0 0 5px 0;
	padding: 20px 20px 0 20px;
	color: #333;
}
.main_image p {
	color: #666; font-size: 0.81em; line-height: 1.25em;
	padding: 10px 250px 20px 20px;
	margin: 0;
}

.main_image_col	{width: 185px; padding: 0; margin: 0 0 0 20px; background: #FFF; float: left;}

.main_image_col p {
	color: #666; font-size: 0.81em; line-height: 1.25em;
	padding: 10px 20px;
	margin: 0;
}

.block small { /*--We'll be using this same style on our thumbnail list--*/
	font-size: 0.75em;
	padding: 0 10px;
	color: #666;
	/* background: url(icon_calendar.gif) no-repeat 0 center;*/
}
.main_image .block small {margin-left: 10px; 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--*/
	margin: 20px 20px 20px 21px;
	padding: 0;
	width: 693px;
}
.main_image .block{
	width: 100%;
	background: #FFF;
}
.main_image a.collapse { /*--This is our hide/show tab--*/
	background: url(../images/homepage_gallery/button_close.png) no-repeat left top;
	height: 30px;
	width: 68px;
	text-indent: -99999px;
	position: absolute;
	top: -30px;
	right: 20px;
}
.main_image a.show {background: url(../images/homepage_gallery/button_open.png) no-repeat left top}



.image_thumb {
	float: left;
	width: 225px;
	background: #f0f0f0;
	padding: 0;
	margin:
}
.image_thumb img {
	padding: 5px;
	background: #fff;
	float: left;
}
.image_thumb ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.image_thumb ul li{
	margin: 0;
	padding: 10px;
	background: #FFF url(../images/homepage_gallery/text_tab_bg.png) repeat-x;
	width: 205px;
	float: left;
	border-bottom: 1px solid #FFF;
}
.image_thumb ul li.hover { /*--Hover State--*/
	background: #ddd;
	cursor: pointer;
}
.image_thumb ul li.active { /*--Active State--*/
	background: #EEE;
	cursor: default;
}
html .image_thumb ul li h4 {
	font-size: 1em;
	font-weight: normal;
	margin: 5px 0;
	padding: 0 0 0 10px;
	color: #333;
}
.image_thumb ul li .block {
	float: left;
	margin-left: 10px;
	padding: 10px 10px 9px 0;
	width: 170px;
}
.image_thumb ul li p{display: none;}/*--Hide the description on the list items--*/

.image_thumb .main_image_col	{display: none;}