/* container for slides */
.images {
	background:#fff url(http://www.hijinks.com/~mark/2010/images/gradient/h300.png) repeat-x;
	border:0px solid #FFF;
	position:relative;	
	height:212px;
	width:921px;
	float:left;	
	margin:0px;
	cursor:pointer;
	
	/* CSS3 tweaks for modern browsers */
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}

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

/* header */
.images h3 {
	font-size:22px;
	font-weight:normal;
	margin:0 0 20px 0;
	color:#456;
}

/* tabs (those little circles below slides) */
.tabs {
	margin-left:460px;
}

/* single tab */
.tabs a {
	width:19px;
	height:32px;
	float:left;
	margin:0px;
	background:url(http://www.hijinks.com/~mark/2010/images/navigator_final.png) 0 0 no-repeat;
	display:block;
	font-size:1px;		
}

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

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


/* prev and next buttons */
.forward {
        float:left;
        margin-left:8px;
        margin-right:0px;
        margin-top:106px;
        background:url(http://www.hijinks.com/~mark/2010/images/hori_large_final.png) no-repeat;
        display:block;
        width:29px;
        height:32px;
        cursor:pointer;
        font-size:1px;
        text-indent:-9999em;
}
.backward {
	float:left;
	margin-left:0px;
	margin-right:8px;
	margin-top:106px;
	background:url(http://www.hijinks.com/~mark/2010/images/hori_large_final.png) no-repeat;
	display:block;
	width:29px;
	height:32px;
	cursor:pointer;
	font-size:1px;
	text-indent:-9999em;	
}

/* next */
.forward 				{ background-position: 0 -32px; clear:right; }
.forward:hover 				{ background-position:-29px -32px; }
.forward:active 	 		{ background-position:-58px -32px; } 


/* prev */
.backward 				{ background-position: 0px 0px; clear:left; }
.backward:hover  			{ background-position: -29px 0px; }
.backward:active  			{ background-position:-58px 0px; }

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


