/*
 *  Copyright 2010 Anyware Services
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

/*
 *  Copyright 2015 Anyware Services
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */
 
* {
    box-sizing: border-box;
}

html  {
    height: 100%;
    font-family: 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;

    background-repeat: no-repeat;
    background-position: center center;
    background-color: #eff6fc;
    -webkit-background-size: cover;    
    -moz-background-size: cover;    
    -o-background-size: cover;    
    background-size: cover;  
    background-image: url('../img/bg.jpg');
}

header,  section,  footer {
    width: 100%;
    height: 100%;
}

 a {
    color: #9266CC;
    text-decoration: none;
} 

 a:hover {
    text-decoration: underline;
} 

div.wrapin {
    width: 50%; 
    box-sizing: border-box;
    min-width: 50em;
    display: inline-block;
    vertical-align: middle;
    
    margin: 0.25em 0;
    
    text-align: left;
    background-color: #CCCCCC;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #7d3d92;
    padding: 0.5em;
    color: #313131;
}

/**
 * HEADER / FOOTER
 */
 div.head, 
 div.foot {
    position: fixed;
    width: 100%;
    left: 0;

    background-color: #7f7f7f;
    background-color: rgba(0,0,0,0.5);
    
    color: #F0F0F0;
    font-weight: 100;
}
 div.head {
    top: 0;
    text-align: center;
    padding: 1.5em;

    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-position: 1.5em center;
    
}
 div.foot {
    bottom: 0;
    text-align: right;
    padding: 0.3em;
    font-size: 0.9em; 
    
    -webkit-animation-name: wakedown;
    -moz-animation-name: wakedown;
    -o-animation-name: wakedown;
    animation-name: wakedown;
}

/**
 * MAIN
 */
 div.main {
    position: relative;
    width: 100%;
    height: 100%;
        
    text-align: center;
    
    padding: 4.1em 0.5em 3.6em 0.5em; 
}
 div.scroll {
    width: 100%;
    height: 100%;
    overflow: auto;        
}
div.scroll > div {
    max-width: 100%;
}
table.inner {
    width: 100%;    
    height: 100%;
    table-layout: fixed;
}

 div.text {
    max-width: 100%;
    
    padding: 0.5rem;
    margin: 0 auto;
    
    font-size: 0.8em;
    text-align: left;
}

 div.text h1 {
    margin: 0.5em 0;
    padding-bottom: 0.2em;
    border-bottom: 1px solid #acacac;
    line-height: 1em;
    color: #9266CC;
    font-size: 1.6em;
    font-weight: 400;
}

 div.text h2 {
    margin: 0.5em 0;
    padding-bottom: 0.2em;
    line-height: 1em;
    font-size: 1.4em;
    font-weight: 400;
}

 div.text p {
   margin: 0 0 0.2em 0;
   line-height: 1.2em;
}

div.text ol li,
div.text ul li {
   margin: 0 0 0.2em 0;
   line-height: 1.2em;
}

div.text .button {
	color: #F0F0F0;
    background-color: #9d57b3;
    border-color: #9d57b3;
    padding: 0.5em 0.7em 0.5em 0.7em;
    font-size: 1.1em;
    text-decoration: none;
}

div.text .icon {
    position: relative;
	left: 0.4em;
    top: 0.4em;
}

div.text .button:hover {
	text-decoration: none;
}

/**
 * ANIMATIONS
 */
@keyframes wakeup {
    0% {
        top: -5em; 
    }
    100% {
        top: 0; 
    }
}

@keyframes wakedown {
    0% {
        bottom: -4em; 
    }
    100% {
        bottom: 0; 
    }
}

@keyframes wakeuprevert {
    0% {
        top: 0; 
    }
    100% {
        top: -5em; 
    }
}

@keyframes wakedownrevert {
    0% {
        bottom: 0; 
    }
    100% {
        bottom: -4em; 
    }
}

 div.head {
    -webkit-animation-name: wakeup;
    -moz-animation-name: wakeup;
    -o-animation-name: wakeup;
    animation-name: wakeup;
}
 .done div.head {
    top: -5em; 
    -webkit-animation-name: wakeuprevert;
    -moz-animation-name: wakeuprevert;
    -o-animation-name: wakeuprevert;
    animation-name: wakeuprevert;
} 

 div.foot {
    -webkit-animation-name: wakedown;
    -moz-animation-name: wakedown;
    -o-animation-name: wakedown;
    animation-name: wakedown;
}
 .done div.foot {
     bottom: -4em; 
    -webkit-animation-name: wakedownrevert;
    -moz-animation-name: wakedownrevert;
    -o-animation-name: wakedownrevert;
    animation-name: wakedownrevert;
}

 div.head, 
 div.foot {
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: ease;
    -moz-animation-timing-function: ease;
    -o-animation-timing-function: ease;
    animation-timing-function: ease;
}
 .done div.head, 
 .done div.foot {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/**
 * MOBILE
 */

@media screen and (max-width: 960px), screen and (max-height: 360px)) {
     html {
        font-size: 12px;
    }
}

/**
 * WAIT
 */

/*!
 * Load Awesome v1.1.0 (http://github.danielcardoso.net/load-awesome/)
 * Copyright 2015 Daniel Cardoso <@DanielCardoso>
 * Licensed under MIT
 */
.la-ball-pulse,
.la-ball-pulse > div {
    position: relative;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}
.la-ball-pulse {
    display: block;
    /*font-size: 0;*/
    color: #fff;
}
.la-ball-pulse.la-dark {
    color: #333;
}
.la-ball-pulse > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}
.la-ball-pulse > div:nth-child(1) {
    -webkit-animation-delay: -200ms;
       -moz-animation-delay: -200ms;
         -o-animation-delay: -200ms;
            animation-delay: -200ms;
}
.la-ball-pulse > div:nth-child(2) {
    -webkit-animation-delay: -100ms;
       -moz-animation-delay: -100ms;
         -o-animation-delay: -100ms;
            animation-delay: -100ms;
}
.la-ball-pulse > div:nth-child(3) {
    -webkit-animation-delay: 0ms;
       -moz-animation-delay: 0ms;
         -o-animation-delay: 0ms;
            animation-delay: 0ms;
}
.la-ball-pulse > div {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    -webkit-animation: ball-pulse 1s ease infinite;
       -moz-animation: ball-pulse 1s ease infinite;
         -o-animation: ball-pulse 1s ease infinite;
            animation: ball-pulse 1s ease infinite;
}
.la-ball-pulse {
    width: 4.25em;
    height: 1.475em;
}
.la-ball-pulse > div {
    width: 0.6em;
    height: 0.6em;
    margin: 0.3em;
}
/*
 * Animation
 */
@-webkit-keyframes ball-pulse {
    0%,
    60%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1);
    }
    30% {
        opacity: .1;
        -webkit-transform: scale(.01);
                transform: scale(.01);
    }
}
@-moz-keyframes ball-pulse {
    0%,
    60%,
    100% {
        opacity: 1;
        -moz-transform: scale(1);
             transform: scale(1);
    }
    30% {
        opacity: .1;
        -moz-transform: scale(.01);
             transform: scale(.01);
    }
}
@-o-keyframes ball-pulse {
    0%,
    60%,
    100% {
        opacity: 1;
        -o-transform: scale(1);
           transform: scale(1);
    }
    30% {
        opacity: .1;
        -o-transform: scale(.01);
           transform: scale(.01);
    }
}
@keyframes ball-pulse {
    0%,
    60%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
           -moz-transform: scale(1);
             -o-transform: scale(1);
                transform: scale(1);
    }
    30% {
        opacity: .1;
        -webkit-transform: scale(.01);
           -moz-transform: scale(.01);
             -o-transform: scale(.01);
                transform: scale(.01);
    }
}
le-type:none;
}
