<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* McTabs - menucool.com */

ul.mctabs
{
    height:28px; /* height #1 */
    text-align:left; /*set to left, center, or right to align the tabs as desired*/ 
    margin:0;
    padding:0; 
    padding-left:10px; /*offset of the first tab when text-align is left.*/
    font-size:0;
    list-style-type:none;
	
}
        
ul.mctabs li
{
    display:inline;
    margin:0;padding:0;
    margin-right:5px; /*distance between tabs*/
	
}
        
ul.mctabs li a
{
    padding:0 3px; /* edit 10px for different tab width */
    display:inline-block;    
    font:bold 12px Verdana;
    line-height:28px;/* height #1 */
    text-decoration: none;
    /*color:#888;*/
    color:#342015;
    border:2px solid transparent;
    border-bottom:none;
    /*background:white;*/
	 background:#d8deb2;
    outline:none;
    border-radius:5px 5px 0 0;
    position:relative;
}
        
ul.mctabs li a:link, ul.mctabs li a:visited
{
    /*color:#888;*/
    color:#342015;
}
        
ul.mctabs li a:hover
{
    border-color: transparent;
    /*background:white; /*color #2*/
    background:#85896f; /*color #2*/
    /*color:#333;*/
    color:#fff;
}
  
/*selected tab style */
ul.mctabs li.selected a
{
    /*color:#333;*/
    color:#fff;
    font-weight:bold;
    border-color:#CCC; /*color #1*/
    /*background:white; /*color #2*/
    background:#9da188; /*color #2*/
    z-index:3;
} 
        
/*selected tab style on hover */
ul.mctabs li.selected a:hover
{
    text-decoration:none;
    color:black;
}

/* container of content panels */
div.panel-container
{
    border:none;
    border-top:2px solid #CCC; /*color #1*/
    border-radius:0px; 
    /*background-color:white; /*color #2*/
	background-color:#d8deb2;
    position:relative;    
    padding:0px; margin:0px;
}

/* content panel */       
div.panel-container &gt; div
{
    padding:10px 0px; /*update it to: padding:30px; if you want the content to have a left and padding within the content panel. */
    
    /* The two settings below should not be changed. */
    display: block;
    margin:0px;
}

/* 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; font-size:0;padding:0; margin:0; }
</pre></body></html>