﻿/*
	Version		3
	Date		27 October 2023
	Author		S.Rye
	File Name	LibraryCode/Tabs.css
*/

.tabs {
    display: inline-block;
}

.tab-links:after {
    display: block;
    clear: both;
    content: '';
    margin: 0px;
}

.tab-links li {
    margin: 0px 5px;
    float: left;
    list-style: none;
    padding: 3px 20px;
    border-radius: 5px 5px 0 0;
    border: 1px solid;
    border-bottom: none;
    border-color: #000;
    background: #CCC;
}

    .tab-links li:hover {
        background: #999;
        top: 0;
    }

    .tab-links li.active {
        background: White;
    }

.tabContent {
    padding: 15px;
    border: 1px solid;
    border-radius: 3px;
    background: #fff;
}

.tab {
    display: none;
}

    .tab.active {
        display: block;
    }

.spHigh {
    background-color: #CCC;
    font-weight: bold;
    color: #003545;
}

.spLow {
    background-color: #FFF
}

.SrchHint {
    border: #CCC;
    border-style: solid;
    border-width: 1px;
    position: absolute;
    padding: 0 2px;
    width: 250px;
}

.tab table.entry {
    margin-top: 0;
}
