html {
    min-height: 100%;
    position: relative;
}

body {
    background-color: #fbfcfd;
    background-image: url("images/back.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Roboto Condensed';
    margin: 0 0 200px;
}

header {
    margin-bottom: 30px;
}

header a {
    font-weight: bold;
    color: #18493e;
}

header a:hover, header a:focus {
    color: #c31110;
    text-decoration: none;
}

footer {
    bottom: 0;
    left: 0;
    padding: 6px 0;
    padding-top: 30px;
    padding-bottom: 40px;
    position: absolute;
    width: 100%;
}

footer a {
    font-weight: bold;
    color: #18493e;
}

footer a:hover, footer a:focus {
    color: #18493e;
    text-decoration: none;
}

footer a:hover .icon, footer a:focus .icon {
    color: #c31110;
    text-shadow: 0px 0px 1px rgba(195, 17, 16, 0.60);
}

.nav-links {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.nav-links li {
    display: inline-block;
    padding: 4px 14px
}

.brand {
    height: 150px;
    margin: 15px auto;
}

.social-links {
    padding-top: 8px; 
}
.facebook img {
    width:  32px;
    height: 32px;
}

ul.acts {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

ul.acts li {
    display: inline-block;
}

ul.acts li .picture {
    width: 240px;
    margin-bottom: 0px;
}

.picture {
    width: 100%;
    max-width: 480px;
    margin-bottom: 20px;
    -moz-transition:    all 100ms ease;
    -webkit-transition: all 100ms ease;
    -o-transition:      all 100ms ease;
    -ms-transition:     all 100ms ease;
    transition:         all 100ms ease;
}

.act {
    color: #18493e;
}

.act .act-text {
    padding-top: 30px;
    font-size: 1.25em;
    margin-bottom: 15px;
}

.act .act-info {
    font-style: italic;
    font-size: 0.95em;
    font-weight: 300;
    margin-bottom: 20px;
}

.act .act-sheet {
    font-style: italic;
    font-size: 1.1em;
    margin-bottom: 10px;
}



.language-picker {
    list-style-type: none;
    margin: 0px;
    padding:  0px;
}

.language-picker li {
    display: inline-block;
    padding: 4px 6px;
}

.language-picker li a {
    padding-bottom: 2px;
}

.language-picker li.active a {
    border-bottom: solid #18493e 1px;
}
 
.rotate-right {
    -ms-transform: rotate(2deg); /* IE 9 */
    -webkit-transform: rotate(2deg); /* Chrome, Safari, Opera */
    transform: rotate(2deg);
}
.rotate-left {
    -ms-transform: rotate(-2deg); /* IE 9 */
    -webkit-transform: rotate(-2deg); /* Chrome, Safari, Opera */
    transform: rotate(-2deg);
}
.move-up {
    margin-top: -15px;
}
.move-down {
    margin-top: 15px;
}
.move-left {
    margin-left: -15px;
}
.move-right {
    margin-left: 15px;
}

a:hover .rotate-left {
    -ms-transform: rotate(-4deg); /* IE 9 */
    -webkit-transform: rotate(-4deg); /* Chrome, Safari, Opera */
    transform: rotate(-4deg);
}

a:hover .rotate-right {
    -ms-transform: rotate(4deg); /* IE 9 */
    -webkit-transform: rotate(4deg); /* Chrome, Safari, Opera */
    transform: rotate(4deg);
}

@media (min-width: 768px) {
    body {
        margin: 0 0 140px;
    }
}   