﻿label.selector {
    float: left;
    padding: 5px 10px;
}

/* remove the list style */
ul.selector {
    padding: 0;
    position: relative;
    top: 2px;
    margin: 0;
    float: left;
	list-style: none;
}
	
/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
ul.selector li {
	float: left; 
	display: inline; 
    list-style: none;
	position: relative;
	z-index: 500; 
	margin: 0px 2px;
}
		
/* this is the parent menu */
ul.selector li a {
    padding: 5px 10px;
    font-weight: bold;
    text-decoration: none;
    background-color: #e8eef4;
    color: #034af3;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
}

ul.selector li a:hover {
    background-color: #fff;
    text-decoration: none;
}

ul.selector li a:active {
    background-color: #a6e2a6;
    text-decoration: none;
}

/* you can make a different style for default selected value */
ul.selector a.selected {
	color:#f00;
}
	
/* submenu, it's hidden by default */
ul.selector ul {
	position: absolute; 
    margin: 1px -2px;
	display: none; 
	padding: 0px;
	list-style: none;
}
		
ul.selector ul li {
	min-width: 300px;
	border-top: 0px solid #fff;
    background-color: white;
}
		
/* display block will make the link fill the whole area of LI */
ul.selector ul a {
	display: block;  
	color: #034af3;
    border-radius: 0;
}

#VersePanel div:nth-child(odd) {
    background-color: lightgray;
}

#VersePanel div:nth-child(even) {
    background-color: white;
}
