/* @override http://localhost:8000/static/css/browse.css */

#browse_map {
	height: 500px;
	border: 1px solid #CBDBE2;
}

a.selected {
	text-decoration: none;
	font-weight: bold;
}

/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.scrollable {
	/* required settings */
	position: relative;
	overflow: hidden;
	height: 168px;
}

/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/

.scrollNav input {
	position: relative;
	top: 50px;
	height: 40px;
	width: 40px;
	margin: 0;
	padding: 0;
	border:  none;
}

.scrollNav input.prevPage {
	background: white url('/static/images/round-left.gif') no-repeat top;
}

.scrollNav input.nextPage {
	background: white url('/static/images/round-right.gif') no-repeat top;
}

.scrollNav input.disabled {
	display: none;
}

/*
.scrollNav input.prevPage.disabled {
	background: white url('/static/images/navigation-controls-click_02.png') no-repeat top;
}
                
.scrollNav input.nextPage.disabled {
	background: white url('/static/images/navigation-controls-click_03.png') no-repeat top;
}                                                                                             
*/


.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.scrollable .item {
	float:left;
	margin: 5px;
	padding: 4px;
	border:1px solid #9ebfd2;
	cursor:pointer;
	width: 144px;
	height:148px;
   	overflow:hidden;	
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	position:relative;
}

.item p {
	padding:1px;
	line-height:1em;
	font-size: 0.7em;
}

.item img {
	float: left;
	padding: 0px;
}

img.typeIcon {
	margin-left: 16px;
	margin-bottom: 5px;
}

#query_type, #days {
	line-height: 1.2em;
}

p.trackName {
	font-size: 1em;
	padding-top: 5px;
	height: 1em;
	overflow: hidden;
}

/* active item */
.scrollable .active {
	border:2px solid #000;
	z-index:9999;
}

.bottomRight {
	text-align: right;
	position: absolute;
	bottom: 4px;
	right: 4px;
}
