/**
 * Project:     West Vancouver Concert Band
 * Date:        2010-06-10
 * revised:     2018-11-05
 * File name:   wvb-nav.css
 * Description: style sheet for navigation
 */

a:focus {
	outline: none;
}

/* --- Navbar ---*/
ul.nav {
	width: 190px;           /* set menu item width */
	list-style-type: none;  /* remove bullets */
	margin: -3px 0 0 0;     /* zero <li> margin and padding */
	padding: 0;
}

ul.nav li {
	height: 37px;
	font: bolder 16px arial, sans-serif;
	text-indent: 40px;
	border-bottom: 1px #C1AC79 dashed;
}

ul.nav a, #nav-current {
	display: block;
	width: 190px;
	line-height: 37px;
	text-decoration: none;
}


ul.nav #nav-current {
	color: #1E465A;
	background: url("../images/nav/nav-bg.png") -190px center no-repeat;
}


.nav a:link, .nav a:visited {
	color: #3A6878;
	background: url("../images/nav/nav-bg.png") 0 center no-repeat;
}

.nav a:hover {
	color: #AE4359;
	background: url("../images/nav/nav-bg.png") -380px center no-repeat;
	border-bottom: none;
}

.nav a:active {
	color: #DE892A;
	background: url("../images/nav/nav-bg.png") -570px center no-repeat;
}


/*--- Page Links ---*/
a, a:link, a:visited, a:active {
	color: #BE1414;
	text-decoration: none;
}

a:hover {
	color: #FF0000;
	border-bottom: 1px solid red;
}

/* add this to image links to prevent border-bottom on hover */
.no-hover {
	border-bottom: none !important;
}
