/*
 * WE NEED THIS html STYLE TO ADD A SCROLLBAR TO FIREFOX SO AS TO GET RID OF 
 * THE 20 PIXEL SHIFT THAT THEY SO LOVINGLY ADD TO LONG PAGES
*/
html {
    overflow: -moz-scrollbars-vertical;
    height: 100%;
}

body {
    background-color: rgb(232, 232, 219);
    margin:0px 0px 0px 0px;
    height:100%;
}

h1 {
    margin:0px 0px 0px 0px;
    font-family: arial;
    font-size: 16px;
    font-weight: bold;
    color:black;
}	

h2 {
    margin:0px 0px 0px 0px;
    font-family: tahoma;
    font-size: 13px;
    color:#6a7056;
}	

h3 {
    margin:0px 0px 0px 0px;
    font-family: arial;
    font-size: 14px;
    font-weight: bold;
    color:#6a7056;
}

img {
    border:none;
}

hr {
    border: 0;
    color: #dee2cf;
    background-color: #dee2cf;
    height: 1px;
}

a.footerLink:link {
    font-family: tahoma;
    font-size: 11px;
    line-height:auto;
    color:#635a37;
    text-decoration:underline;
}	

a.footerLink:visited {
    font-family: tahoma;
    font-size: 11px;
    line-height:auto;
    color:#635a37;
    text-decoration:underline;
}	

a.footerLink:hover {
    font-family: tahoma;
    font-size: 11px;
    line-height:auto;
    color:#635a37;
    text-decoration:none;
}

a:link {
    font-family: tahoma;
    font-size: 11px;
    text-decoration:none;
    color:#666633;
}

a:visited {
    font-family: tahoma;
    font-size: 11px;
    line-height:auto;
    color:#666633;
    text-decoration:none;
}

/*a:hover {
    font-family: tahoma;
    font-size: 11px;
    line-height:auto;
    color:#666633;
    text-decoration:none;
}*/

input.noBorder {
    border-style:none;
    background-color:transparent;
}

input {
    font-family: tahoma;
    font-size: 11px;
    line-height:14px;
    color:#666633;
    font-weight:bold;
    border:1px solid #6A7056;
    background-color:#F1F3E9;
}

textarea,select {
    border:1px solid #6A7056;
    font-family: tahoma;
    font-size: 11px;
    color:#666633;
}

input.border {
    font-family: tahoma;
    font-size: 11px;
    font-style: normal;
    line-height: 11px;
    font-weight: bold;
    color: #999999;
    border: 1px solid #929292;
    background-color:#f1f1f1;
}

/*############################################################################
 * table stuff
 *############################################################################*/
table.main {
	width: 808;
	background-color: #FFFFFF;
}

td, th {
    border: 0;
    font-family: tahoma;
    font-size: 12px;
    line-height:auto;
    color:#635a37;
}

tr.even {
    background-color: #E7E7E5;
}

tr.odd {
    background-color: #FFFFFF;
}

/*############################################################################
 * custom stuff
 *############################################################################*/
.mainTabs {
    font: 600 15px Corbel;
    color:#FFFFFF;
    text-align:center;
    background-color:#999966;
    width:20%;
    border-top: solid;
    border-left: solid;
    border-bottom: solid;
    border-color: #663300;
    border-width: 2px;
}

.theHahnGroup {
    font-size:14px;
    font-weight:bold;
    color:black;
}

.theHahnGroupBanner {
    padding:1em;
    background-color: rgb(232, 232, 219);
    border-bottom:solid red;
}

.listingsHeader {
    background-color:#FFE47A;
    text-align:center;
    padding-top:3px;
}

a.info{
    position:relative;           /*this is the key*/
    z-index:24;
    background-color:#FFFFFF;
    color:#000000;
    text-decoration:none;
    font-style:italic;
}

a.info:hover {
    z-index:25;
    background-color:#ffffff;
}

a.info span{
    display: none;  /* hide the span text using this css */
}

a.info:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top: 1.5em;
    left: 3em;
    width:15em;
    border:solid #000000;
    border-width:thin;
    background-color:#ffffff;
    color:#000000;         /* text colour */
    text-align: center;
    /*font-size: .8em;*/
    /*font-style:italic;*/
    z-index:30;
}

a.small {
    color:#FFFFCC;
}

