body {
    font-family: Helvetica, Arial, sans-serif;
    margin: 0 0 0 0;
}
.content {
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;

    font-size: 14pt;
    line-height: 1.3em;
}
h2 {
    border-bottom: thin solid lightgray;
    margin-top: 1.5em;
}

li {
    margin-bottom: 0.2em;
}

/****** Header and footer *****/

.header {
    font-size: 18pt;
    background: darkgray;
    padding-top: 10pt;
    padding-bottom: 10pt;
    text-align: center;
}

.footer {
    text-align: right;
    border-top: thin solid gray;
    padding-top: 3px;
}

/****** Toolbar *****/

#toolbar {
    font-size: 18pt;

    background: #808080;
    background: -webkit-linear-gradient(top, #999, #3F3F3F);
    background:    -moz-linear-gradient(top, #999, #3F3F3F);
    background:     -ms-linear-gradient(top, #999, #3F3F3F);
    background:      -o-linear-gradient(top, #999, #3F3F3F);
    background:         linear-gradient(top, #999, #3F3F3F);
    
    padding-top: 10px;
    padding-bottom: 10px;
}
#toolbar a {
    text-decoration: none;
    
    padding: 4px 18px 4px 18px;
    margin-left: 10px;
    margin-right: 10px;
    
    color: white;

    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
        -ms-border-radius: 5px;
         -o-border-radius: 5px;
            border-radius: 5px;
}
#toolbar a:hover {
    background: black;
    cursor: pointer;
}
#toolbar a.selected {
    background: black;
    cursor: default;
}

/****** anchors *****/

a {
    color: darkblue;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: darkblue;
}

/****** Tables *****/

td {
    vertical-align: text-top;
}
table.framed {
    border-collapse: collapse;
}
table.framed td {
    border: thin solid black;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    padding-left: 0.6em;
    padding-right: 0.6em;
}
table.framed td.right {
    text-align: right;
}
table.framed tr.doubleline {
    border-bottom: double;
}
