html {
    font-size: 100%;
    font-size: 15px;
    overflow-y: scroll;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font: 1em/1.4 Calibri, sans-serif;
    font-family: Calibri, Open Sans, sans-serif;
    color: #222222;
}

img { border: 0; }


a, a:visited {
    text-decoration: none;
    color: #aa220a;
}
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }
a:hover, a:focus, a:active {
    text-decoration: underline;
    color: #db5228;
}

strong { font-weight: bold; }

ul {
    list-style: square;
    padding: 0;
    margin: 1.4em 0;
}

li { margin: 0.35em 0; }

/** text elements **/
h1, h2, h3, h4, h5, h6 {
    font-weight:         normal;
    color:               #111;
    -webkit-text-stroke: 1px transparent;
}
h1 { font-size: 1.7em; margin: 0.25em 0 0.5em; }
h2 { font-size: 1.5em; margin: 1.25em 0 0.75em; }
h3 { font-size: 1.2em; margin: 1em 0 0.5em; }
h4 { font-size: 1.1em; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

p { margin: 0 0 1em; }


/** STRUCTURE **/
#container {
    max-width: 520px;
    padding: 0 10px;
    margin: 0 auto;
}

/** HEADER **/
header {
    margin: 0.5em 0 2em 0;
    padding: 0.5em 1em;
    background-color: #A1330F;
    /*border-right: 3px solid #d3611b;*/
}
header h1 {
    margin: 0;
    font-size: 1.5em;
    font-weight: bold; 
}
header h1 a, header h1 a:visited {
    color: #EFC852;
    text-decoration: none;
}
header h1 a:hover { color: #FFFFFF; }

/** FOOTER **/
footer {
    margin-top: 3em;
    padding: 1em;
    font-size: 0.8125em;
    font-weight: normal;
    color: #cfbfb3;
    text-align: right;
    border-top: 1px solid #eedccd;
    background-color: #E8E6D2;
}
footer a, footer a:visited {
    color: #bfb0a5;
    font-weight: normal;
}

/** HOME **/
.intro {}

.entries { margin-top: 3em; }
.entries ul { list-style: none; }
.entries ul li { margin-left: 0.75em; }
.entries ul li span {
    font-size: 80%;
    color: ;
}
.entries a, .entries a:visited { 
    font-weight: bold;
    color: #723622;
}

/** POST **/
.entry .head {
    margin-bottom: 1em;
}
.entry .head h1 {
    margin-bottom: 0;
    font-size: 1.4em;
}
.entry .head time {
    color: #CCCCCC;
}
.entry .content h1, .entry .content h2, 
.entry .content h3, .entry .content h4 {
    font-weight: bold;
}

/** CODE **/
code {
    padding: 1px 2px;
    background-color: #E3E3E3;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: .90em;
}
pre, .highlight pre {
    display: block;
    padding: 5px;
    margin: 1em 0;
    font-family: 'andale mono', 'lucida console', consolas, monospace;
    font-size: 1em;
    background-color: #E3E3E3;
    white-space: pre;
    word-wrap: normal;
}
pre code {
    padding: inherit;
    background-color: inherit;
    border: 0;
    border-radius: 0;
}
.highlight pre {
    max-height: 400px;
    overflow: auto;
}

.gist {
    margin-bottom: 1em;
}

.gist .highlight pre {
    margin-bottom: 0;
}

.gist .gist-meta {
    padding: 0.25em 0.5em;
    background-color: #E8E6D2;
}


