/* Course overview tabbed accordion updated for ID7 */
/* Gavin Wray, ITS Web Team, 30 Oct 2015 */

/* Small screens and default styles first */
.nav-tabs li {
   	margin: 10px 5px 0 0;
}
.nav-tabs li a {
	padding: 5px 10px;
    font-size: 1em;
    color: #706577;
    background: #eae8eb;
    border-bottom: none;
}
.nav-tabs li.active a {
    color: #706577;
    border-bottom: 3px solid #fff;
    margin-bottom: -3px;
}
.tab-pane {
    margin-top: 20px;
}
.panel {
	margin-bottom: 10px;
	background-color: #fff;
}
.panel-heading {
    margin: 0;
    padding: 0;
}
.panel-heading h4.panel-title a { 
    display:block!important; 
    padding:15px; 
    background:#eae8eb;   
}
.panel-heading h4.panel-title a:hover {  
    background: #d2c7d8;
}
.panel-body { 
    padding: 15px 15px 20px 15px;
}

/* Medium screens and above */
@media (min-width:601px) {
	.nav-tabs li {
   		margin: 10px 15px 0 0;
	}
	.nav-tabs li a {
    padding: 10px 20px;
    font-size: 1.25em;
	}
}

.collapsing {
	position: relative;
  	height: 0;
  	overflow: hidden;
  	-webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
  	-webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
  	-webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
}
.collapse {
	position: relative;
  	height: 0;
  	overflow: hidden;
  	-webkit-transition: height 0.35s ease;
  	-moz-transition: height 0.35s ease;
  	-o-transition: height 0.35s ease;
  	transition: height 0.35s ease;
}
.collapse.in {
	height: auto;
}