﻿/* Responsive Tabs - menucool.com/jquery-tabs */
ul.rtabs
{
text-align:left; /*set to left, center, or right to align the tabs as desired*/    
font-size:0;
margin:0;
padding:0;
position:relative;
z-index:10; /* Ensures tabs stay on top of panel-container */
}
ul.rtabs li
{
margin:0;
margin-right:4px; /*gap between tabs. Set it to -1px for no gap.*/
padding:0;
display:inline;
}
ul.rtabs li a
{
line-height: 1.7em;
display:block;
font-size: 1.375rem;
font-weight:100;
padding:0 25px; /* It determines tab width */
display:inline-block;  
line-height:40px;/* height of tabs */
text-decoration: none;
color:#083150;
background:transparent;
outline:none;
border:0px solid #ccc;
border-radius:3px 3px 3px 3px;
position:relative;
/* Smooth transitions */
transition: all 0.3s ease;
}
ul.rtabs li a:link, ul.rtabs li a:visited
{
color:#083150;
}
ul.rtabs li a:hover
{
padding:2 16px; /* It determines tab width */
background:rgba(52,117,240,0.2);
color:#083150;
border:0px solid #003150;
}
/*selected tab style */
ul.rtabs li.selected a
{
padding:2 16px; /* It determines tab width */
/*color:#9c0000;*/
font-weight:100;
border:0px;
color:#fff;
background:#5370ac; /*color #2*/
z-index:3;
/* -webkit-animation:cyclecolors3 linear infinite;
-webkit-animation-duration: 60s;
-webkit-animation-iteration-count: infinite;
-moz-animation:cyclecolors3 linear infinite;
-moz-animation-duration: 90s;
-moz-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite; */
}   
/*selected tab style on hover */
ul.rtabs li.selected a:hover
{
text-decoration:none;
}
/* container of content panels */
div.panel-container
{
border:0px solid #DDD; /*color #1*/ 
border-radius:4px 4px 4px 4px;
background-color:; /*color #2*/
position:relative;    
padding:0px; margin:0px;
outline:none;
margin-top:0px; /* Fixed from -2px to prevent hover issues */
margin-bottom:35px;
}
/* content panel */       
div.panel-container > div
{
padding:30px 16px 20px 0px;
/* The two settings below should not be changed. */
display: block;
margin:0px;
}  
div.panel-container div.inactive
{
display: none;
}
/* loading image before ajax content is retrieved. Only applicable when Ajax is used.*/
div.ajaxLoading {background:transparent url(loading.gif) no-repeat center center; height:150px; width:20px; font-size:0;padding:0; margin:0 auto; }
/* For mobiles */
@media only screen and (max-width:480px){
ul.rtabs{
box-sizing:border-box;
border-left:0px transparent;
border-top:0px;
min-width:260px;
}
ul.rtabs li{
display:inline-block;
box-sizing:border-box;
margin-right:0;
width:50%; /* set it to 100% for one column, 33.33% for three-column */
}
ul.rtabs li:last-child:nth-child(odd){
width:100%;
}
ul.rtabs li a {
border:none;
border:0px solid transparent;
display:block;
padding:0;
text-align:center;
border-radius:0;
background-color:#;
}
ul.rtabs li.selected a {
background-color:#; 
border:0px solid #CCC;
}
div.panel-container {
border-radius:0;
min-width:260px;
box-sizing:border-box;
}
}