﻿/*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/background.gif");
    background-repeat: repeat;
}
/*Vnitřek stránky*/
.pageContainer
{
    width: 951px;
    text-align: left;
    margin: 0px auto;
    display: block;
    overflow: hidden;
}
.headerContainer
{
    display: none;
}
.footerContainer
{
    display: none;
}
.leftColumnContainer
{
    display: none;
}
.rightColumnContainer
{
    display: none;
}
.middleColumnContainer
{
    width: 543px;
    padding: 10px 10px 0px 10px;
    overflow: hidden;
}
/*spolecne definice pouzivane obecne*/
.cleaner
{
    height: 1px;
    clear: both;
}
.toLeft
{
    text-align: left;
}
.toRight
{
    text-align: right;
}
