body {
    /*font: normal 11px auto "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;*/
    font: normal medium auto "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
    color: #4f6b72;
    background: #E6EAE9;
}

tbody {
    /* Make the font small for the table.  */
    font: normal 11px auto "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}

a {
    color: #c75f3e;
}

#mytable {
    /*table-layout: fixed; This ensures it preserves the desired width*/
    /*width: 100%*/
    width: 700px;
    padding: 0;
    margin: 0;
}

caption {
    padding: 0 0 5px 0;
    width: 2000px;    
    /*text-align: right;*/
    text-align: left; /*center;*/
    font: italic 11px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}

th {
    font: bold 11px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
    color: #4f6b72;
    border-right: 1px solid #C1DAD7;
    border-bottom: 1px solid #C1DAD7;
    border-top: 1px solid #C1DAD7;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    padding: 6px 6px 6px 12px;
    /*background: #CAE8EA url(images/bg_header.jpg) no-repeat;*/
    background: #CAE8EA;
}

th.nobg {
    border-top: 0;
    border-left: 0;
    border-right: 1px solid #C1DAD7;
    background: none;
}

td {
    border-right: 1px solid #C1DAD7;
    border-bottom: 1px solid #C1DAD7;
    background: #fff;
    padding: 6px 6px 6px 12px;
    color: #4f6b72;
}

tr.odd td {
    border-right: 1px solid #C1DAD7;
    border-bottom: 1px solid #C1DAD7;
    background: #fff;
    padding: 6px 6px 6px 12px;
    color: #4f6b72;
}


tr.even td {
    background: #F5FAFA;
    color: #797268;
}

tr.odd th.spec {
    border-left: 1px solid #C1DAD7;
    border-top: 0;
    /*background: #fff url(images/bullet1.gif) no-repeat;*/
    background: #fff ;
    font: bold 10px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}

tr.even th.spec {
    border-left: 1px solid #C1DAD7;
    border-top: 0;
    /*background: #f5fafa url(images/bullet2.gif) no-repeat;*/
    background: #f5fafa;
    font: bold 10px "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
    color: #797268;
}

/* Additions by Ian for text formating */

p { line-height: 1.0 } /*I think the line-height should be 1.5 to avoid paragraphs having funny spacing when there are some lines with subscript and some without */

.subscript {
    position: relative;
    top: 0.3em;
    /*color: blue;*/
    font-size: 0.8em;
}
.superscript {
    position: relative;
    bottom: 0.5em;
    /*color: blue;*/
    font-size: 0.8em;
}
