/**
	Adds classes used to create html/css tabs on a site.
    Copyright (C) 2005  Cardwell Cupp, Mike Hall

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
**/
div.tabArea {
    font-size: 80%;
    font-weight: bold;
    padding: 0 0 3px 0;
}

a.tab {
    background-color: #B8B5AF;
    border: 2px solid #000000;
    border-bottom-width: 0;
    border-color: #B8B5AF;
    border-top-left-radius: .75em;
    border-top-right-radius: .75em;
    padding: 2px 1em 2px 1em;
    position: relative;
    text-decoration: none;
    top: 3px;
    z-index: 100;
}

a.tab, a.tab:visited {
    color: #000000;
}

a.tab:hover {
    background-color: #304050;
    border-color: #304050;
    color: #FFFFFF;
}

a.tab .activeTab, a.tab .activeTab:hover, a.tab .activeTab:visited {
    background-color: #577994;
    border-color: #577994;
    color: #ffffff;
}

a.tab .activeTab {
    padding-bottom: 4px;
    top: 1px;
    z-index: 102;
}

div.tabMain {
    background-color: #FFFFFF;
    border: 2px solid #577994;
    border-top-right-radius: .5em;
    border-bottom-right-radius: .5em;
    padding: .5em;
    position: relative;
    z-index: 101;
}

div.main-wrapper {
    width: 770px;
}

div.main-margin {
    margin: 1em;
}