
/* basic stuff copied from http://docs.python.org/_static/default.css */

body {
    font-family: sans-serif;
    font-size: 100%;
    counter-reset: h1;
    padding-bottom: 20px !important;
}
p a img {
	border: none;
}
a {
    color: #355f7c;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
h1, h2, h3, h4 {
    background-color: #f2f2f2;
    font-weight: normal;
    color: #20435c;
    border-bottom: 1px solid #ccc;
    padding: 3px 0 3px 10px;
}
h1 {
	counter-reset: h2;
}
h2 {
	counter-reset: h3;
}
h1:before {
	counter-increment: h1;
	content: counter(h1) ". ";
}
h2:before {
	counter-increment: h2;
	content: counter(h1) "." counter(h2) " ";
}
h3:before {
	counter-increment: h3;
	content: counter(h1) "." counter(h2) "." counter(h3) " ";
}
pre {
    padding: 5px;
    background-color: #eeffcc;
    color: #333333;
    line-height: 120%;
    border: 1px solid #ac9;
    border-left: none;
    border-right: none;
}
