/* container for slides */
.images {
	border:1px solid #666;
	position:relative;
	height:650px;
	width:780px;
	float:left;
	cursor:pointer;
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	-moz-box-shadow:0 0 25px #666;
	-webkit-box-shadow:0 0 25px #666;
	background-color: #424242;
	background-image: url(../images/imgbgBlack.png);
	background-repeat: repeat-x;
	background-position: bottom;
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;
	margin:14px;
	height:590px;
	font-size:12px;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
.images img {
	border: 1px solid #FFFFFF;
}
.images .caption {
	color: #FFFFFF;
	padding-right: 5px;
	padding-left: 5px;
}
.images .date {
	color: #CCCCCC;
	font-style: normal;
	line-height: 2em;
	text-align: right;
	margin-top: 5px;
	padding-right:5px;
	padding-left: 5px;
}

/* header */
.images h3 {
	font-size:22px;
	font-weight:normal;
	color:#CCCCCC;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
	padding-right: 5px;
	padding-left: 5px;
}

/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	width: 70%;
	margin-right: auto;
	margin-left: auto;
}
.container .tabs p {
	text-align: center;
}

/* single tab */
.tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:inline;
	font-size:1px;
	background-image: url(../images/navigator01.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}

/* mouseover state */
.tabs a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.tabs a.current {
	background-position:0 -16px;     
} 	


/* prev and next buttons */
.forward, .backward {
	float:left;
	margin-top:140px;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;
	background-image: url(../images/hori_large.png);
	background-repeat: no-repeat;
}

/* next */
.forward 				{ background-position: 0 -30px; clear:right; }
.forward:hover 		{ background-position:-30px -30px; }
.forward:active 	 	{ background-position:-60px -30px; } 


/* prev */
.backward:hover  		{ background-position:-30px 0; }
.backward:active  	{ background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}

.module {
	float:left;
	width:260px;
	text-align:left;
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 4px;
	padding-bottom: 0;
	padding-left: 4px;
  }.module p {
	font-size: 85%;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
}
.module p.nav {
	letter-spacing: 0.15em;
	text-align: center;
	word-spacing: 0.2em;
}
.module p.nav a {
	text-decoration: none;
	text-transform: uppercase;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #999999;
	display: block;
	padding-top: 4px;
	padding-bottom: 4px;
}
a, a:link, a:visited {
	color: #336699;
	text-decoration: none;
}

a:hover {
	color: #990000;
}
a:active {
	color: #666666;
}


