body {
    margin:0;
    padding:0;
    font:100% "Calibri","Helvetica Neue",Arial, Helvetica, sans-serif;
    color: #555;
    background:#f5f5f5;
}
 
h1 {
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    padding: 0.2em;
    text-align: center;
}

ol, ul {
    padding: 0.3em;
    margin:0 3em 0 3.5em;
}

ul li {
    list-style-type: square;
    margin: 0.1em;
    padding: 0.1em;
}

ol { list-style-type: arabic; }
ol.alpha { list-style: lower-alpha; }

ol li {
    margin: 0.1em;
    padding: 0.1em;
}

h2 {
    padding: 0.2em;
    margin-left: 1em;
    font-weight: bold;
    font-size: 110%;
}

.note {
    font-style: oblique;
}

#topnav {
    font-size: small;
    background:#fefefe;
    padding-top: 0.2em;
    padding-bottom: 0.3em;
    padding-left: 2em;
    padding-right: 2em;
}
.navigation {
    text-align: left;
}

.translations {
    float: right;
    display: inline; /* fixes IE float bug */
    text-align: right;
}

#footer {
    margin-top: 1em;
    margin-left: 1em;
    margin-right: 1em;
    padding: 0.2em;
    text-align: center;
    border-top: 1px dotted gray;
}

hr { margin: 1em 1em; border: 1px dotted gray;}
p { padding: 0.65em; width: 90%; margin: auto 1em 0 1em;}

a {color:#666;}
 
#content {width:85%; max-width:1200px; margin:2% auto 0; }
.border {
    -moz-border-radius:5px; /* FF1+ */
    -webkit-border-radius:5px; /* Saf3-4 */
    border-radius:5px;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    background:#fefefe;
}

/*
Pretty Table Styling
CSS Tricks also has a nice writeup: http://css-tricks.com/feature-table-design/
*/
 
table {
    overflow:hidden;
    border:1px solid #d3d3d3;
    background:#fefefe;
    width:70%;
    margin:5% auto 0;
    -moz-border-radius:5px; /* FF1+ */
    -webkit-border-radius:5px; /* Saf3-4 */
    border-radius:5px;
    -moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    font-size: 0.9em;
}
 
th, td {padding:18px 28px 18px; text-align:center; }
 
th {padding-top:12px; text-shadow: 1px 1px 1px #fff; background:#e8eaeb;}
 
td {border-top:1px solid #e0e0e0; border-right:1px solid #e0e0e0;}
 
tr.odd-row td {background:#f6f6f6;}
 
td.first, th.first {text-align:left}
 
td.last {border-right:none;}
 
/*
Background gradients are completely unnecessary but a neat effect.
*/
 
td {
    background: -moz-linear-gradient(100% 25% 90deg, #fefefe, #f9f9f9);
    background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f9f9f9), to(#fefefe));
}
 
tr.odd-row td {
    background: -moz-linear-gradient(100% 25% 90deg, #f6f6f6, #f1f1f1);
    background: -webkit-gradient(linear, 0% 0%, 0% 25%, from(#f1f1f1), to(#f6f6f6));
}
 
th {
    background: -moz-linear-gradient(100% 20% 90deg, #e8eaeb, #ededed);
    background: -webkit-gradient(linear, 0% 0%, 0% 20%, from(#ededed), to(#e8eaeb));
}
 
/*
I know this is annoying, but we need additional styling so webkit will recognize rounded corners on background elements.  Nice write up of this issue: http://www.onenaught.com/posts/266/css-inner-elements-breaking-border-radius
 
And, since we've applied the background colors to td/th element because of IE, Gecko browsers also need it.
*/
 
tr:first-child th.first {
    -moz-border-radius-topleft:5px;
    -webkit-border-top-left-radius:5px; /* Saf3-4 */
}
 
tr:first-child th.last {
    -moz-border-radius-topright:5px;
    -webkit-border-top-right-radius:5px; /* Saf3-4 */
}
 
tr:last-child td.first {
    -moz-border-radius-bottomleft:5px;
    -webkit-border-bottom-left-radius:5px; /* Saf3-4 */
}
 
tr:last-child td.last {
    -moz-border-radius-bottomright:5px;
    -webkit-border-bottom-right-radius:5px; /* Saf3-4 */
}
img {
    vertical-align: middle;
    border-radius: 5px;
    padding: 5px;
    border: 1px solid #e0e0e0;
    height: auto;
}
img {
    width: 72px;
}
img.photo {
    width: 300px;
}
