/* everything is constructed with a single background image */

/* root element for tabs */



/* panes */
#flowpanes {
	/*width:775px;*/
	width:675px;
	height:223px;
	margin: 0px auto;	
	display: block;
}


/* single pane */
#flowpanes div {
	display:none;	
	color:#fff;	
	margin:0px;
}

/* some decorations for elements inside single pane */
#flowpanes div h2 {
	font-weight:normal;
	color:#ddd;
	letter-spacing:1px;
	margin:10px 0 0 0;
	font-size:22px;	
}

#flowpanes a {
	color:#cc9;		
	font-size:14px;
}

#flowpanes p, #flowpanes samp {
	color:#ccc;		
}

#flowpanes div.narrow {
	padding-right:160px;		
}



/* override the root element to enable scrolling */
#flowpanes {
	position:relative;
	overflow:hidden;
}

/* override single pane */
#flowpanes div {
	float:left;
	display:block;
	/*width:775px;*/
	width:675px;
	height: 223px;
	cursor:pointer;
	font-size:14px;
}

/* our additional wrapper element for the items */
#flowpanes .items {
	width:20000em;
	position:absolute;
	clear:both;
	margin:0;
	padding:0;
}

#flowpanes .less, #flowpanes .less a {
	color:#999 !important;
	font-size:11px;
}

/* NAVIGATOR */

#navBox {
	margin: 6px auto 3px auto;
	height: 20px;
	width: 370px;
	padding-left: 280px;

}

/* position and dimensions of the navigator */
.navi {
	height:20px;
	margin: 1px 4px 0px 4px;
}


/* items inside navigator */
.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(../images/navigator.png) 0 0 no-repeat;
	display:block;
	font-size:1px;
}

/* mouseover state */
.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
.navi a.active {
	background-position:0 -16px;     
}

/* BUTTONS */


button em {
	color:yellow;
	font-style:normal;
}

/* button.custom */
button.customPrev {
	text-indent: -9999px;
	background:transparent url(../images/prev_arrow.png) 0 0 no-repeat;	
	height:18px;	
	width:16px;	
	border:0;
	outline:0;
	display: block;
}

button.customPrev:hover {
	background-position:0 -18px;
}

button.customNext:hover {
	background-position:0 -18px;
}

button.customNext {
	text-indent: -9999px;
	background:transparent url(../images/next_arrow.png) 0 0 no-repeat;	
	height:18px;	
	width:16px;	
	border:0;
	outline:0;
	display: block;
}

button.custom span {
	position:relative;
	top:-1px;		

