/* CSS Document */

body{
    padding: 0;
    margin: 0;
    width:422px;
    height:100%;
    position: absolute;
    left: 80px;
    top: 0px;
}

.leftCursor{
    position: absolute;
    top: 314px;
    left: -57px;
    z-index: 100;
}
.rightCursor{
    position: absolute;
    top: 314px;
    right: -57px;
    z-index: 100;
}

#presentation-counter {
    color: #ccc;
    font-size: 100px;
    letter-spacing: 1px;
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.presentation {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0px;
    top: 0px;
    display: block;
    overflow: hidden;
    background: transparent;
}

.slides {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    display: block;
    -webkit-transition: -webkit-transform 1s ease-in-out;
    -moz-transition: -moz-transform 1s ease-in-out;
    -o-transition: -o-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.slide {
    display: none;
    position: absolute;
    overflow: hidden;
    width: 412px;
    height: 658px;
    left: 50%;
    top: 50%;
    margin-top: -350px;
    background-color: #eee;
    background: -webkit-gradient(linear, left bottom, left top, from(#bbd), to(#fff));
    background: -moz-linear-gradient(bottom, #bbd, #fff);
    background: linear-gradient(bottom, #bbd, #fff);
    -webkit-transition: margin 0.25s ease-in-out;
    -moz-transition: margin 0.25s ease-in-out;
    -o-transition: margin 0.25s ease-in-out;
    transition: margin 0.25s ease-in-out;
}

.slide:nth-child(even) {
    -moz-border-radius: 20px 0;
    -khtml-border-radius: 20px 0;
    border-radius: 20px 0; /* includes Opera 10.5+ */
    -webkit-border-top-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
}

.slide:nth-child(odd) {
    -moz-border-radius: 0 20px;
    -khtml-border-radius: 0 20px;
    border-radius: 0 20px;
    -webkit-border-top-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
}

.slide p, .slide textarea {
    font-size: 20px;
}

.slide .counter {
    color: #999999;
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: block;
    font-size: 12px;
}

.slide.title > .counter,
.slide.segue > .counter,
.slide.mainTitle > .counter {
    display: none;
}

.force-render {
    display: block;
    visibility: hidden;
}

.slide.far-past {
display: block;
margin-left: -2400px;
}

.slide.past {
visibility: visible;
display: block;
margin-left: -1400px;
}

.slide.current {
visibility: visible;
display: block;
margin-left: -206px;
}

.slide.future {
visibility: visible;
display: block;
margin-left: 500px;
}

.slide.far-future {
display: block;
margin-left: 1500px;
}

.description{
text-align: left;
font-family: 'Droid Sans Mono', Courier;
font-size: small;
padding: 10px 20px;
width: 310px;
background: rgba(255, 0, 0, 0.05);
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 1px solid rgba(255, 0, 0, 0.2);
}
pre {
text-align: left;
font-family: 'Droid Sans Mono', Courier;
padding: 10px 20px;
width: 392px;
background: rgba(255, 0, 0, 0.05);
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
border: 1px solid rgba(255, 0, 0, 0.2);
}

pre select {
font-family: Monaco, Courier;
border: 1px solid #c61800;
}

pre b {
font-weight: normal;
color: #c61800;
text-shadow: #c61800 0 0 1px;
/*letter-spacing: -1px;*/
}
pre em {
font-weight: normal;
font-style: normal;
color: #18a600;
text-shadow: #18a600 0 0 1px;
}
pre input[type="range"] {
height: 6px;
cursor: pointer;
width: auto;
}

header {
font-family: 'Droid Sans';
font-weight: normal;
letter-spacing: -.05em;
color: black;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
position: absolute;
left: 30px;
top: 25px;
margin: 0;
padding: 0;
font-size: 50px;
}

h1 {
font-size: 100%;
display: inline;
font-weight: normal;
padding: 0;
margin: 0;
}

h2 {
font-family: 'Droid Sans';
color: black;
font-size: 20px;
padding: 0;
margin: 15px 0 5px 0;
}

h2:first-child {
margin-top: 0;
}

section, footer {
font-family: 'Droid Sans';
color: #3f3f3f;
text-shadow: rgba(0, 0, 0, 0.2) 0 2px 5px;
margin: 100px 30px 0;
display: block;
overflow: hidden;
}

footer {
font-size: 12px;
margin: 20px 0 0 30px;
}

section.left {
float: left;
width: 390px;
}

section.small {
font-size: 24px;
}

section.small ul {
margin: 0 0 0 15px;
padding: 0;
}

section.small li {
padding-bottom: 0;
}

section.middle {
line-height: 68px;
text-align: center;
display: table-cell;
vertical-align: middle;
height: 700px;
width: 900px;
}

nav {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: red;
    background-attachment: fixed;
    background-position: left center;
    background-repeat: no-repeat;
    text-align: center;
}

@-webkit-keyframes pulse{
}

nav a{
    position: relative;
    top: 100px;
    margin-left: -272px;
    color: hsla(180, 100%, 50%, 0.75);
    text-decoration: none;
    font-size: 24px;
    font-weight: bolder;
    font-family: Verdana,Arial,Helvetica,sans-serif;
    -webkit-text-stroke-color: hsla(0, 0%, 50%, 0.75);
    -webkit-text-stroke-width: 2px;

    -webkit-transition: color ease-in-out 1.0s, -webkit-text-stroke-color ease-in-out 1s;
}
nav a:hover{
    color: hsla(280, 100%, 100%, 1.0);
    -webkit-text-stoke-color: hsla(0, 0%, 0%, 0.75);
}
nav a:visited{
    color: hsla(180, 100%, 75%, 0.75);
}

#navLink-1{
}
#navLink-2{
}

.pulse{
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: alternate;
}
