﻿/* this makes it possible to add next button beside scrollable */
div.scrollable {
	display: inline;
	float:left;	
	z-index: 0;
	overflow: auto;
	}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	float:left;
	margin:60px 10px;
	cursor:pointer;
	font-size:1px
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position:0px -18px;		
}

/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
}

/* next button uses another background image */
a.next, a.nextPage {
/*	background-image:url('http://www.fta.dot.gov/images/right.png'); */
	clear:right	
}

/* share buttons below left hand navigation */
#shareButtons{
	padding: 5px 0 5px 10px;
}
#shareButtons img{ 
	border:0px none;
}

/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:70px;
	width:250px;
	height:20px;
}


/* items inside navigator */
div.naviTabsContainer{
	margin-left: 85px;
}
ul.naviTabs { 
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: left;   
}
/* single tab */
ul.naviTabs li {     
	float: left;
	text-align: center;
}


/* link inside the tab. uses a background image */
ul.naviTabs li a { 
	outline:none;   
	color: #333;
	text-decoration: none;
	background: #eee;
	border: 1px solid #ccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 1.1em;
	font-family: Verdana;
	font-weight: bold;
	float: left;
	margin: 0px 10px 0px 0px;
	height: 1.1em;
	width: 1.1em;
	padding: 10px;
}

ul.naviTabs li a:hover {   
	text-decoration: none;
	border: 1px solid #818181;
}

ul.naviTabs li a.active {
	background: #cccccc;
	border: 1px solid #818181;
	margin-top: -2px;
}


/* mouseover state */
div.navi a:hover {
	background-position:0 -26;
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -52 !important;     
} 	

/* root element for the whole scrollable setup */
div.scrollable {  
	position:relative;
	overflow:hidden;
	width: 320px;	 
	height: 150px;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#thumbs {	
	position:absolute;
	width:20000em;	
	clear:both;
	z-index: 0;
}

/* custom positioning for navigational links */
a.prev, a.next {
	margin-top:118px;	
}



/* single item */
#thumbs div {
	float:left;
	width:320px;
	height:219px; 
	cursor:pointer
}

#thumbs div img {
	display: block;
}

/* style when mouse is over the item */
#thumbs div.hover {
	background-color:#444;	
}

/* style when element is active (clicked) */
#thumbs div.active {
	background-color:#066;
	cursor:default;
}

#thumbs .caption 
{
    font-size: 11px;
	position:relative;
	padding: 10px 10px;
	font-family: Arial;
	font-weight: normal;
	font-variant: normal;
	font-style: normal;
}

#thumbs .caption h3 {
	font-family: Arial;
	font-size: 11px;
	margin-bottom: -5px;
	margin-top: -3px;
	font-weight: bold;
    color:#00397C;
}


#thumbs .caption p {
	font-family: Arial;
	font-size: 12px;
	font-weight: normal;
	padding: 5px 0 5px 0;
}


#thumbs img{
	border:0px none;
}

