@media screen {
  body {
    padding-top: 60px;
  }

  html, body {
    scroll-padding-top: 60px;
  }
}

/*
  Black Background on White text.
body {
	background-color: black;
	color: white;
}

 CSS link color (red) 
.link {
  color: #FF0000;
}

 CSS link hover (green) 
.link:hover {
  color: #00FF00;
}

*/

nav.navbar {
  background-color: black;
}

img.hcentered {
  margin-left: auto;
  margin-right: auto;
}

.shadowed {
  -webkit-box-shadow: 2px 2px 8px 8px gray;
  box-shadow: 2px 2px 8px 8px gray;
  margin-right: 15px;
  margin-bottom: 15px;
}

.video-wrapper {
  float: right;
	position: relative;
	padding-bottom: 27%; /* 56.25% is 16:9, this is 48% of that */
	padding-top: 25px;
	height: 0;
  width: 48%;
  margin: 1%;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.photo {
  margin: 1%;
}

.photo-caption {
  font-size: 75%;
  font-style: italic;
}

#navbar-logo {
  margin-top: -16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  min-height: 150px;
  overflow: hidden;
  width: 100%;
  min-width: 400px;
  max-width: 600px;
}

#navbar-logo.shrink {
  min-height: 55px;
}

#img-navbar-logo {
  width: 100%;
  min-width: 400px;
}

#footer {  
  font-size: 75%;
  margin-top: 16px;
}

.fixed {
  position: fixed;
}

/* sidebar */
.bs-docs-sidebar {
  padding-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* all links */
.bs-docs-sidebar .nav > li > a {
  color: #999;
  border-left: 2px solid transparent;
  padding: 4px 20px;
  font-size: 13px;
  font-weight: 400;
}

/* nested links */
.bs-docs-sidebar .nav .nav > li > a {
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 30px;
  font-size: 12px;
}

/* active & hover links */
.bs-docs-sidebar .nav > .active > a,
.bs-docs-sidebar .nav > li > a:hover,
.bs-docs-sidebar .nav > li > a:focus {
  color: #563d7c;
  text-decoration: none;
  background-color: transparent;
  border-left-color: #563d7c;
}

/* all active links */
.bs-docs-sidebar .nav > .active > a,
.bs-docs-sidebar .nav > .active:hover > a,
.bs-docs-sidebar .nav > .active:focus > a {
  font-weight: 700;
}

/* nested active links */
.bs-docs-sidebar .nav .nav > .active > a,
.bs-docs-sidebar .nav .nav > .active:hover > a,
.bs-docs-sidebar .nav .nav > .active:focus > a {
  font-weight: 500;
}

/* hide inactive nested list */
.bs-docs-sidebar .nav ul.nav {
  display: none;
}

/* show active nested list */
.bs-docs-sidebar .nav > .active > ul.nav {
  display: block;
}

/* align text */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

