/*  ----- CONSTANTS ---------
   # Brown (text): #9B865C
   # Light Brown (eileen, nav bar) #c9bda3
   # Mid Brown (starr, p, a, nb:hover ) #9B865C
   # Dark Brown (moderbacher, h1, h2, h3, nb#on ) #76581C
   # _____: (  )  #
*/

* {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
form {
    margin: 0;
    padding: 0;
}

.width100 {
    width: 100%;
}

.width75 {
    width: 75%;
}

.width50 {
    width: 50%;
}

.floatleft {
    float: left;
}

.floatright {
    float: right;
}

.alignleft {
    text-align: left;
}

.alignright {
    text-align: right;
}

.aligncenter {
    text-align: center;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: bold;
}

html,
body {
    margin: 0;
    padding: 0;
    color: #555;
    background-color: white;
}

html,
body,
p,
table {
    font: normal 13px Frutiger, Tahoma, Geneva, Arial, Helvetica, sans-serif;
    /* font: normal 12px Frutiger, Tahoma, Geneva, Arial, Helvetica, sans-serif; */
    color: #9b865c;
    line-height: 1.5em;
}

h1 {
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    color: #76581c;
    letter-spacing: 1px;
    padding-top: 5px;
    margin: 30px 0px 10px 0px;
    background: white;
    border-top: 1px solid #76581c;
}

h2 {
    font-size: 13px;
    font-style: normal;
    font-weight: bold;
    color: #76581c;
    padding: 0;
    padding-top: 5px;
}

body.bio h2 {
    margin: 10px 5px 3px 15px;
    border-top: 1px dotted #b5a677;
}

body.words h2 {
    margin: 20px 5px 0px 0px;
    border-top: 1px dotted #b5a677;
}

h3 {
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
    color: #76581c;
    padding: 0;
}

p {
    text-align: justify;
    padding: 0;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 15px;
}

div.date {
    color: #76581c;
    text-align: right;
    font-style: italic;
    font-weight: normal;
    font-size: 0.8em;
}

/* VIDEO EMBED */
/* YouTube Ratio for embedded video from here: 
http://www.mademyday.de/css-height-equals-width-with-pure-css.html
*/

.embedbox {
    position: relative;
    width: 100%;
    /* desired width */
}

.embedbox:before {
    content: "";
    display: block;
    padding-top: 56%;
    /* 1:1 use 100%; 4:3 use 75%, etc */
}

.embedcontent {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

iframe.youtube {
    width: 100%;
    height: 100%;
}

.stack-top {
    z-index: 9;
    margin: 20px;
    background: none;
    color: red;
    text-align: center;
    font-size: 1.3em;
    height: 20%;
    overflow: visible;
}

/* END YOUTUBE EMBED */
