@charset "utf-8";

/*
Color Scheme
   black: #16160e
   light black: #2b2b2b
   dark gray: #595857
   gray: #a3a3a2
   light gray: #f3f3f2
   white: #f8fbf8

   pink (blog): #e4007f
   blue (photo): #2792c3
   yellow (diary): #ffd900
*/

html { 
    background-color: transparent;
}

body { 
    background-color: #f8fbf8;
    color: #595857;
    font-size: 15px;
    font-family: sans-serif;
}

section, 
nav, 
article, 
aside, 
hgroup, 
header, 
footer, 
figure, 
figcaption { 
    display: block;
}

a { 
    color: #16160e;
}

a:hover { 
    text-decoration: none;
    border: 0;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 { 
    line-height: 1;
    font-family: serif;
    font-size: 110%;
    font-weight: normal;
    color: #16160e;
}

pre { 
    border: 5px solid #a3a3a2;
    background-color: #f3f3f2;
    color: #16160e;
    -moz-border-radius: 4px;
    -khtml-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

pre:hover { 
        border-color: #752100;
}

blockquote { 
    background-color: #595857;
    color: #f3f3f2;
}

blockquote p { 
    line-height: 1.7;
}

hr { 
    height: 0.5em;
    border: 0;
}

em { 
    border-bottom: 2px solid #752100;
    color: #2b2b2b;
}

strong { 
    padding: 0.3em 0.5em;
    color: #f3f3f2;
    background-color: #752100;
    font-weight: normal;
}

/* Header */
header { 
    margin-bottom: 0.3em;
    text-transform: none;
}

header h1, 
header h2, 
header h3 { 
    font-family: Georgia, serif;
    font-size: 160%;
}

header a, 
header a:hover { 
    color: #16160e;
    text-decoration: none;
}

body > header { 
    margin: 1.6em 0;
    line-height: 1;
}

body > header h1, 
body > header h2 { 
    display: inline;
    line-height: 1.2;
    color: #a3a3a2;
    font-family: "Droid Sans", arial, serif;
    font-size: 180%;
    font-weight: normal;
}

body > header hgroup h2:before { 
    content: ":";
    margin-right: 0.15em;
}

body > header a { 
    color: #a3a3a2;
}

article header, 
section header { 
    margin: 0 0 1.6em;
}

section header a:visited, 
article header a:visited {
    border: 0;
}

/* footer */
footer { 
    text-transform: uppercase;
    padding-top: 0;
    background: 0;
    font-family: sans-serif;
}

header dl, 
footer dl { 
    /* margin: 0.6em 0 0; */
    margin: 0;
    border: 0;
    color: #a3a3a2;
    font-size: 85%;
}

header dt, 
header dd, 
footer dt, 
footer dd { 
    display: inline-block;
}

header dt, 
footer dt { 
    display: none;
}

header dd, 
footer dd { 
    margin-left: 0;
    font-family: "Century Gothic", "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
}

body > footer { 
    margin-bottom: 1em;
    padding: 10px 0 1px;
    background: transparent url(images/dashed_a3a3a2.png) left top repeat-x;
}

body > footer > * { 
    margin: 0.5em 0 0;
    font-size: 85%;
}

body > footer address { 
    display: inline;
}

/* section article */
section, 
article { 
    position: relative;
    margin-bottom: 1em;
    padding: 0 0 1px;
}

article section h2, 
article section h3 { 
    margin: 1.6em 0;
    font-size: 125%;
}

section p, 
article p { 
    text-align: justify;
}

article p { 
    line-height: 1.9;
}

article a { 
    border-bottom: 1px solid;
    text-decoration: none;
}

article a:visited { 
    border-bottom: 1px solid;
}

article a:hover { 
    border: 0;
}

figure img { 
    border: 1px solid #a3a3a2;
}

figure a img { 
    border: 5px solid #a3a3a2;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

figure a img:hover { 
    border: 5px solid;
}

figure a { 
    border: 0;
}

figcaption {
    margin-top: 0.3em;
    font-family: "Century Gothic", "Lucida Grande", "Lucida Sans", Verdana, sans-serif;
    font-size: 85%;
}

.message { 
    padding: 0.8em 0.5em;
    background-color: #a3a3a2;
    color: #2b2b2b;
    font-size: 90%;
}

/* navigation */
nav { 
    position: fixed;
    top: 1.3em;
    margin: 0;
    font-size: 80%;
    font-family: "Century Gothic", "Lucida Grande", "Lucida Sans", Verdana, sans-serif;

}

nav.global { 
    left: 0;
}

nav.local { 
    left: 4.85em;
}

nav ul { 
    margin: 0;
}

nav li { 
    list-style-type: none;
    width: 4.8em;
    margin-bottom: 1px;
}

nav li em { 
    margin: 0;
    padding: 0;
    border: 0;
}

nav li a { 
    display: block;
    padding: 7px 0;
    border: 0;
    background-color: #16160e;
    color: #f3f3f2;
    text-align: center;
    text-decoration: none;
}

nav.local li a { 
    background-color: #595857;
}

nav li a:hover, 
.about nav li.about a { 
    background-color: #595857;
    color: #f3f3f2;
}

nav li.blog a:hover { 
    background-color: #ba2636;
}

nav li.photo a:hover { 
    background-color: #2792c3;
}

nav li.diary a:hover { 
    background-color: #f8b500;
}

/* - feed */
.feed {
    display: block;
    width: 28px;
    height: 28px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.feed:hover { 
    background: #f08300 url(images/feed-icon_f8fbf8.png) center no-repeat;
}

.feed:hover img { 
    visibility: hidden;
}

.feed { 
    position: fixed;
    top: 9.8em;
    left: 1.2em;
}
