/* nldcems.com */
/* tabs.css */

/*
 * note that by default all tab content areas
 * have display set to 'none'
 */
div.tabContent {
    padding: 4px;
    border: 1px solid #666;
    background-color: #ccc; 
    display: none;
    
}

#content {
    overflow: auto;
    /* height: 440px;
    margin-bottom: 30px; */
}

div.tabs {
    font-size: 90%;
    font-weight: bold;
}

a.tab {
    background-color: #2d2d33;
    border: 1px solid #666;
    border-bottom-width: 0px;
    padding: 2px 1em 2px 1em;
    text-decoration: none;
}

a.selected {
    background-color: #ccc;
    /*border: 1px solid #ccc; */
    border-bottom: none;
    padding: 2px 1em 0px 1em;
    text-decoration: none;
}

a.tab, a.tab:visited {
    color: #808080;
}

a.tab:hover {
    background-color: #d0d0d0;
    color: #606060;
}

