@charset "UTF-8";

body, html {
    font-family: helvetica;
	font-size: 110%;
}

p {
  margin-top: 0em;
  margin-bottom: 1em;
  font-size: 100%;
}

#top { font-size: 180%; }

a:link { color: #B93815; }
a:visited { color: #B93815; }
a:hover { color: #E18942; }
a:active { color: #B93815; }

table { font-size: 100%; }

li { margin: 1em 0; }

h1, h2, h3 { margin-top: 1.5em; }
#first { margin-top: 0.5em; }

img { padding-left: 2em; }

#sidebar {
    background: #B95835;
    width: 100%;
    height: 100%;
	box-sizing: border-box;	
	-moz-box-sizing: border-box;
}
#sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#sidebar ul li {
    margin: 0;
}
#sidebar ul li a {
    padding: 15px 20px;
    font-size: 22px;
    font-weight: 100;
    color: white;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #B95835;
    -webkit-transition:  background 0.3s ease-in-out;
    -moz-transition:  background 0.3s ease-in-out;
    -ms-transition:  background 0.3s ease-in-out;
    -o-transition:  background 0.3s ease-in-out;
    transition:  background 0.3s ease-in-out;
}
#sidebar ul li:hover a {
    background: #E18942;
}

span {}
#pdf { display: none; }

ol { list-style-type: none; }

#mylist {
  counter-reset: o-counter 0;
}

ol li:before {
  content: '[' counter(o-counter) ']';
  counter-increment: o-counter;
  position: absolute;
  left: 25px;
}
