/*
  Based in part on the Debathena stylesheet http://debathena.mit.edu
*/

html {
    padding: .75em;
    background: #255E15;
}
body {
    position: relative;
    margin: 0 auto;
    padding: 1em;
    border: 1px solid black;
    -moz-border-radius: .4em;
    -webkit-border-radius: .4em;
    border-radius: .4em;
    background: #fff;
}

/* Limit the <body /> width for readability. */
body {
    max-width: 66em;
}

/* Increase line heights for better screen readability. */
p, li, dt, dd, address {
    line-height: 1.5em;
}
.short dt, .short dd, .shorter dt, .shorter dd {
    line-height: 1.1em;
}
pre {
    line-height: 1.25em;
}

/* Basic fonts and sizes. */
html {
    font-size: 87.5%;
}
body {
    font-family: Tahoma, Sans, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", Trebuchet, Sans, sans-serif;
}
pre, code, samp, kbd, tt {
    font-family: "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Luxi Mono", Consolas, "Andale Mono", Monaco, "Courier New", monospace;
    font-size: 100%;
}

:link {
    color: #06c;
}
:visited {
    color: #039;
}
var {
    color: #090;
}
ins {
    text-decoration: none;
    color: #090;
}
pre {
    background: #f6f6f6;
    border-color: #ddd;
}
.note {
    background: #ffd;
    border-color: #eea;
}

/* Remove link underline until hover. */
:link, :visited {
    text-decoration: none;
}
:link:hover, :visited:hover {
    text-decoration: underline;
}

/* And remove the weird border around linked images. */
:link img, :visited img {
    border: none;
}

address {
    margin-top: 2em;
    border-top: 1px dashed black;
    padding-top: .5em;
}

/* Add extra margin between entries in lists with class="long". */
.long li, dl.long dd {
    margin-bottom: .5em;
}

/* <dl class="short" /> and <dl class="shorter" /> get displayed like
   a two-column table. */
dl.short dt {
    clear: both;
    float: left;
    min-width: 28em;
}
dl.short dd {
    margin-left: 28em;
    margin-bottom: .5em;
}
dl.shorter dt {
    clear: both;
    float: left;
    min-width: 16em;
}
dl.shorter dd {
    margin-left: 16em;
    margin-bottom: .5em;
}

/* Make a rounded box around <pre /> and <p class="note" />. */
pre, .note, .index table {
    border-style: solid;
    border-width: 1px;
    -moz-border-radius: .4em;
    -webkit-border-radius: .4em;
    border-radius: .4em;
    padding: .125em;
}

body {
  padding-top: 20px;
  padding-bottom: 60px;
}

/* Custom container */
.container {
  margin: 0 auto;
  max-width: 1000px;
}
.container > hr {
  margin: 60px 0;
}

.lead {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.25;
}
.btn {
  font-size: 21px;
  padding: 14px 24px;
}

.photo {
    max-height: 400px;
    margin-left: 15px;
    margin-right: 15px;
}

/* Customize the navbar links to be fill the entire space of the .navbar */
@media (min-width: 940px) {
    .navbar .navbar-inner {
        padding: 0;
    }
    .navbar .nav {
        margin: 0;
        display: table;
        width: 100%;
    }
    .navbar .nav li {
        display: table-cell;
        width: 1%;
        float: none;
    }
    .navbar .nav li a {
        font-weight: bold;
        text-align: center;
        border-left: 1px solid rgba(255,255,255,.75);
        border-right: 1px solid rgba(0,0,0,.1);
    }
    .navbar .nav li:first-child a {
        border-left: 0;
        border-radius: 3px 0 0 3px;
    }
    .navbar .nav li:last-child a {
        border-right: 0;
        border-radius: 0 3px 3px 0;
    }
}
