
body {
   margin: 0;
   text-align: center;
   background-color: #711712;
}

body, div, p, table, tr, td {
    font-size: 12px;
    font-family: helvetica, arial, verdana, sans-serif;
}

a { outline: none; }
a img { border: none; }

a {
    color: #333;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    text-transform: uppercase;
    font-size: 1.4em;
    color: #838383;
}
h2 {
    margin-left: 2.5em;
}
h3 {
    font-size: 1.2em;
    margin: 0;
}

#wrapper {
    position: relative;
    width: 950px;
    margin: 40px auto;
    text-align: left;
    font-size: 1em;
}

#header {
    height: 300px;
}
div.image h1 {
    height: 300px;
    text-indent: -999em;
    margin: 0;
}
#content {
    padding: 1em  0 20px 0;
    background: #fff url(../caseih_images/bg_navfade.gif) 0 100% repeat-x;
}

#footer {
    text-align: right;
    padding: 5px 30px;
    background: #fff url(../caseih_images/tagline.gif) 30px 50% no-repeat;
    color: #999;
}
#nav {
    width: 90%;
    margin: 0 auto;
    border-left: 1px solid #c8c8c8;
    border-collapse: collapse;
}
#nav td {
    width: 25%;
    padding: 0 30px;
    border-right: 1px solid #c8c8c8;
}
#nav ul {
    margin: 1em 0;
    padding: 0;
    list-style: none;
    width: auto;
}
#nav li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 8em;
}
/* if javascript is not present this gets applied */
#nav li ul {
    margin: 0 1em;
}
#nav li ul li a {
    color: #646464;
}
/* the .sub class is added via javascript. if js isn't
    present the nested ul displays normally */
#nav li ul.sub {
    margin: 0;
    position: absolute;
    top: -999px;
    left: 5em;
    background: transparent url(../caseih_images/arrow.gif) 0 0 no-repeat;
    z-index: 99;
    width: 6em;
}
#nav li:hover ul.sub,
#nav li.sfHover ul.sub {
    top: 0;
    padding: 0 10px;
}
#nav li a {	
    padding: 5px 0;
    display: block;
    width: 5em;
}
/* some links are longer/shorter than othes, so to get the sub nav closer and still have
it work in Firefox we need to define a different width. FF is the culprit here b/c
it correctly handles the overlaying of anchor tags, where IE ignores it */
#nav li.long a {
    width: 8em;
}
#nav li.long ul.sub {
    left: 8em;
}
#nav li.short a {
    width: 3em;
}
#nav li.short ul.sub {
    left: 3em;
}
/* ----- */
#nav li ul.sub li a {
    line-height: 1em;
    padding: 5px;
    color: #333;
}
#nav li:hover ul.sub a, 
#nav li.sfHover ul.sub a {
    color: #333;
    width: auto;
}
#nav li:hover ul.sub a:hover, 
#nav li.sfHover ul.sub a:hover {
    text-decoration: underline;
}
