/* 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;
    min-height: 440px;
}

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

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

a.tab {
    background-color: #969593;
    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;
    padding: 2px 1em 0 1em;
}

a.tab, a.tab:visited, a.selected {
	color: #03134a;
	text-shadow: #4F5CFB 2px 2px 1px;
}

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

