/* container for slides */
.images {
	margin: 0px auto;
	/*background: #fff url(../images/jquery_tools/h300.png) repeat-x;*/
	background: #fff;
	border: 1px solid #666;
	position: relative;	
	height: 500px;
	
	width: 600px;
	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;	
}

.images #indent{
	font-size: 11px;
}

/* single slide */
.images div {
	text-align: left;
	display: none;
	position: absolute;
	top: 0;
	left: 0;	
	padding: 15px;
	font-size: 12px;
}

/* header */
.images h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 15px 0;
	line-height: 1.3em;
	color: #FF0000;
}

/* tabs (those little circles below slides) */
.tabs {
	clear: both;
}

/* single tab */
.tabs a {
	color: #FFF;
	margin: 5px;
}

.tabs a:hover {
	color: #FF0000;
	margin: 5px;
	text-decoration: underline;
}

/* active state (current page state) */
.tabs a.current {
	text-decoration: none;
	color: #FF0000
} 

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

/* next */
.forward  { 
	background: #fff url(../images/jquery_tools/forward-active.png) no-repeat;
	clear: right; 
}
.forward:hover { 
	background: #fff url(../images/jquery_tools/forward-hover.png) no-repeat;
}
.forward:active { 
	background: #fff url(../images/jquery_tools/forward-hover.png) no-repeat;
} 

/* prev */
.backward:hover { 
	background: #fff url(../images/jquery_tools/backward-hover.png) no-repeat;
}
.backward:active { 
	background: #fff url(../images/jquery_tools/backward-active.png) no-repeat;
}

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