
/* container for slides */
.images {
	background-color:#222222;
	border:1px solid #000000;
	position:relative;	
	height:150px;
	
	width:560px;
	float:left;	
	margin:15px;
	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;	
}

/* single slide */
.images div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	margin: auto;
	text-align: center;
	padding:15px;
	width:560px;
	height:150px;
	font-size:12px;
	// padding-bottom: 0px;
	// margin-bottom: -15px;
}

.images div p {
  float: right;
  color: #FFFFFF;
  text-align: justify;
  font: 11px "Trebuchet MS", Arial, sans-serif;
  width: 375px;
  margin-right: 30px;
}

.images div p a {
  color: #BA0000;
  font-weight: bold;
  text-decoration: none;
}

.images div p a:hover {
  color: #FFFFFF;
}

/* header */
.images h3, .images h3 a {
	font-size:18px;
	font-weight:bold;
	margin:0 0 10px 0;
	text-align: right;
	margin-right: 15px;
	margin-top: 3px;
	
  font-family: "Trebuchet MS",Arial,sans-serif;
  text-decoration: none;
}

.images h3 a {
  border: 2px solid #FFFFFF;
  padding: 3px 7px 3px 7px;
  background-color: #AAAAAA;
  color: #FFFFFF;
  -moz-border-radius: 10px;
	-webkit-border-radius: 10px;
}

.images h3 a:hover {
  background-color: #000000;
}


/* tabs (those little circles below slides) */
.tabs {
	clear:both;
	margin-left:330px;
	color: #FFFFFF;
}

/* single tab */
.tabs a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	display:block;
	font-size:1px;		
}

/* 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:75px;
	background:#fff url(/includes/marquesina/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* 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;		
}

