/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.
 */


* {
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
}

body {
    -webkit-touch-callout: none;                /* prevent callout to copy image, etc when tap to hold */
    -webkit-text-size-adjust: none;             /* prevent webkit from resizing text to fit */
    -webkit-user-select: none;                  /* prevent copy paste, to allow, change 'none' to 'text' */
    background-color:#ffffff;
    background-image: url(../img/background.png);
    background-repeat: no-repeat;
    background-size: cover;
    /*background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #E4E4E4)
    );
    */
    background-attachment:fixed;
    font-family: Avenir, Verdana, Helvetica, Arial, sans-serif;
    font-size:14px;
    color: #FF00FF;
    height:100%;
    margin:0px;
    padding:0px;
    width:100%;
}
/* Force Element To Self-Clear its Children (Updated Clearfix, Option 2): http://css-tricks.com/snippets/css/clear-fix/ */
.clearfix:after {
        visibility: hidden;
        display: block;
        content: "";
        clear: both;
        height: 0;
}

/* Landscape layout (with min-width) */
@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:0px 0px 0px 170px;  /* padding-top + padding-bottom + text area = image height */
        margin:-90px 0px 0px -198px;  /* offset vertical: half of image height */
                                      /* offset horizontal: half of image width and text area width */
    }
    #log {
        width: 75%;
    }
}

#header {
    text-align: center;
    height: 0%;
    background-image: url(../img/logo-en.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0% 0% 0% 0%
}

#footer {
	padding: 0px;
	background-color: #FFFFFF;
}

#content-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

#container {
    text-align: center;
    width: 100%;
    height: 100%;
}

#content {
}

.info {
    display: inline-block;
}

label.info {
    min-width: 95px;
    text-align: right;
    font-weight: normal;
}

.notice {
    font-weight: bold;
}

#status {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
}

#log {
    height: 150px;
    width: 90%;
    background-color: #333333;
    color: #FFFFFF;
    font-size: 12px;
    padding: 1%
}

#notice {
    margin-top: 10px;
}

#footer {
    text-align: center;
}