/*Chord Viewer CSS*/

#chord-viewer{
	
	clear:both;}

#chord-names{
	
}

#close-chord{
	padding-top: 6px;
	cursor:pointer;
	clear:both;
	float:right;
}

#chord-right {
width:150px;
float: left;
display:none;
}

#chord-image{
margin-left:auto;
margin-right:auto;

	
	width: 350px;
	height: 300px;
	display:block;
	background-color:#efefef;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #ddd;
	border-right-color: #ddd;
	border-bottom-color: #ddd;
	border-left-color: #ddd;
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 0px;
	padding-left: 8px;
}


/* outmost wrapper element */
#chord-scroll {
	background-color:#efefef;
	padding:10px 8px;
	width:140px;
	height:288px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #ddd;
	border-right-color: #ddd;
	border-bottom-color: #ddd;
	border-left-color: #ddd;
	display:none;
}

/* container for the scrollable items */
div.chords {
	
	height:190px;	
	margin-left:8px;
	margin-right:8px;
	margin-top:8px;	
	float:left;
	width:125px !important;
}



/* single item */
div.chords a {
	display:block;
	float:left;
	margin-right:8px;
	margin-bottom:16px;
	width:88px;
	height:80px;
	font-size:14px;
	color:#000;
	font-size: 10px;
	text-decoration:none;
	text-align:center;
	cursor:pointer;
}

div.chords a:hover {
	color:#999;	
}

div.chords a.active {
	
	color:#555;
	cursor:default;
}


/* next / prev buttons */
a.prev, a.next {
	display:block;
	width:30px;
	height:30px;
/*	float:left;*/
z-index:2;
	background-repeat:no-repeat;	
	
}

a.prev {
	background:url(/images/button-left.gif);
	margin-top: 0;
	
}

a.prev:hover {
	background:url(/images/button-left-over.gif);		
}

a.next {
margin-top: 208px;
	background:url(/images/button-right.gif);		
}

a.next:hover {
	background:url(/images/button-right-over.gif);		
}


