/*
* jQueryTab v2.0
* Copyright Dharma Poudel (@rogercomred)
* Free to use under the GPLv3 license.
* http://www.gnu.org/licenses/gpl-3.0.html
*/

/* == quick_reset */
*{ border:none; margin:0; padding:0; outline:none;}

/*  == common styles */
body { min-height:100%;  }
ul,ol{ list-style:none outside none;}
h1{font-size: 25px; color:#000; padding-bottom:20px; margin-bottom: 20px;}
h3{margin:30px 0 10px;}
p{margin: 0 0 20px;}
pre{ border: 1px solid #ddd; box-shadow: 1px 1px 0 #fff, 2px 2px 0 #ddd; margin:10px 0; padding: 10px; background: #fcfcfc; }

#container{ width:80%; padding:0px 50px; margin:0 auto;}

 
a:hover{ color: #666;}

/*  == tab heading */
.tabs {  overflow:hidden; text-align:center; }
.tabs li{ float:none;  display:inline-block;}
.tabs li a{     display: block;    font-weight: 600;    padding: 7px 13px;    font-size: 14px;}
.tabs li a span
{
	display: block;
	font-size: 12px;
	font-weight: 600;
}
.tabs li:first-child a{ border-left: none; }
.tabs li a:hover, .tabs li a:focus{   }
.tabs .active a{ color: #000; }

/* == accordion */
.accordion_tabs { display:none; border-top: 1px solid #ccc; padding: 10px; font-weight: bold; background: #eee;  background:#fff url(../images/top-arrow-img.png) no-repeat right 19px;} }
.tab_content_wrapper > .accordion_tabs:first-child{ border-top:none; }
a.accordion_tabs:link, a.accordion_tabs:visited{ color: #21759B; }
a.accordion_tabs:hover, a.accordion_tabs:focus{ color:#D54E21; }
a.accordion_tabs.active{ color: #000; border-bottom: 1px solid #ccc; background:#fff url(../images/dwon-arrow-img.png) no-repeat right 19px;}

/*  == tab content  */
.tab_content_wrapper{ overflow:hidden;  position:relative; transition: all .3s ease-in-out .3s; }
.tab_content{ transition: all .6s ease-in-out; padding:15px; }
.toggle_display{display:block;}
.toggle_position{ position:absolute; width:100%; }
.toggle_border{ border:1px solid #ccc; border-width: 0 1px 1px 1px; }
.invert_border{ border-width: 1px 1px 0 1px;}

/* Media Queries
***********************/
@media (min-width: 992px) and (max-width: 1200px) {
.tabs li a
{
	padding: 8px 9px;
font-size: 12px;
}

}
@media screen and (max-width: 768px) {
  #container{ width:90%; padding:40px 20px; }
  .accordion_tabs{ display:block; }
  .tab_content_wrapper{ height:auto !important;}
  .tab_content{ transition:none; padding:10px;}
  .toggle_display{display:none;}
  .toggle_position{ position:relative; }
  .toggle_border{ border-width: 1px; }
}