@CHARSET "UTF-8";
#nav-toggle-top{
    color: #FFFFFF;
    text-align: center;
    background-color: #af0004;
    height: 50px;
    line-height: 52px;
    cursor: pointer;
}
#nav-toggle-top > a{
	color: #FFFFFF;
	font-size: 16px;
	text-decoration: none;
}
.nav-container{
	width: 100%;
	min-height: 420px;
	display: flex;
}

/* Style the tab */
.tab {
  /* float: left; */
  border: 1px solid #ccc;
  border-right: none;
  /* background-color: #f6f6f6; */
  width: 400px;
  height: auto;
}

/* Style the buttons inside the tab */
.tab ul li a {
  display: block;
  color: #3e3e3e;
  padding: 12px 16px 12px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  text-decoration: none;
  min-height: 42px;
  font-weight: 600;
}

/* Change background color of buttons on hover */
.tab a:hover {
	transition:all 1s ease;
	background-color: #ebebeb;
	color: #000000;
}

/* Create an active/current "tab button" class */
.tab a.active {
	/* background-color: #ddd; */
}

.tab-show {
	display: block;
}

.tab-hidden {
  display: none;	
}
				
/* Style the tab content */
.tabcontent {
  /* float: left; */
  /* padding: 4px 15px 0 20px; */
  border: 1px solid #ccc;
  font-size: 18px;
  border-left: none;
  min-height: 300px;
  width: 100%;
}

.tabcontent li{
  line-height: 24px;
  margin-bottom: 24px;
}

.tabcontent a{
	color: #000000;
	text-decoration: none;	
}

.tabcontent a:hover{
	color: #000000;
  	text-decoration: none;	
}

.tabcontent .menu-title {
	background-color: #ececec;
	color: #af0004;
    padding: 10px 16px 2px 16px;
/*	margin: 14px 3px 24px 0; */
	margin-bottom: 24px;
    font-size: 18px;
    min-height: 42px;
    font-weight: 500;
}
	.navbar-caption{
		color: #FFFFFF;
		font-size: 16px;
		line-height: 52px;
		text-decoration: none;
		display: none;
	}

/* Phones */
/* @media (max-width: @screen-xs-max) { */
@media (max-width : 480px) {

	.tab ul li a {
	  font-size: 14px;
	  font-weight: 600;
	}
	.tabcontent {
	    border-left: 1px solid #ccc;
	    font-size: 16px;
	    min-height: 300px;
	    width: 100%;
	}
	.tabcontent .menu-title {
	    min-height: 44px;
	}
	#nav-toggle-top {
	    margin: 0 -15px 0 -15px;
		text-align: left;
    	padding-left: 15px;
	}
	.navbar-toggle{
		float: left;
	    margin-left: 50px;
	}
	.navbar-caption{
		display: inline-block;
	}
}
/* Tablets */
/* @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max){ */ 
@media only screen and (min-width: 480px) and (max-width: 767px) {

	.tab ul li a {
	  font-size: 14px;
	  font-weight: 600;
	}
	.tabcontent {
	    border-left: 1px solid #ccc;
	    font-size: 16px;
	    min-height: 300px;
	    width: 100%;
	}
	.tabcontent .menu-title {
	    min-height: 44px;
	}
	#nav-toggle-top {
	    margin: 0 -15px 0 -15px;
		text-align: left;
    	padding-left: 15px;
	}
	.navbar-toggle{
		float: left;
	    margin-left: 50px;
	}
	.navbar-caption{
		display: inline-block;
	}
}