/*
	Adapted from Bootstrap v3.3.7
*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

ul#year-navigation {
	margin-top: 0;
	margin-left: 0;
	margin-bottom: 10px;
}
ul#year-navigation ul {
	margin-bottom: 0;
}

.nav {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}
.nav > li {
	position: relative;
	display: block;
}
.nav > li > a {
	position: relative;
	display: block;
	padding: 10px 15px;
}
.nav > li > a:hover,
.nav > li > a:focus {
	text-decoration: none;
	background-color: #eee;
}
.nav .nav-divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

.nav-tabs {
  	border-bottom: 1px solid #ddd;
}
.nav-tabs > li {
	float: left;
	margin-bottom: -1px;
}
.nav-tabs > li > a {
	margin-right: 2px;
	line-height: 1.42857143;
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  	border-color: #eee #eee #ddd;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
	color: #555;
	cursor: default;
	background-color: #fff;
	border: 1px solid #ddd;
	border-bottom-color: transparent;
}
.nav:before,
.nav:after {
	display: table;
	content: " ";
}
.nav:after {
	clear: both;
}

.col-xs-11, .col-sm-11 {
	position: relative;
	min-height: 1px;
	padding-top: 25px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-xs-11, .col-sm-11 {
	float: left;
	width: 91.66666667%;
}
.col-xs-offset-0, .col-sm-offset-0 {
  	margin-left: 0%;
}

.tab-content > .tab-pane {
	display: none;
}
.tab-content > .active {
  	display: block;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
       -o-transition: opacity .15s linear;
          transition: opacity .15s linear;
}
.fade.in {
  	opacity: 1;
}