/*  
CSS: fade_tabs.css
Description: provides a template for forming tabs within the body of a window
updated: Apr 5, 2016
*/

/* begin CSS styling for tabs presentations, sourced from http://www.w3schools.com/howto/howto_js_tabs.asp */
ul.tab {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width:93%;
    max-width:1400px;
    margin-left:auto;
    margin-right:auto;
    margin-top:12px;
    border-radius:5px;
}

/* Float the list items side by side */
ul.tab li {float: left;}

/* Style the links inside the list items */
ul.tab li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 8px 16px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;

}

/* Change background color of links on hover */
ul.tab li a:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
ul.tab li a:focus, .active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
/*.tabcontent:nth-of-type(1){display:block;}*/
/* end CSS styling for tabs presentations, sourced from http://www.w3schools.com/howto/howto_js_tabs.asp */

/* begin CSS styling for beertrax tabs presentations, sourced from http://www.w3schools.com/howto/howto_js_tabs.asp */
ul.tabBR {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    border: 1px solid #f9e3b9;
    background-color: #fcf5e9;
    width:95%;
    margin-left:2%;
    margin-top:4px;
    border-radius:6px;      /* radius of the ends of the tab bar */
}

/* Float the list items side by side */
ul.tabBR li {float: left;}

/* Style the links inside the list items */
ul.tabBR li a {
    display: inline-block;
    color: black;
    text-align: center;
    padding: 8px 10px;      /* configures the height of the tab bar, space above and below the text */
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

/* Change background color of links on hover */
ul.tabBR li a:hover {
    background-color: #f8e7c6;
}

/* Create an active/current tablink class */
ul.tabBR li a:focus, .activeBR { background-color: #f9e5bd; }

/* Style the tab content */
.tabBRcontent {
    display: none;
    padding: 6px 12px;
/*    border: 1px solid #ccc;*/
    border-top: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

@-webkit-keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
/*.tabcontent:nth-of-type(1){display:block;}*/
/* end CSS styling for beertrax tabs presentations, sourced from http://www.w3schools.com/howto/howto_js_tabs.asp */
