/*reset native css*/
*
{
    margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

@font-face
{
    font-family: myFont;
    src: url(Oxygen-Regular.ttf);
}

body
{
    text-align: left;
    background: #19983d;
}

#writing
{
    background-color: #fff;
}

#content
{
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

#slides
{
    position: relative;
    display: block;
    margin: auto;
    height: 350px;
    padding: 0px;
    list-style-type: none;
    text-align: center;
}

.slide
{
    position: absolute;
    display: inline-block;
    margin: auto;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

#thumbnails
{
    position: relative;
    display: block;
    vertical-align: middle;
    text-align: center;
    width: 600px;
    margin: 0 auto;
    margin-top: 10px;
    transform: translateX(8px);
    
}

#thumbnails ul
{
    list-style-type: none;
}

.thumbnail
{
    width: 50px;
    height: 100%;
    margin: 0px 0px 0px 0px;
    opacity: 0.2;
    z-index: 1;
    
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

.thumbnail:before {
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.highlighted
{
    opacity: 1;
    z-index: 2;
}

.highlighted img
{
    border: 2px solid #19713D;
    border-radius: 7px;
    border-color: #fff;
    box-shadow: 0 0 10px #fff;
    
}

#passages
{
    position: relative;
    margin: auto;
    height: 100%;
    width: 750px;
    padding: 25px;
    margin-top: 20px;
    font-family: myFont, sans-serif;
    background-color: #fff;
}

.passage
{
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-color: #fff;
    display: none;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

h1
{
    font-size: 2em;
    margin-bottom: 10px;
}

h2
{
    font-size: 1.3em;
    margin-top: 10px; 
}

p
{
    margin-top: 10px;
    margin-bottom: 10px;
}

ol
{
    margin-top: 10px;
    margin-bottom: 10px; 
    margin-left: 15px;
}

ol li
{
    margin-top: 10px;
}

hr { 
    height: 30px; 
    border-style: solid; 
    border-color: #8c8b8b; 
    border-width: 1px 0 0 0; 
    border-radius: 20px; 
    margin-top: 20px;
    margin-bottom: -15px;
} 
hr:before { 
    display: block; 
    content: ""; 
    height: 30px; 
    margin-top: -31px; 
    border-style: solid; 
    border-color: #8c8b8b; 
    border-width: 0 0 1px 0; 
    border-radius: 20px; 
}

.slidebutton
{
    position: absolute;
    top: 39%;
    left: 50%;
    opacity: 0.3;
    z-index: 3;
    transform: translateX(-900%);
    
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}

#leftslidebutton
{
    -ms-transform: translateX(-900%); /* IE 9 */
    -webkit-transform: translateX(-900%); /* Chrome, Safari, Opera */
    transform: translateX(-900%);
}

#rightslidebutton
{
     -ms-transform: translateX(800%); /* IE 9 */
    -webkit-transform: translateX(800%); /* Chrome, Safari, Opera */
    transform: translateX(800%);
}

.buttoncontainer
{
    margin-top: 15px;
}

.button
{
    background-color: #19983d;
    color: #fff;
    text-decoration: none;
    text-align: center;
    margin: auto;
    padding: 15px;
    box-shadow: 0px 5px grey;
}

.button:active 
{
    transform: translateY(5px);
    box-shadow: 0px 1px grey;
}

.showing
{
    opacity: 1;
    z-index: 2;
    display: block;
}

.picturediv
{
    display: block;
    margin: auto;
    margin-top: 10px;
    text-align: center;
}

.leftfloat
{
    float: left;
    width: 49%;
}

.rightfloat
{
    float: right;
    width: 49%;
}

.leftcolumn
{
    float: left;
    width: 32%;
}

.centercolumn
{
    width: 32%;
}

.rightcolumn
{
    float: right;
    width: 32%;
}

.floatclear
{
    clear: both;
}

.youvid
{
    
}

.creditslist
{
    display: block;
    list-style-type: none;
    font-size: 1.5em;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.creditslist a
{
    color: #fff;
}

.creditslist li
{
    display: inline-block;
    padding: 10px;
    margin-top: 10px;
    width: 50%;
    background-color: #19983d;
}