﻿/*Definice celého těla obrazovky, spojí se se stylem v RS, který 
definuje především fonty*/
html, body 
{
    position: relative;
    height: 100%;
    font-family: Trebuchet MS;
    font-size: 12px;
    background-color: Black;
    height: 100%;
}
BODY
{
    margin-top: 30px;
}
#outer 
{       
    width: 100%;
    height: 768px;
    overflow: hidden; 
    position: relative;
}
#outer[id] {display: table; position: static;}

#middle  /* for explorer only*/
{    
    position: absolute; 
    *top: 50%;    
} 
#middle[id] 
{        
    display: table-cell; 
    vertical-align: middle;
    width: 100%;
}

#inner 
{
    position: relative; 
    margin:0px auto;  
    top: -50%; 
    width: 757px;
    height: 531px;
    background-image: url("../pictures/Intro.jpg");
    background-repeat: no-repeat;
    background-position: center center;    
} /* for explorer only */


.languageSelectorContainer
{
    position: relative;
    margin: 40px auto 0px auto;
    float:right;
    right:50%;
}
.languageSelectorContainerHelper
{
    position:relative;
    float:left;
    left:50%;
}
.languageSelectorContainer SELECT
{
    margin: 3px 5px 0px 5px;
    padding: 0px 0px;
    height: 20px;
    border: solid 0px white;
    font-size: 13px;
    font-family: Trebuchet MS;
}
.languageSelectorContainer .leftCorner, .languageSelectorContainer .middle, .languageSelectorContainer .rightCorner
{
    display: block;
    float: left;
    background-position: top left;
    height: 26px;        
}
.languageSelectorContainer .leftCorner
{
    width: 5px;
    background-image: url("../pictures/introLeftCorner.gif");
    background-repeat: no-repeat;
}
.languageSelectorContainer .rightCorner
{
    width: 5px;
    background-image: url("../pictures/introRightCorner.gif");
    background-repeat: no-repeat;
    margin-right: 18px;
}
.languageSelectorContainer .middle
{
    background-image: url("../pictures/introBackground.gif");
    background-repeat: repeat-x;
}
