/* Example[] Avoid printing URLs */
@media print {
  a[href]:after {
    content: none
  }
  .no-print, .no-print * {
    display: none !important;
  }
}
/* Example[] Custom Navbar */
.navbar-custom {
	background-color:#fbf6b6;
	color:darkblue;
	border-radius:0;
}

.navbar-custom .navbar-nav > li > a {
	color:darkblue;
}
.navbar-custom .navbar-nav > .active > a, .navbar-nav > .active > a:hover, .navbar-nav > .active > a:focus {
	background-color:lightgray;
}
.navbar-custom .navbar-brand {
  color:darkblue;
}
.navbar-custom .navbar-toggle .icon-bar {
	background-color: darkblue; /* 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: none !important; 
 }

legend.scheduler-border { /* Use Fieldset Legend with bootstrap */
    width:inherit; /* Or auto - default is 100% */
    padding:0 10px; /* To give a bit of padding on the left and right */
    border-bottom:none;
}

/* Example[] center an image */
/* Note that it cannot be centered if the width is set to 100% (full-width). */
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 99%;
}
