* {
    margin: 0;
    padding: 0;
    border: 0;
}

html {
    background-color: #f2f2f2;
    color: #black;
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    /* font-family: "Trebuchet MS", Tahoma, Verdana, sans-serif; */
    font-size: 16px;
}

/* Old:
 * orange - c13511
 * blue   - 0a0928
 * yellow - fbc300
 * gray   - 595959
 *
 * New:
 * orange - b85430
 * blue   - 34314e
 * yellow - ee8d26
 * gray   - 7a7a7a
 */

/* hack to get proper shadow/corner styling in IE */
#pageBody {
    position: relative;
    background-color: white;
    width: 1000px;
    margin: 12px auto;
    border: 3px solid white;
}

#header {
    position: relative;
    background-color: #d9d9d9;
    border-top: 3px solid white;
    width: 100%;
    height: 233px;
}

#headerSmall {
    position: relative;
    background-color: #d9d9d9;
    border-top: 3px solid white;
    width: 100%;
    height: 155px;
}

#header .logo {
    position: absolute;
    left: 0px;
    top: 0px;
}

#headerContent {
    position: absolute;
    top: 0px;
    left: 372px;
    width: 619px;
    height: 233px;
    border-left: 3px solid white;
}

#headerSmall #headerContent {
    left: 248px;
    width: 743px;
    height: 155px;
}

#headerContentInner {
    margin: 1em;
    line-height: 2em;
    font-size: 20px;
    /* font-weight: bold; */
}

#headerSmall #headerContentInner {
    font-size: 18px;
    line-height: 1.5em;
}

#navBar {
    background-color: white;
    border-top: 3px solid white;
    border-bottom: 3px solid white;
    width: 100%;
    height: 36px;
    font-size: 20px;
    font-weight: bold;
}

#navBar a {
    text-decoration: none;
    color: white;
    vertical-align: middle;
    text-align: center;
    padding-top: 6px;
    display: block;
    float: left;
    height: 30px;
    border-right: 3px solid white;
}

#navBar a:hover {
    color: #ee8d26;
}

#navBar #home {
    background-color: #254061;
    width: 174px;
}

#navBar #services {
    background-color: #632523;
    width: 196px;
}

#navBar #staff {
    background-color: #4a452a;
    width: 275px;
}

#navBar #news {
    background-color: #215968;
    width: 163px;
}

#navBar #contact {
    background-color: #984807;
    width: 180px;
    border-right: 0px;
}

#mainContent {
    position: relative;
    background-color: #d9d9d9;
    color: black;
    border-bottom: 3px solid white;
    width: 100%;
    height: 394px;
}

#mainContentInner {
    position: relative;
    width: 100%;
    height: 100%;
}

#mainContentLeft {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 1.5em;
    width: 157px;
    height: 100%;
}

#mainContentRight {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 830px;
    height: 100%;
}

.accentBar {
    background-color: #a99a7f;
    height: 24px;
}

.shadow {
    -moz-box-shadow: 3px 3px 4px #000;
    -webkit-box-shadow: 3px 3px 4px #000;
    box-shadow: 3px 3px 4px #000;
    /* For IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
    /* For IE 5.5 - 7 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

.roundedCorners {
    /* IE 7, 8 */
    /* behavior: url(/css/border-radius.htc); */

    border-radius:         10px;    /* CSS3 */
    -moz-border-radius:    10px;    /* Firefox */
    -webkit-border-radius: 10px;    /* Safari and Chrome */
}

.roundedTop {
    /* IE 7, 8 */
    /* behavior: url(/css/border-radius.htc); */

    border-top-left-radius:  10px;
    border-top-right-radius: 10px;

    -moz-border-radius: 10px 10px 0px 0px;

    -webkit-border-top-left-radius:  10px;
    -webkit-border-top-right-radius: 10px;
}

.roundedBottom {
    /* IE 7, 8 */
    /* behavior: url(/css/border-radius.htc); */

    border-bottom-left-radius:  10px;
    border-bottom-right-radius: 10px;

    -moz-border-radius: 0px 0px 10px 10px;

    -webkit-border-bottom-left-radius:  10px;
    -webkit-border-bottom-right-radius: 10px;
}


/*----------------------------------------------------------------------
 * Logos
 *----------------------------------------------------------------------*/
.logoMedium {
    background-image: url(/images/logoMedium.jpg);
    width: 496px;
    height: 310px;
}

.logoMid {
    background-image: url(/images/logoMid.jpg);
    width: 372px;
    height: 233px;
}

.logoSmall {
    background-image: url(/images/logoSmall.jpg);
    width: 248px;
    height: 155px;
}

/*----------------------------------------------------------------------
 * Services page
 *----------------------------------------------------------------------*/
#services {
}

#services div {
    display: list-item;
    /* list-style-type: square; */
    margin-left: 1em;
}

/*----------------------------------------------------------------------
 * Social networking icons
 *----------------------------------------------------------------------*/
.snIconLarge {
    width: 64px;
    height: 64px;
    background-image: url(/images/social-network-icons-small.jpg);
    background-repeat: no-repeat;
}

.twitterBig {
    background-position: 0 0;
}

.facebookBig {
    background-position: -68px -68px;
}


