/* syllabus.css by Morgan McGuire August, 2014 */

html {
}

h2 {
    padding-top: 15px;
    padding-bottom: 0px;
    border-bottom: 1px solid;
}

body {
    margin: 0px;
    font-family: "Roboto";
    font-weight: 400;
    color: #888;
    min-width: 694px;
    max-width: 1500px;
}

@-webkit-keyframes slide {
    from {
        -webkit-transform: translate(0, -15%);
    }
    to { 
        -webkit-transform: translate(-35%, 0);
    }
}

.backgroundContainer {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 200px;
    z-index: -1;
    overflow: hidden;
}

.background {
    background-image: url('background.jpg');
    background-repeat: repeat;
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 1900px;
    height: 500px;

    -webkit-animation-name: slide;
    -webkit-animation-duration: 60s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
}


a {
    text-decoration: none;
    color: #00C0FF;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

a:active {
    text-decoration: underline;
}

.placeholder {
    position: block;
    visibility: hidden;
    height: 0px;
    /*    background: #000; margin-top: 2px;*/
    }

.card {
    border-bottom: 2px solid #D8D8D8;
    border-left: 1px solid #D8D8D8;
    border-right: 1px solid #D8D8D8;
    border-radius: 4px;
    padding-bottom: 10px;
    margin: 8px;
    padding-left: 10px;
    padding-right: 5px;
    background: #FFF;
    font-size: 13px;
    overflow: hidden;
    page-break-inside: avoid;
}

#schedule .card {
    width: 350px;
}

#films .card {
    width: 540px;
    display: inline-block;
}

.holiday {
    border: none;
    background: none;
    color: #AAA;
}

.tab {
    width: 100%;
    overflow: auto;
    position: absolute;
    top: 126px;
    background:#E9E9E9;
}

.inactiveTabButton {
    text-shadow: 0px 1px 10px rgba(0,0,0,1);
}

@media screen {
.tab {
    bottom: 0px;
}
}

@media print {
}

.homework {
    /*margin-left: -40px;*/
    padding-top: 10px;
    font-weight: 100;
    background: none;
    border: none;
}

#schedule .project {
    position: absolute;
}


.caption {
    font-size: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
    text-align: center;
    font-weight: 200;
    width: 100%;
}


.film {
    height: 120px;
    width: 100%;
    padding-top: 10px;
}


#films .film {
    height: 220px;
    width: 100%;
    padding-top: 10px;
}

.project .image {
    width: 150px;
    height: 95px;
    display: block;
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: top;
}

.description {
    font-weight: 100;
    font-style: italic;
    padding-top: 10px;
}

.film .image {
    width: 75px;
    height: 120px;
    display: inline-block;
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: top;
}

#films .film .image {
    zoom: 150%;
}

#schedule .film .note {
    display: none;
}

#films .film .note {
    display: block;
    width: 390px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.film .image .playButton {
    font-size: 40px;
    text-align: center;
    text-decoration: none;
    padding-top: 35px;
    vertical-align: middle;
    text-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}


#schedule .film .information {
    width: 250px;
}

.film .information {
    display: inline-block;
    padding-top: 0px;
    padding-left: 10px;
    height: 100%;
    vertical-align: top;
    margin-right: 10px; 
    margin-left: 10px;
    padding-left: 0px;
    border-top: 1px solid #E5E5E5;
    font-weight: 100;
}

.film .information .title {
    font-size: 18px;
    font-weight: 100;
}

.tabButton {
    width:25%; 
    display: inline-block;
    text-align: center;
    font-weight: 200;
    font-size: 20px;
    border-bottom: 2px solid #DDD;
    padding-bottom: 6px;
    padding-top: 4px;
    margin-bottom: -2px;
    color: #FFF;
    cursor: pointer;
}

.tabButton:hover {
/*    text-decoration: underline; */
}

.activeTabButton {
    cursor: auto;
    border: 1px solid #DDD;
    border-top: 2px solid #DDD;
    border-bottom: 2px solid #E9E9E9;
    margin-left: -1px;
    margin-right: -1px;
    background: #E9E9E9;
    color: #888;
    font-weight: 100;
    text-decoration: none !important;
}

ul {
    margin-top: 0px;
}

li {
    list-style: none;
}

li:before { 
    content:   "- "; 
}

