/* Scrollable CSS */

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	float:left;		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:18px;
	height:18px;
	background:url(/annualreport/images/left.png) no-repeat;
	float:left;
	margin:43px 8px;
	cursor:pointer;
}

/* 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(/annualreport/images/right.png);
	clear:right;	
}



/*********** navigator ***********/


/* position and dimensions of the navigator */
div.navi {
	margin-left:328px;
	width:200px;
	height:20px;
    margin-top:10px;
}


/* items inside navigator */
div.navi a {
	width:8px;
	height:8px;
	float:left;
	margin:3px;
	background:url(/annualreport/images/navigator.png) 0 0 no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 -8px;      
}

/* active state (current page state) */
div.navi a.active {
	background-position:0 -16px;     
} 	

/* root element for the whole scrollable setup */
div.scrollable {
 position:relative;
 overflow:hidden;
 width: 646px;
 height:540px;
}

/*
 root element for scrollable items. It is
 absolutely positioned with large width.
*/
#thumbs {
 position:absolute;
 width:20000em;
 clear:both;
}

/* custom positioning for navigational links */
a.prev, a.next {
 margin-top:50px;
}



/* single item */
#thumbs div {
 float:left;
 width:214px;
 height:540px;
 background:#fff;
 color:#fff;
 border:1px solid #fff;
 cursor:pointer;
}

/* style when mouse is over the item */
#thumbs div.hover {
 background-color:#eee;
}

/* style when element is active (clicked) */
#thumbs div.active {
 background-color:#B9D2DB;
 cursor:default;
}

#thumbs h3 {
 margin:10px;
 font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana,arial,sans-serif;
 font-size:10px;
 color:#336699;
 font-weight: bold;
  
}

#thumbs p {
 margin:12px;
 font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana,arial,sans-serif;
 font-size:13px;
 color:#666666;
}

#thumbs li {
 margin:12px;
 font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana,arial,sans-serif;
 font-size:10px;
 list-style:none;
 }

#thumbs span a{font-size:13px;}


/* SMALL THUMB NAV */

/* this makes it possible to add next button beside scrollable */
div.scrollableSmall {
	float:left;		
}

div.scrollableSmall {
 position:relative;
 overflow:hidden;
 width: 646px;
 height:180px;
}


#thumbsSmall div {
 float:left;
 width:214px;
 height:180px;
 background:#fff;
 color:#fff;
 border:1px solid #fff;
 cursor:pointer;
}

/* style when mouse is over the item */
#thumbsSmall {
	position:absolute;
	width:20000em;
	clear:both;
	left: -3px;
}

#thumbsSmall div.hover {
 background-color:#eee;
}

/* style when element is active (clicked) */
#thumbsSmall div.active {
 background-color:#B9D2DB;
 cursor:default;
}

#thumbsSmall h3 {
 margin:10px;
 font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana,arial,sans-serif;
 font-size:10px;
 color:#336699;
 font-weight: bold;
  
}

#thumbsSmall p {
 margin:12px;
 font-family:"Lucida Grande","Lucida Sans Unicode","bitstream vera sans","trebuchet ms",verdana,arial,sans-serif;
 font-size:13px;
 color:#666666;
}

#thumbsSmall span a{font-size:13px;}

#centerReport {margin-left:110px;}
