/*
	Styles used when javascript is disabled
*/

.fixed_height 
{
	overflow:auto;	 	
	width: 430px;	
	height: 420px;	
}

.fixed_height .panel
{
	width: 380px;
}

.fixed_height .panel img
{
	width: 360px;
	height: 195px;	
}


.leftLink, .rightLink
{
	visibility:hidden;
}


/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/
.scrollable 
{
	
	/* required settings */
	position:relative;
	overflow:hidden;	 	
	width: 430px;	
	height: 400px;	
	
	float:left;
	background-color: #000000;
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/

.scrollable .items 
{	
	/* this cannot be too large */
	width:20000em;	
	position:absolute;
}

/* single scrollable item */

.panel 
{
	float:left;
	
	width:410px;
	margin-right: 10px;
	padding: 10px 10px 10px 10px;
	
}

	
	
	.panel:active 
	{
		background-color:#9CCA68;
	}
	
	.panel h3 a
	{
		color: #9CCA68;
	}
	
	.panel h3 a:hover
	{
		color: #9CCA68;
	}
	
	.panel img
	{
		margin: 0px 0px 9px 0px;
		border: 5px solid #ffffff;
		width: 400px;
		height: 217px;
	}
	

/* active item */


/* navigator */


/* position and dimensions of the navigator */
.navi 
{
	margin-bottom: 0px;
	overflow: auto;
}


	/* items inside navigator */
	.navi a 
	{
		float:left;
		display:block;
		margin:0px 3px 10px 0px;
		padding: 3px 3px 3px 3px;
		background-color:#b5cb9b;
		color:#172323;
		text-decoration: none;
		font-size: 1em;
		font-weight: bold;
	}
	
		/* mouseover state */
		.navi a:hover 
		{
			background-color:#9CCA68;          
		}
		
		/* active state (current page state) */
		.navi a.active 
		{
			background-color:#9CCA68;     
		} 	

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next
{
	display:block;
	margin:10px 3px 0px 0px;
	background-color:#b5cb9b;
	color:#172323;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	visibility:visible;
}

	a.prev
	{
		float:left;
		padding: 3px 3px 3px 12px;
		background-image: url(/generic/common/images/prev-arrow.gif);
		background-position: center left;
		background-repeat: no-repeat;
		cursor: pointer;
	}
	
	a.next
	{
		float:right;
		padding: 3px 12px 3px 3px;
		background-image: url(/generic/common/images/next-arrow.gif);
		background-position: center right;
		background-repeat: no-repeat;
		cursor: pointer;
	}

		/* mouseover state */
		a.prev:hover
		{
			background-color:#9CCA68;	
			background-image: url(/generic/common/images/prev-arrow_over.gif);	
		}
		a.next:hover
		{
			background-color:#9CCA68;
			background-image: url(/generic/common/images/next-arrow_over.gif);	
		}
		
	/* disabled navigational button */
	a.disabled 
	{
		visibility:hidden !important;		
	}




