/*
 * Copyright 2013 Google Inc.
 *
 *   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.
 *
 *   Author: Martin Gorner (mgorner@google.com)
 */

/*************************************/
/*        caption decorations        */
.caption
{
    margin: 10px;
    font-size: xx-large;
    font-style: normal;
    font-variant: small-caps;
    font-family: sans-serif;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 5px rgb(100, 100, 130), -3px -3px 5px rgb(100,100,130), 3px -3px 5px rgb(100,100,130), -3px 3px 5px rgb(100,100,130);
}
.caption a:visited
{
    color: white;
}
.caption a:link
{
    color: white;
}
.caption a
{
    text-decoration: none;
}
.title
{
    text-align: left;
    font-size: 40px;
    text-shadow: 3px 3px 5px rgb(130, 100, 100), -3px -3px 5px rgb(130,100,100), 3px -3px 5px rgb(130,100,100), -3px 3px 5px rgb(130,100,100);
}

body
{
    background-image: url('bg.png');
    background-size: 400px;
}

/*************************************/
/*       positioning in screen       */

.screen-centered
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin-left: -50px;
    margin-top: -50px;
}

.screen-left-column
{
    float: left;
    min-width: 290px;
    width: 25%;
    margin: 0px;
    height: 100%;
}

.screen-centered-lc /*centered with left column*/
{
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    min-width: 1140px; /* 850 + 290 */
    height: 850px;
    margin-top: -425px;
}

.screen-main-container-lc /* centered with left column*/
{
    display: inline-block;
    position: relative;
    height: 100%;
    width: 850px;
}

div.tiled
{
    position: absolute;
    margin: 10px;
    margin-top: 100px;
    width: 270px;
    height: 160px;

    text-align: center;
}
.center
{
    text-align: center;
}
