﻿/*Definice celého těla obrazovky, spojí se se stylem v RS, který 
definuje především fonty*/
html, body 
{
	height: 100%;
}
BODY
{
    margin:0px; 
    padding:0px; 
    background-image: url("../pictures/topLineBackground.gif");
    background-repeat: repeat-x;
}
/*Vnitřek stránky*/
.pageContainer
{
    width: 833px;
    text-align: left;
    margin: 0px auto;
    display: block;
    overflow: hidden;    
    position: relative;
}
.headerContainer
{
    width: 100%;
    height: 222px;
    margin: 0px;
    margin-top: 38px;
    padding: 0px;    
    position: relative;
}
.logoContainer
{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 283px;
    height: 222px;
    background-image: url("../pictures/logo.gif");
}
.logoContainer IMG
{
    border: 0px;
    width: 276px;
    height: 216px;
}

.mainContainer
{
    width: 100%;
    margin: 0px;
    margin-top: 10px;
    padding: 0px;    
    position: relative; 
}
.columnBackgroundHelper
{
    background-image: url("../pictures/mainBackground.gif");
    background-repeat:  repeat-y;
    background-position: top left;
    margin: 0px;
    padding: 0px;  
}
.leftColumnContainer
{   
    float: left; 
    width: 278px;    
    margin: 0px;
    border-top: solid 4px #E97038;  
}
.middleColumnContainer
{
    float: right;
    border-top: solid 1px #DBA167;
    width: 498px;
    padding: 25px 15px 25px 15px;
    overflow: hidden;
}

/*spolecne definice pouzivane obecne*/
.cleaner1
{
    height: 1px;
    display: block;
    overflow:hidden;
    clear: both;
    background-image: url("../pictures/bottomLine.gif");
}
.cleaner
{
    clear: both;
}
.toLeft
{
    text-align: left;
}
.toRight
{
    text-align: right;
}
