﻿/*
	Origianl code from Designm.ag
	Source: http://designm.ag/tutorials/image-rotator-css-jquery/
	Demo: http://www.sohtanaka.com/web-design/examples/image-rotator/

	Modified by vitorccs on June 2009
	Modified by thlopes on June 2009
*/

/* MAIN_IMAGE SECTION */
.main_image {
	width: 468px;
	height: 239px;
	float: left;
	background: #333;
	position: relative;
	overflow: hidden; /*--Overflow hidden allows the description to toggle/tuck away as it slides down--*/
	color: #fff;
}
.main_image h2 {
	font-size: 2em;
	font-weight: normal;
	margin: 0;
	padding: 4px 10px 0 10px;
}
.main_image p {
	font-size: 1.2em;
	line-height: 1.6em;
	padding: 10px;
	margin: 0;
	color: #fff !important;
	padding: 0px 10px 2px 10px !important;
}

.block small { /*--We'll be using this same style on our thumbnail list--*/
	font-size: 1em;
	padding: 0 0 0 20px;
	background: url(icon_calendar.gif) no-repeat 0 center;
}
.main_image .headline 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--*/
}
.main_image .headline {
	width: 100%;
	background: #111;
	border-top: 1px solid #000;
}
.main_image a.show {background-position: left bottom;}

.main_image span {
	display: none;
}

/* IMAGE_THUMB */
.image_thumb {
	float: right;
}
.image_thumb img {
	border: 1px solid #ccc;
	padding: 5px;
	background: #fff;
	float: left;
}
.image_thumb ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.image_thumb ul li{
	margin: 10px 12px;
	display: block;
	text-align: center;
	background: #f0f0f0 url("/imagerotator/img/hover.png") 0 0;
}
.image_thumb ul li a{
	display: block;
	padding: 7px 7px 7px 20px;
	text-decoration: none;
	font-size: 110%;
	font-family: arial,tahoma,sans-serif,verdana;
	color: #036dab;
}
.image_thumb ul li.hover {
	cursor: pointer;
}
.image_thumb ul li.active {
	background: #f0f0f0 url("/imagerotator/img/active.png") 0 0;
	cursor: default;
}
.image_thumb ul li.active a {
	color: white;
}
html .image_thumb ul li h2 {
	font-size: 1.5em;
	margin: 5px 0;
	padding: 0;
	display: none;
}
.image_thumb ul li .block {
	display: none
}
.image_thumb ul li p{display: none;}/*--Hide the description on the list items--*/

