/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  .tabber = before the tabber interface is set up
  .tabberlive = after the tabber interface is set up
  --------------------------------------------------*/
.tabber {
}
.tabberlive {
 margin-top: 0;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 display: block;
 margin: 11px 0 4px 0 !important;
 padding: 0 0 0 0 !important;
 border-bottom: 0px solid #778;

 font-family: "Montserrat",Arial,Helvetica,Tahoma,Verdana,Geneva,sans-serif;
 font-weight: normal;
 font-size: 15px;
 overflow: visible !important;
}

ul.tabbernav li
{
 list-style: none;
 display: inline-block;
 margin: 0 3px 0 0;
 overflow: visible;
}
ul.tabbernav li:before
{
	content: "" !important;
	border: none !important;
}

ul.tabbernav li:hover
{
}

ul.tabbernav li a
{
/*  z-index: -9999; */
 padding: 6px 0.75em;
 background-color: #dbdbdb;
 border-color: #e3e3e3;
 /* border-width: 1px 1px 1px 1px; */
 border-width: 0;
/*  border-bottom: 1px solid transparent; */
 border-style: solid;
 -webkit-border-top-left-radius: 5px;
 -webkit-border-top-right-radius: 5px;
 -moz-border-radius-topleft: 5px;
 -moz-border-radius-topright: 5px;
 border-top-left-radius: 5px;
 border-top-right-radius: 5px;
 text-decoration: none;
}

ul.tabbernav li a:link
{
 color: #fff;
}
ul.tabbernav li a:visited
{
 color: #fff;
}
ul.tabbernav li a:hover
{
 color: #fff;
 /* background: #bedcf4; */
 background: #d4d4d4;
}

ul.tabbernav li.tabberactive
{
}

ul.tabbernav li.tabberactive a
{
 position: relative;
 z-index: 99999;
 border-color: #e3e3e3;
 /* background-color: #93c4e9; */
 background-color: #abe0f3;
 border-bottom: 0px solid #fff;
 color: #cb3427;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #fff;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 /* background-color: #93c4e9; */
	 background-color: #abe0f3;
	 padding: 9px 16px 6px 16px;
	 margin-top: 0px;
	 border: 0px solid #e3e3e3;
/* 	 border-top: 0; */
	-webkit-border-radius: 5px;
	-webkit-border-top-left-radius: 0;
	-moz-border-radius: 5px;
	-moz-border-radius-topleft: 0;
	border-radius: 5px;
	border-top-left-radius: 0;
	 text-align: left;
	 position: relative;
	 z-index: 9999;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
 display:none;
}
.tabberlive .tabbertab h3 {
 display:none;
}

/* Content of live tab paragraph tag */
.tabberlive .tabbertab p {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 13px;
	color: #fff;
}
.tabberlive .tabbertab a {
	text-decoration: none;
	color: #333;
}
.tabberlive .tabbertab a:hover {
	color: #e7392a;
	text-decoration: none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.tabberlive#tab1 {
}
.tabberlive#tab2 {
}
.tabberlive#tab2 .tabbertab {
 height:200px;
 overflow:auto;
}

.tabbertab a.link-alt2 {
/* 	font-size: 90%; */
	color: #cb3427 !important;
	text-decoration: none;
	}
.tabbertab a.link-alt2:hover {
	color : #e7392a;
	text-decoration: underline;
	}



/*-------------------------------------- RESPONSIVE STYLES  -------------------------------------- */

@media only screen and (max-width : 768px) {


	.tabberlive {
		margin-top: 30px !important;
		margin-bottom: 15px;
		}

	.tabberlive .tabbernav li {
		font-size: 20px !important;
		}
	.tabberlive .tabbertab p {
		font-size: 16px !important;
		}
	.tabberlive .tabbertab {
		padding: 16px 18px 10px 18px !important;
		}


}
