/* Example[] Avoid printing URLs */
@media print {
  a[href]:after {
    content: none
  }
}
/* Example[] Custom Navbar */
.navbar-custom {
	background-color:#fbf6b6;
	color:#804000;
	border-radius:0;
}

.navbar-custom .navbar-nav > li > a {
	color:#804000;
}
.navbar-custom .navbar-nav > .active > a, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus {
  color: firebrick; /* #444 */
	background-color: #F0F0F0;
}
.navbar-custom .navbar-brand {
  color:#804000;
}
.navbar-custom .navbar-toggle .icon-bar {
	background-color: #804000; /* hamburger */
}
.navbar-toggle:before {
	content:"Menu";
	left:-50px;
	top:4px;
	position:absolute;
	width:50px;
}
/* Example[] remove lines between table rows */
.table-custom table th, table td { 
     border-top-style: none !important; 
 }
