/**
jquery simplyTabs plugin - CSS stylesheet

If you change the default class names in your javascript, make sure to reflect those changes in the CSS.

*/


/* you should set your tabs container 's width and height dimensions here, 

example:

#tabContainer{
 width: 505px;
 height: 600px;
 border: 1px solid black;
}
 */
.simplyTabs {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
.simplyTabs ul.tab-menu {
    height: 20px;
    width: 100%;
    list-style: none;
    position: absolute;
    overflow: hidden;
    border-top: 1px solid #999; 
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
    font-family: Arial;
    font-size: 12pt;
}
.simplyTabs ul.tab-menu li {
    float: left;
    height: 20px;
    width: auto;
    margin: 0;
    padding: 0;
}
.simplyTabs ul.tab-menu a.tab-menu-item, .simplyTabs ul.tab-menu a.tab-menu-item:visited {
    margin: 0;
    padding: 0.1em .3em;
    display: block;
    text-decoration: none;
    color: Black;
    background: white;
    color: Black;
}
.simplyTabs ul.tab-menu a.tab-menu-item:hover, .simplyTabs ul.tab-menu a.tab-menu-item:active, .simplyTabs ul.tab-menu a.tab-menu-item:focus, .simplyTabs ul.tab-menu a.tab-menu-item-selected {
    background: black;
    color: White;
}
.simplyTabs .tab-panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 440px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.simplyTabs .tab-panel.tab-hidden {
    display: none;
}
.simplyTabs .tab-panel.tab-visible {
    display: block;
}

