/* Responsive Tabs - jquery-tabs */

ul.rtabs
{
    text-align:center; /*set to left, center, or right to align the tabs as desired*/    
    font-size:0;
    margin:0;
    padding:0;
    list-style-type:none;
width:100%;
}
        
ul.rtabs li
{
    margin:0;
    margin-right:6px; /*gap between tabs. Set it to -1px for no gap.*/
    padding:0;
    display:inline;
}
        
ul.rtabs li a
{
    padding:0 16px; /* It determines tab width */
    display:inline-block;   
    font-weight:normal;
    font-size:12px;
    letter-spacing: 2px;
    font-family: "Tahoma", "Arial", sans-serif;
    line-height:24px;/* height of tabs */
    text-decoration: none;
    color:#000000;
    background-color:#ffffff;
   
    outline:none;
    border:1px solid #000000;
    border-bottom:none;
    border-radius:5px 5px 0 0;
    position:relative;
}
        
ul.rtabs li a:link, ul.rtabs li a:visited
{
    color:#000000;
}
        
ul.rtabs li a:hover
{
    border-color: #000000; /*color #1*/
    background-color:#000000;
    background-image: linear-gradient(#99ffff 10%, #ffffff 100%, #ffffff 100%, #ccffff 10%);
}
  
/*selected tab style */
ul.rtabs li.selected a
{
    color:#ffffff;
    font-weight:normal;
    border-color:#000000; /*color #1*/
    background:#000000; /*color #2*/
    z-index:3;
}   
        
/*selected tab style on hover */
ul.rtabs li.selected a:hover
{
    text-decoration:none;
}

/* container of content panels */
div.panel-container
{
    border-top:1px solid #000000; /*color #1*/ 
    border-bottom:1px solid #000000;
    border-radius:0px 0px 0px 0px;
    background-color:transparent; /*color #2*/
    position:relative;    
    padding:0px; margin:0px;
    outline:none;
    margin-top:0px;
}

/* content panel */       
div.panel-container > div
{
    padding:10px 0px;
    
    /* The two settings below should not be changed. */
    display: block;
    margin:0px;
}  
div.panel-container div.inactive
{
    display: none;
}

/* ajax and mobile info removed.*/