 /* rozložení webu */
  /*Info: 1024x768 v levy: - toto je pro rozliseni 800px = neměl by překročit 760px*/
 
 #obalovaci {
 margin: 0px auto;
 position: relative;
 width:1024px;
 color: yellow
 }
 
 #obsah {
 position: absolute;
 width: 670px;
 top: 180px;
 left: 140px;
 padding: 20px;
 background-color: DarkRed;
 border-style: none;
 border-width: medium
 }
 
 #hlavicka {
 position: absolute;
 width: 990px;
 height: 180px;
 top: 0px;
 left: 0px;
 background-color: black;
 border-style: none;
 border-width: medium 
 }
 
 #levy {
 position: absolute;
 width: 140px;
 top: 180px;
 left: 0px;
 background-color: #444444;
 border-style: none;
 border-width: medium 
 }
 
 #pravy{
 position: absolute;
 width: 140px;
 top: 180px;
 left: 850px;
 background-color: #444444;
 border-style: none;
 border-width: medium 
 }
 
 /* nastylování tagů */
 body {
 background-color: DarkRed
 }
 
 a:link {
 color: orange
 }
 
 a:hover {
 color: white
 } 
 
 a:visited {
 color: grey
 } 