<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html{

&lt;head&gt;
&lt;script LANGUAGE="JavaScript" FPTYPE="dynamicanimation8"&gt;
&lt;!--

dynamicanimAttr = "dynamicanimation8"
animateElements = new Array()
currentElement = 0
speed = 5
stepsZoom = 10
stepsWord = 10
stepsFly = 12
stepsSpiral = 16
steps = stepsZoom
step = 0
outString = ""
function dynAnimation8()
{
var ms = navigator.appVersion.indexOf("MSIE")
ie4 = (ms&gt;0) &amp;&amp; (parseInt(navigator.appVersion.substring(ms+5, ms+6)) &gt;= 4)
if(!ie4)
{
if((navigator.appName == "Netscape") &amp;&amp;
(parseInt(navigator.appVersion.substring(0, 1)) &gt;= 4))
{
for (index=document.layers.length-1; index &gt;= 0; index--)
{
layer=document.layers[index]
if (layer.left==10000)
layer.left=0
}
}
return
}
for (index=document.all.length-1; index &gt;= document.body.sourceIndex; index--)
{
el = document.all[index]
animation = el.getAttribute(dynamicanimAttr, false)
if(null != animation)
{
if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
{
ih = el.innerHTML
outString = ""
i1 = 0
iend = ih.length
while(true)
{
i2 = startWord(ih, i1)
if(i2 == -1)
i2 = iend
outWord(ih, i1, i2, false, "")
if(i2 == iend)
break
i1 = i2
i2 = endWord(ih, i1)
if(i2 == -1)
i2 = iend
outWord(ih, i1, i2, true, animation)
if(i2 == iend)
break
i1 = i2
}
document.all[index].innerHTML = outString
document.all[index].style.posLeft = 0
document.all[index].setAttribute(dynamicanimAttr, null)
}
if(animation == "zoomIn" || animation == "zoomOut")
{
ih = el.innerHTML
outString = "&lt;SPAN " + dynamicanimAttr + "=\"" + animation + "\" style=\"position: relative; left: 10000;\"&gt;"
outString += ih
outString += "&lt;/SPAN&gt;"
document.all[index].innerHTML = outString
document.all[index].style.posLeft = 0
document.all[index].setAttribute(dynamicanimAttr, null)
}
}
}
i = 0
for (index=document.body.sourceIndex; index &lt; document.all.length; index++)
{
el = document.all[index]
animation = el.getAttribute(dynamicanimAttr, false)
if (null != animation)
{
if(animation == "flyLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = 0
}
else if(animation == "flyRight")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = 0
}
else if(animation == "flyTop" || animation == "dropWord")
{
el.style.posLeft = 0
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyBottom")
{
el.style.posLeft = 0
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "flyTopLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyTopRight" || animation == "flyTopRightWord")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyBottomLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "flyBottomRight" || animation == "flyBottomRightWord")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "spiral")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "zoomIn")
{
el.style.posLeft = 10000
el.style.posTop = 0
}
else if(animation == "zoomOut")
{
el.style.posLeft = 10000
el.style.posTop = 0
}
else
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = 0
}
el.initLeft = el.style.posLeft
el.initTop = el.style.posTop
animateElements[i++] = el
}
}
window.setTimeout("animate();", speed)
}
function offsetLeft(el)
{
x = el.offsetLeft
for (e = el.offsetParent; e; e = e.offsetParent)
x += e.offsetLeft;
return x
} 
function offsetTop(el)
{
y = el.offsetTop
for (e = el.offsetParent; e; e = e.offsetParent)
y += e.offsetTop;
return y
} 
function startWord(ih, i)
{
for(tag = false; i &lt; ih.length; i++)
{
c = ih.charAt(i)
if(c == '&lt;')
tag = true
if(!tag)
return i
if(c == '&gt;')
tag = false
}
return -1
}
function endWord(ih, i)
{
nonSpace = false
space = false
while(i &lt; ih.length)
{
c = ih.charAt(i)
if(c != ' ')
nonSpace = true
if(nonSpace &amp;&amp; c == ' ')
space = true
if(c == '&lt;')
return i
if(space &amp;&amp; c != ' ')
return i
i++
}
return -1
}
function outWord(ih, i1, i2, dyn, anim)
{
if(dyn)
outString += "&lt;SPAN " + dynamicanimAttr + "=\"" + anim + "\" style=\"position: relative; left: 10000;\"&gt;"
outString += ih.substring(i1, i2)
if(dyn)
outString += "&lt;/SPAN&gt;"
}
function animate()
{
el = animateElements[currentElement]
animation = el.getAttribute(dynamicanimAttr, false)
step++
if(animation == "spiral")
{
steps = stepsSpiral
v = step/steps
rf = 1.0 - v
t = v * 2.0*Math.PI
rx = Math.max(Math.abs(el.initLeft), 200)
ry = Math.max(Math.abs(el.initTop), 200)
el.style.posLeft = Math.ceil(-rf*Math.cos(t)*rx)
el.style.posTop = Math.ceil(-rf*Math.sin(t)*ry)
}
else if(animation == "zoomon")
{
steps = stepsZoom
el.style.fontSize = Math.ceil(50+50*step/steps) + "%"
el.style.posLeft = 0
}
else if(animation == "zoomOut")
{
steps = stepsZoom
el.style.fontSize = Math.ceil(100+200*(steps-step)/steps) + "%"
el.style.posLeft = 0
}
else
{
steps = stepsFly
if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
steps = stepsWord
dl = el.initLeft / steps
dt = el.initTop / steps
el.style.posLeft = el.style.posLeft - dl
el.style.posTop = el.style.posTop - dt
}
if (step &gt;= steps) 
{
el.style.posLeft = 0
el.style.posTop = 0
currentElement++
step = 0
}
if(currentElement &lt; animateElements.length)
window.setTimeout("animate();", speed)
}
//--&gt;
&lt;/script&gt;
&lt;title&gt;&lt;/title&gt;
&lt;style fprolloverstyle&gt;A:hover {color: #FF0000; text-transform: capitalize; font-style: italic; font-weight: bold}
&lt;/style&gt;
&lt;/head&gt;

&lt;BODY onload="dynAnimation8()" 
&lt;p align="center" dynamicanimation8="dropWord" style="position: relative !important; left: 10000 !important"&gt;&lt;font color="#FF0000"&gt;&lt;b&gt;&lt;i&gt;&lt;big&gt;&lt;big&gt;No front page Ã© 
so apagar essa mensagem e comeÃ§ar a fazer a sua&lt;/big&gt;&lt;/big&gt;&lt;/i&gt;&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;
	height: 100%;
}

#nonFooter {
	position: relative;
	min-height: 100%;
	padding-bottom: 54px;
}

* html #nonFooter {
	height: 100%;
}

.rbcAdPosition {
    margin-bottom: 10px;
}
#contactBlock {
    overflow: visible;
}



body {
	height: 100%;
	text-align: center;
	font: 0.80em Arial, Tahoma, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	background: #AD2625;
}
#body_bg {
	width: 100%;
	height: 100%;
	background: #AD2625 url(../img/body.jpg) repeat-x top;
}
h1, h2, h3, h4, h5, h6, h7, p, ul, ol, li, cite, hr, fieldset, img, dl, dt, dd {
	margin: 0;
	padding: 0;
}



ul, li {
	list-style-type: none;
	list-style: none;
}

.content ol {
	margin-left: 40px;
}
.content ol li ol, .content ol li ul {
	margin-left: 0;
}
.content ol li {
	list-style: decimal outside none;
	list-style-type: decimal;
}
.content ol li ol {
	margin-left: 20px;
}

.content ul {
	margin-left: 20px;
}
.content ul li ul {
	margin-left: 0;
}
#middlezone .content ul li, #middlezone_wide .content ul li {
	background: url(../img/seda-hvezda.png) no-repeat left 6px;
	padding:	3px 0 3px 15px;
}
#middlezone .content ul li ul li, #middlezone_wide .content ul li ul li {
	background: url(../img/seda_sipka.png) no-repeat scroll 0 7px;
	padding: 3px 0 3px 15px;
}
#leftzone .content ul li, #rightzone .content ul li {
	background: url(../img/seda-hvezda-tmave-bg.jpg) no-repeat left 6px;
	padding:	3px 0 3px 15px;
}
#leftzone .content ul li ul li, #rightzone .content ul li ul li {
	background: url(../img/seda_sipka_dark.png) no-repeat left 7px;
	padding: 3px 0 3px 15px;
}

table {
	margin: 6px 10px;
	border-collapse: collapse;
}
table tbody tr td {
	padding: 3px 7px;
	text-align: left;
	vertical-align: top;
	color: #CDCDCD;
}
table thead tr td {
	font-weight: bold;
	color: #CDCDCD;
}

.modernTable thead tr td {
	background: #3C3C3C;
	border: 1px solid #696969;	
	color: #CE211F;
}
.modernTable tbody tr td {
	border: 1px solid #696969;	
	color: #cdcdcd;
}
		
hr {
	height: 0;
	margin-left: 0;
	margin-right: 0;
	background: 0;
	border-width: 0 1px 1px 1px;
	border-style: solid;
	border-color: #CE211F;
}

.hidden, #hidden {
	position: absolute;
	display: none;
}
.cleaner {
	display: block;
	clear: both;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 0;
	line-height: 0;
	margin: 0;
	padding: 0;
}
input.submit {
	background: url(../img/btn_bg.png) repeat-x;
	height: 22px;
	border: none;
	color: #FFFFFF;
	text-transform: uppercase;
	margin: 0;
	padding: 0 5px 0 5px;
	*padding: 0 8px 0 8px;
	font-weight: bold;
	cursor: pointer;	
  width: 0;
  overflow: visible;
}
.submit[class] {  /* IE ignores [class] */
    width: auto;
}
.submit:hover {
	background: url(../img/btn_bg_hover.png) repeat-x;
	height: 22px;
	border: none;
	color: #FFFFFF;
	text-transform: uppercase;
	margin: 0;
	padding: 0 5px 0 5px;
	*padding: 0 8px 0 8px;
	font-weight: bold;
	cursor: pointer;	
  width: 0; 
  overflow: visible;
}
.submit[class]:hover {  /* IE ignores [class] */
    width: auto; 
}

/* ---------- vzhled textu ------------------ */

blockquote {
	color: #CE211F;
	font-style: italic;
	padding: 10px;
	margin: 5px;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.6em;
}
h4 {
	font-size: 1.4em;
}
h5 {
	font-size: 1.2em;
}
h6 {
	font-size: 1em;
}

/* ---------- vzhled textu ------------------ */


.rbcReplaceTextColor {
	font-size: 0.85em;
}
.emptyBlockContent .rbcReplaceTextColor {
  font-size: 1em !important;
}

/* --------- waiting -------------------------- */

#waitingTable {
	width: 100%; 
	height: 100%; 
}
#waitingTable td {
	height: 100px;
	text-align: center;
	vertical-align: middle;
}

/* --------- waiting -------------------------- */


#site {
	width: 770px;
	height: 100%;
	margin: 0 auto;
	text-align: left;
	padding: 0;
	position: relative;
	min-height: 100%;
	background: #000000;
}

#header {
	width: 770px;
	height: 242px;
	position: relative;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#header #logozone {
	width: 350px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 400px;
	z-index: 5;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
#header #logozone #logo {
	font-size: 2.2em;
	font-weight: bold;
	max-height: 30px;
	_height: expression(this.scrollHeight &gt; 30? "30px" : "auto" );
	line-height: 1em;
	overflow: hidden;
	margin: 10px 0 0;
	color: #b61c11;
}
#header #logozone #logo a {
	color: #b61c11;
	text-decoration: none;
}
#header #logozone #logo a:hover {
  color: #b61c11;
	/* color: #bb4942; */
	text-decoration: none;
}
#header #logozone #logo img {
	border: none;
}
#header #logozone #moto {
	font-size: 1.2em;
	color: #636363;
	font-weight: bold;
	padding: 0;
	margin: 1px 0 0;
}
#header .illustration {
	position: relative;
	width: 770px;
	height: 242px;
	overflow: hidden;
	z-index: 0;
}

/* ------------ menu ------------------------- */
#menuzone {
	width: 770px;
	height: 44px;
	background: url(../img/menu_bg.jpg) no-repeat left top;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 242px;
	left: 0;
}

#mainMenu {
	left: 0;
	overflow: visible;
	position: absolute;
	top: 217px;
}

#mainMenu #menuzone {
	top: 25px;
}	


/* reset default styles */
#menuId {
	height: 44px;
	margin: 0 10px 0 10px;
	_margin: 0 5px 0 5px;
	float: left;
	z-index: 100;
}
#menuId ul {
	margin: 0;
	padding: 0; 
	z-index: 100;
}
#menuId li {
	list-style-type: none;
	z-index: 100;
}

/* first level */
#menuId li, #menuId a {
	float: left;
	display: block; 
	z-index: 100;
}
#menuId a {
	display: block;
	padding: 0 15px 0 40px;
	line-height: 44px;
	color: #FFFFFF;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	background: url(../img/hvezda.gif) no-repeat 10px 12px;
	z-index: 100;
}
#menuId a:hover, #menuId a.menu_open, #menuId .selected, #menuId .activeSelected {
	background: #AD4C48 url(../img/hvezda-hover.gif) no-repeat 10px 12px;
	z-index: 100;
}

/* second level */
#menuId ul {
	visibility: hidden; 
	position: absolute;
	background-color: #9c160b;
	width: 13em;
	_width: 14em;
	z-index: 100;
	visibility: hidden;
} 
#menuId ul a {
	width: 13em;
	_width: 14em;
	color: #FFFFFF;
	line-height: 1.5em;
	padding: 7px 5px 7px 20px;
	font-size: 1em;
	font-weight: bold;
	text-transform: none;
	text-decoration: none;
	background: #9c160b url(../img/hvezda-small.jpg) no-repeat 5px 10px;
	z-index: 100;
}
#menuId ul a:hover, #menuId ul a.menu_open, #menuId ul.selected a, #menuId ul .activeSelected a {
	background: #A4403D url(../img/hvezda-small-hover.jpg) no-repeat 5px 10px;
	z-index: 100;
}

/* --------------------- class menu ---------------------- */
/* reset default styles */
.menu {
	height: 44px;
	margin: 0 10px 0 10px;
	_margin: 0 5px 0 5px;
	float: left;
	z-index: 100;
}
.menu ul {
	margin: 0;
	padding: 0; 
	z-index: 100;
}
.menu li {
	list-style-type: none;
	z-index: 100;
}

/* first level */
.menu li, .menu a {
	float: left;
	display: block; 
	z-index: 100;
}
.menu a {
	display: block;
	padding: 0 15px 0 40px;
	line-height: 44px;
	color: #FFFFFF;
	font-size: 1em;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	background: url(../img/hvezda.gif) no-repeat 10px 12px;
	z-index: 100;
}
.menu a:hover, .menu a.menu_open, .menu .selected, .menu .activeSelected {
	background: #AD4C48 url(../img/hvezda-hover.gif) no-repeat 10px 12px;
	z-index: 100;
}

/* second level */
.menu ul {
	visibility: hidden; 
	position: absolute;
	background-color: #9c160b;
	width: 13em;
	_width: 14em;
	z-index: 100;
	visibility: hidden;
} 
.menu ul a {
	width: 13em;
	_width: 14em;
	color: #FFFFFF;
	line-height: 1.5em;
	padding: 7px 5px 7px 20px;
	font-size: 1em;
	font-weight: bold;
	text-transform: none;
	text-decoration: none;
	background: #9c160b url(../img/hvezda-small.jpg) no-repeat 5px 10px;
	z-index: 100;
}
.menu ul a:hover, .menu ul a.menu_open, .menu ul .selected a, .menu ul .activeSelected a {
	background: #A4403D url(../img/hvezda-small-hover.jpg) no-repeat 5px 10px;
	z-index: 100;
}

/* ------------ menu ------------------------------ */


/* ------------ navigator -------------------- */
#navigator {
	overflow: hidden;
	background-color: #161616;
	margin: 40px 0 0 0; 
	_margin: 30px 0 0 0;
	/*padding: 15px 0 0 0;*/
	font-size: 0.9em;
	color:  #9B9B9B;
}

#pageNavigator {
	margin: 18px 0 11px 35px;
	/*padding: 10px 0 10px 35px;*/
	padding: 0;
	_margin: 23px 0 0 15px;
	float: left;
	width: 450px;
	overflow: hidden;
}
#pageNavigator span {
	padding-left: 3px;
	padding-right: 3px;
}
#pageNavigator #navCurrentPage {
	color: #9B9B9B;
	font-weight: bold;
}
#pageNavigator a, #pageNavigator a:visited {
	color: #9B9B9B;
	text-decoration: underline;
}
#pageNavigator a:active, #pageNavigator a:hover {
	color: #BC4942;
	text-decoration: underline;
}

/* ------------ navigator -------------------- */
/* --------- languageSelect ----------------- */

#languageSelect {
	padding: 0 30px 0 0;
	width: 240px; 
	_width: 200px;
	float: right;
	overflow: hidden;
}
#languageSelectBody {
	text-align: right;
	margin: 18px 0 15px 0;
	_margin: 23px 0 0 0;
}
#languageSelect ul {
    display: none;
}
#languageFlags {
	float:right;
	margin-bottom: 13px;
	_margin-bottom: 0;
}
#languageSelect #languageFlags a {
    text-decoration: none;
    display: block;
    width: 16px;
    height: 16px;
    float: left;
    margin-left: 7px;
	 _margin-bottom: 0;
    background: transparent center center no-repeat;
}
#languageList {
	color: #9B9B9B;
}
#languageList a, #languageList a:visited {
	color: #9B9B9B;
	text-decoration: underline;
}
#languageList a:active, #languageList a:hover {
	color: #BC4942;
	text-decoration: underline;
}
.languageSelectbox {
	background-color: #000000;
	border: 1px solid #484848;
	color: #CDCDCD;
	font-size: 1em;
	min-width: 100px;
	padding: 1px;
	margin: -2px 0 -2px 0;
}
/* --------- languageSelect ----------------- */


#telo {
	width: 770px;
	background-color: #000000;
	color: #FFFFFF;
	padding: 15px 0 0 0;
	margin: 0;
	overflow: hidden;
	clear: left;
}
#middlezone {
	width: 388px;
	float: left;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#middlezone #content {
	padding: 0 20px 10px 10px;
	overflow: hidden;
}

#middlezone_wide {
	width: 578px;
	float: left;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#middlezone_wide #content {
	padding: 0 20px 10px 10px;
	overflow: hidden;
}

#middlezone .nadpis, #middlezone h1, #middlezone h2 {
	width: 298px;
	_width: 358px;
	background: url(../img/nadpis_bg_w.png) no-repeat left bottom;	
	font-size: 1.4em;
	font-weight: bold;
	padding-left: 60px;
	padding-bottom: 20px;
	margin-bottom: 10px;	
	padding-top: 15px;
	line-height: 1.4em;
}
#middlezone_wide .nadpis, #middlezone_wide h1, #middlezone_wide h2 {
	width: 488px;
	_width: 548px;
	background: url(../img/nadpis_bg_w.png) no-repeat left bottom;	
	font-size: 1.4em;
	font-weight: bold;
	padding-left: 60px;
	padding-bottom: 20px;
	margin-bottom: 10px;
	padding-top: 15px;
	line-height: 1.4em;
}




#leftB {
	width: 279px;
	float: left;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#leftB #contentLeftB {
	padding: 0 0 10px 0;
	margin: 0 0 0 10px;
	overflow: hidden;
}
#leftB #contentLeftB p {
	padding: 5px 5px 5px 10px;
}
#leftB .nadpis, #leftB h1, #leftB h2 {
	width: 210px;
	_width: 220px;
	background: url(../img/nadpis_bg_w.png) no-repeat left bottom;	
	font-size: 1.4em;
	font-weight: bold;
	padding-left: 60px;
	padding-bottom: 20px;
	margin-bottom: 10px;
	padding-top: 15px;
	line-height: 1.4em;
}


#rightB {
	width: 279px;
	float: left;
	padding: 0;
	margin: 0;
	overflow: hidden;
}
#rightB #contentRightB {
	padding: 0 0 10px 0;
	margin: 0 0 0 15px;
	overflow: hidden;
}
#rightB #contentRightB p {
	padding: 5px 5px 5px 10px;
}
#rightB .nadpis, #rightB h1, #rightB h2 {
	width: 210px;
	_width: 220px;
	background: url(../img/nadpis_bg_w.png) no-repeat left bottom;	
	font-size: 1.4em;
	font-weight: bold;
	padding-left: 60px;
	padding-bottom: 20px;
	margin-bottom: 10px;
	padding-top: 15px;
	line-height: 1.4em;
}


#middlezone_wide .Box .content, #middlezone .Box .content, #middlezone_wide #leftB .Box .content, #middlezone_wide #rightB .Box .content {
	padding: 5px 10px 5px 10px;
}
#middlezone_wide .Box .content p, #middlezone .Box .content p {
	padding: 5px 0 5px 0;
}
#middlezone_wide #leftB .Box .content p, #middlezone_wide #rightB .Box .content p {
	padding: 5px 0 5px 0;
	overflow: hidden;
}

#middlezone_wide .Box h3 a, #middlezone .Box h3 a {
	color: #CE211F;
	padding-bottom: 0;
	margin-bottom: 0;
	text-decoration: underline;
}
#middlezone_wide .Box h3 a:hover, #middlezone .Box h3 a:hover {
	color: #BC4942;
	padding-bottom: 0;
	margin-bottom: 0;
	text-decoration: underline;
}

.Box {
	margin-bottom: 10px;
	overflow: hidden;
}

.box p {
	padding: 0 0 10px 10px;
	overflow: hidden;
}
.box p img {
	overflow: hidden;
}

#content p {
	padding: 0 0 10px 10px;
	overflow: hidden;
}
#content p img {
	overflow: hidden;
}

/* ------------ zpetny odkaz ----------------- */

#content .backLink {
	margin: 10px 0 5px;
	padding-left: 20px;
	text-align: left;
}
#contentLeftB .backLink, #contentRightB .backLink {
	margin: 10px 0 5px 10px;
	padding-left: 20px;
	text-align: left;
}
.backLinkB {
	margin: 10px 0 5px 10px;
	text-align: left;
}

.Box .backLink {
	margin: 10px 0 0 0;
	padding-left: 10px;
	text-align: left;
}
.backLink a, .Box .backLink a, .backLinkB a {
	text-decoration: underline;	
	color: #CE211F;
	font-weight: bold;
}
.backLink a:hover. .Box .backLink a:hover, .backLinkB a:hover {
	color: #BC4942;
	text-decoration: underline;
	font-weight: bold;
}

/* ------------ zpetny odkaz ----------------- */

/* ------------ faq -------------------------- */
.question {
	padding: 0 0 0 10px;
}
#leftzone .question, #rightzone .question {
	padding: 0;
}
.question .dotaz {
	background: url(../img/seda-hvezda.png) no-repeat 0 3px;
	color: #CE211F;
	font-weight: bold;
	font-size: 1em;
	padding: 0 0 5px 20px;
}
#leftzone .Box .content .question .dotaz, #rightzone .Box .content .question .dotaz {
	background: url(../img/seda-hvezda-tmave-bg.jpg) no-repeat 0 4px;
	color: #CE211F;
	font-weight: bold;
	font-size: 1em;
	padding: 0 0 5px 15px;
}
.question .odpoved {
	padding: 0 0 5px 10px;
	overflow: hidden;
}
#middlezone .question .odpoved, #middlezone_wide .question .odpoved {
	padding: 0 0 5px 20px;
	overflow: hidden;
}
#middlezone_wide #leftB .question .odpoved, #middlezone_wide #rightB .question .odpoved {
	padding: 0 0 5px 20px;
	overflow: hidden;
}
#leftzone .question .odpoved, #rightzone .question .odpoved {
	padding: 0 0 5px 0;
	overflow: hidden;
}
#leftzone .question .odpoved h1, #leftzone .question .odpoved h2, #rightzone .question .odpoved h1, #rightzone .question .odpoved h2 {
	background: none;
	padding: 0;
}
/* ------------ faq -------------------------- */

/* ------------ clanky ----------------------- */

.article {
	padding: 0 0 0 10px;
	margin: 0 0 10px 0;
}
.article .nazev {
	background: url(../img/seda-hvezda.png) no-repeat left top;
	color: #CE211F;
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.1em;
	padding: 0 0 0 20px;
}
.nazev a {
	color: #CE211F;
}
.nazev a:hover {
	color: #BC4942;
}
.article .text {
	padding: 0 0 5px 20px;
	margin: 5px 0 0 0;
	overflow: hidden;
}
.Box .article .text p {
	padding-top: 7px;
	
}
.article ins {
	padding: 0 0 0 20px;
	color: #888888;
	font-size: 0.8em;
	text-decoration: none;
	margin-bottom: 5px;
}
.article .linkMore {
	padding: 0 0 0 20px;
	margin: 0;
	visibility: hidden;
}



#rightB .article .text, #leftB .article .text {
	padding: 0 0 5px 10px;
	margin: 5px 0 0 0;
	overflow: hidden;
}
#rightB .Box .article .text p, #leftB .Box .article .text p {
	padding-top: 7px;
	margin-left: -10px
}


#leftzone .article, #rightzone .article {
	padding: 0 0 0 0;
	margin: 0 0 10px 0;
}
#leftzone .Box .content .article .nazev, #rightzone .Box .content .article .nazev {
	background: none;
	color: #CE211F;
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.1em;
	padding: 0;
}
#leftzone .article .text, #rightzone .article .text {
	padding: 0 0 5px 0;
	margin: 5px 0 0 0;
	overflow: hidden;
}
#leftzone .article .text p, #rightzone .article .text p {
	padding-top: 7px;
}
#leftzone .article ins, #rightzone .article ins {
	padding: 0 0 0 0;
	color: #888888;
	font-size: 0.8em;
	text-decoration: none;
	margin-bottom: 5px;
}
#leftzone .article .linkMore, #rightzone .article .linkMore {
	padding: 0 0 0 0;
	margin: 0;
	visibility: hidden;
}
#leftzone .pagingInfo, #rightzone .pagingInfo {
	margin: 10px 0 10px 0;
}
#leftzone .linkBlock, #rightzone .linkBlock  {
	margin: 10px 0 0 0;
}
.linkBlock {
	font-size: 0.9em;
}



#middlezone .article .text, #middlezone_wide .article .text {
	padding: 0 0 5px 20px;
	margin: 5px 0 0 0;
	overflow: hidden;
	line-height: 1.2em;
}
#middlezone .articleDetail .text, #middlezone_wide .articleDetail .text {
	padding: 0 0 5px 10px;
	margin: 5px 0 0 0;
	overflow: hidden;
}
#middlezone .articleDetail ins, #middlezone_wide .articleDetail ins {
	padding: 0 0 0 20px;
	color: #888888;
	font-size: 0.85em;
	text-decoration: none;
	margin-bottom: 5px;
}

#middlezone .Box .article .text p, #middlezone_wide .Box .article .text p {
	padding-top: 7px;
	/*margin-left: -10px*/
}
#middlezone .article ins, #middlezone_wide .article ins {
	padding: 0 0 0 20px;
	color: #888888;
	font-size: 0.85em;
	text-decoration: none;
	margin-bottom: 5px;
}

.rbcBookmarks {
	margin-left: 20px;
}
#leftB .rbcBookmarks, #rightB .rbcBookmarks {
	margin: 10px 0 0 30px;
}

#leftB .articleDetail .rbcBookmarks, #rightB .articleDetail .rbcBookmarks {
	margin: 10px 0 0 20px;
}


.rbcTags {
	margin-left: 20px;
}
#leftB .rbcTags, #rightB .rbcTags {
	margin-left: 30px;
	margin-top: 5px;
}
.rbcTags h4 {
	color: #CE211F;
	float: left;
	font-size: 1.1em;
}
#leftB #contentLeftB .rbcTags h4, #rightB #contentLeftB .rbcTags h4 {
	color: #CE211F;
	float: left;
	font-size: 1.1em;
	margin-right: 5px;
}
.rbcTags .tags {
	color: #CDCDCD;
}
#leftB #contentLeftB .rbcTags p.tags, #leftB #contentLeftB .rbcTags p.tags {
	padding: 0;
	color: #CDCDCD;
}
.rbcTags a {
	color: #CDCDCD;
	text-decoration: underline;
}
.rbcTags a:hover {
	color: #BC4942;
	text-decoration: underline;
}

.rbcWidgetArea {
	margin-top: 10px;
}

/* ------------ clanky ----------------------- */

/* ------------ mapa stranek ----------------- */
.ServerMap {
	padding: 0 0 0 5px;
	list-style-type: none;
	font-size: 1.1em;
	margin-left: 10px;
}
.ServerMap li {
	padding: 3px 0 0 0;
}
.ServerMap a {
	background: url(../img/seda-hvezda.png) no-repeat left top;
	padding: 0 0 0 17px;
	color: #CDCDCD;
	text-decoration: underline;
}
.ServerMap a:hover {
	color: #BC4942;
}
.ServerMap .level1 {
	padding: 0 0 0 15px;
	font-size: 0.9em;
}
.ServerMap .level2, .ServerMap .level3, .ServerMap .level4, .ServerMap .level5, .ServerMap .level6, .ServerMap .level7, .ServerMap .level8, .ServerMap .level9 {
	padding: 0 0 0 15px;
	font-size: 1em;
}
.ServerMap .level1 a, .ServerMap .level2 a, .ServerMap .level3 a, .ServerMap .level4 a, .ServerMap .level5 a, .ServerMap .level6 a, .ServerMap .level7 a, .ServerMap .level8 a, .ServerMap .level9 a {
	background: url(../img/seda_sipka.png) no-repeat 0 5px;
	padding: 0 0 0 15px;
	color: #9B9B9B;
	text-decoration: underline;
}
.ServerMap .level1 a:hover, .ServerMap .level2 a:hover, .ServerMap .level3 a:hover, .ServerMap .level4 a:hover, .ServerMap .level5 a:hover, .ServerMap .level6 a:hover, .ServerMap .level7 a:hover, .ServerMap .level8 a:hover, .ServerMap .level9 a:hover {
	color: #BC4942;
}

/* ------------ mapa stranek ----------------- */

/* ------------ diskuze ---------------------- */

.diskuze {
	overflow: hidden;
	margin: 0 0 10px 10px;
}
#leftzone .diskuze, #rightzone .diskuze {
	margin: 0 0 10px 0;
	overflow: hidden;
}
.diskuze fieldset {
	border: 1px solid #484848;
	background-color: #323232;
	padding: 10px;
	margin: 0;
}
.diskuze label {
	color: #CDCDCD;
	padding: 0;
	font-weight: bold;
	width: 90px;
	margin-left: 10px;
	float: left;
}
#leftzone .diskuze label, #rightzone .diskuze label {
	color: #CDCDCD;
	padding: 0;
	font-weight: bold;
	width: 90px;
	margin-left: 5px;
	float: left;
}
#leftB .diskuze label, #rightB .diskuze label  {
	color: #CDCDCD;
	padding: 0;
	font-weight: bold;
	width: 60px;
	margin-left: 5px;
	float: left;
}
.diskuze label.wrong {
	color: #CE211F;
}
#leftzone .diskuze label.wrong, #rightzone .diskuze label.wrong {
	color: #CE211F;
}
#leftB .diskuze label.wrong, #rightB .diskuze label.wrong {
	color: #CE211F;
}

#middlezone_wide .diskuze #postAuthor, #middlezone_wide .diskuze #postTitle, #middlezone_wide .diskuze #postEmail {
	border: 1px solid #484848;
	background-color: #000000;
	height: 1.5em;
	width: 250px;
	margin: 0 0 5px 0;
	color: #CDCDCD;
	position: relative;
	left: 0px;
	float: left;
}
#middlezone .diskuze #postAuthor, #middlezone .diskuze #postTitle, #middlezone .diskuze #postEmail {
	border: 1px solid #484848;
	background-color: #000000;
	height: 1.5em;
	width: 185px;
	margin: 0 0 5px 0;
	color: #CDCDCD;
	position: relative;
	left: 0px;
	float: left;
}

#leftB .diskuze #postAuthor, #leftB .diskuze #postTitle, #leftB .diskuze #postEmail, #rightB .diskuze #postAuthor, #rightB .diskuze #postTitle, #rightB .diskuze #postEmail {
	border: 1px solid #484848;
	background-color: #000000;
	height: 1.5em;
	width: 150px;
	margin: 0 0 5px 5px;
	color: #CDCDCD;
	position: relative;
	left: 0px;
	float: left;
}

#leftzone .diskuze #postAuthor, #leftzone .diskuze #postTitle, #leftzone .diskuze #postEmail {
	border: 1px solid #484848;
	background-color: #000000;
	height: 1.5em;
	width: 120px;
	margin: 0 0 5px 5px;
	color: #CDCDCD;
	position: relative;
	left: 0px;
	float: left;
}
#rightzone .diskuze #postAuthor, #rightzone .diskuze #postTitle, #rightzone .diskuze #postEmail {
	border: 1px solid #484848;
	background-color: #000000;
	height: 1.5em;
	width: 115px;
	margin: 0 0 5px 5px;
	color: #CDCDCD;
	position: relative;
	left: 0px;
	float: left;
}


.diskuze input.wrong {
	border: 1px solid #CE211F;
}
#middlezone_wide .diskuze #postAuthor.wrong, #middlezone_wide .diskuze #postTitle.wrong, #middlezone_wide .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}
#middlezone .diskuze #postAuthor.wrong, #middlezone .diskuze #postTitle.wrong, #middlezone .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}
#middlezone .diskuze #postAuthor.wrong, #middlezone .diskuze #postTitle.wrong, #middlezone .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}
#leftzone .diskuze #postAuthor.wrong, #leftzone .diskuze #postTitle.wrong, #leftzone .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}
#rightzone .diskuze #postAuthor.wrong, #rightzone .diskuze #postTitle.wrong, #rightzone .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}
#leftB .diskuze #postAuthor.wrong, #leftB .diskuze #postTitle.wrong, #leftB .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}
#rightB .diskuze #postAuthor.wrong, #rightB .diskuze #postTitle.wrong, #rightB .diskuze #postEmail.wrong {
	border: 1px solid #CE211F;
}


.diskuze #postText {
	border: 1px solid #484848;
	background-color: #000000;
	margin: 10px 5px 10px 5px;
	color: #CDCDCD;
	width: 97%;
	_width: 100%;
	max-width: 97%;
	font: 1em/1.33em Arial, Tahoma, Verdana, sans-serif;
	overflow: auto; 
}
.diskuze #postText.wrong {
	border: 1px solid #CE211F;
}
#leftzone .diskuze #postText, #rightzone .diskuze #postText {
	border: 1px solid #484848;
	background-color: #000000;
	margin: 10px 5px 10px 5px;
	color: #CDCDCD;
	width: 94%;
	_width: 95%;
	max-width: 94%;
	font: 1em/1.33em Arial, Tahoma, Verdana, sans-serif; 
}
#leftzone .diskuze #postText.wrong, #rightzone .diskuze #postText.wrong  {
	border: 1px solid #CE211F;
}
.diskuze .submit {
	background: url(../img/btn_bg.png) repeat-x;
	height: 22px;
	line-height: 22px;
	border: none;
	color: #FFFFFF;
	text-transform: uppercase;
	margin: 0;
	padding: 0 5px 3px 5px;
	font-weight: bold;
	font-size: 0.9em;
}
.diskuze .submit:hover {
	background: url(../img/btn_bg_hover.png) repeat-x;
	height: 22px;
	line-height: 22px;
	border: none;
	color: #FFFFFF;
	text-transform: uppercase;
	margin: 0;
	padding: 0 5px 3px 5px;
	font-weight: bold;
	font-size: 0.9em;
}
.diskuze .goBtn {
	float: right;
	margin-right: 10px;
	*margin-right: 4px;
	_margin-right: 2px;
}

.notFound {
	margin: 0 0 10px 10px;
}
#leftzone .notFound, #rightzone .notFound {
	margin: 0;
}


.post {
	background: #333333;
	border: 1px solid #333333;
	height: auto;
	overflow: hidden;
	margin: 0 0 15px 120px;
	padding: 0;
	color: #CDCDCD;
}

.post .head {
	padding: 10px;
	font-size: 1.1m;
	font-weight: bold;
}
#content .post .head p, #leftB #contentLeftB .post .head p, #rightB #contentRightB .post .head p, #leftzone .post .head p, #rightzone .post .head p {
	margin: 0;
	padding: 0 0 0 10px;
}
.post .head h3 {
	font-size: 1em;
	font-weight: bold;
	margin-left: 10px;
}
.post .head h3 span {
	color: #CE211F;
	text-decoration: none;
	font-size: 1em;
}
.post .head ins, .post .head em {
	font-weight: normal;
	text-decoration: none;
	font-size: 1em;
}
.post .text {
	background: #000000;
	padding: 10px;
	font-size: 1em;
}
.post .reply {
	background: #000000;
	padding: 0 15px 7px 15px;
	text-align: right;
}
.post .reply a {
	color: #CE211F;
	font-size: 0.9em;
	font-weight: bold;
	background: url(../img/seda-hvezda.png) no-repeat left;
	padding-left: 15px;
}
.reply a:hover {
	color: #BC4942;
}
.level-1 {
	margin-left: 10px;
}
.level-2 {
	margin-left: 30px;
}
.level-3 {
	margin-left: 60px;
}
.level-4 {
	margin-left: 90px;
}
.level-5 {
	margin-left: 120px;
}

.formError {
	margin-bottom: 15px;
	margin-left: 10px;
}
#middlezone .content .formError ul li, #middlezone_wide .content .formError ul li, #leftzone .content .formError ul li, #rightzone .content .formError ul li {
	background: none;
	padding:3px 0 3px 0;
	font-weight: bold;
}
#middlezone .content .formError ul, #middlezone_wide .content .formError ul, #leftzone .content .formError ul, #rightzone .content .formError ul {
	margin-left: 0;
}
#leftB .formError, #rightB .formError, #leftzone .formError, #rightzone .formError {
	margin-bottom: 15px;
	margin-left: 5px;
}
#leftB #contentLeftB .formError p, #rightB #contentRightB .formError p {
	padding: 0 0 5px 0;
}
.formError span {
	color: #CE211F;
}

/* ------------ diskuze ---------------------- */

/* ------------ vyhledavani ----------------- */

#search {
	border: 1px solid #484848;
	background-color: #2F2F2F;
	height: auto;
	overflow: hidden;
	margin: 0 0 20px 10px;
	padding: 0;
	color: #CDCDCD;
	font-size: 0.9em;
}
#search table {
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  _font-size: 1em;
}
#search table tbody tr td {
  border: none;
  color: #CDCDCD;
  padding: 0 0 0 5px;
  text-align: left;
  vertical-align: middle;
} 

#search legend {
	visibility: hidden;
	display: none;
}
#search form {
	margin: 0;
	padding: 15px 10px;
}
#search fieldset {
	padding: 0;
	margin: 0 0 0 7px;
	border: none;
}
#search label {
	margin: 0;
	padding: 0;
}
#search #fulltextSearchTextResult {
	border: 1px solid #484848;
	background-color: #000000;
	width: 100px;
	color: #CDCDCD; 
	padding: 4px;
	_padding: 3px 3px 5px 3px;
	margin: 0;
	_height: 22px;
	font-size: 1em;
}
#search #fulltextSearchTypeResult {
	border: 1px solid #484848;
	background-color: #000000;
	width: 100px;
	color: #CDCDCD;
	padding: 3px;
	margin: 0;
	font-size: 1em;
}
#search .left {
	float: left;
	margin-right: 15px;
}
#search .right {
	float: right;
}
#search .right span {
	margin-left: 7px;
}
#middlezone #search .left {
	width: 100%;
}
#middlezone #search .right {
	float: left;
	width: 100%;
	margin-top: 10px;
}
#leftB #search .left, #rightB #search .left {
	width: 100%;
}
#leftB #search .right, #rightB #search .right {
	float: left;
	width: 100%;
	margin-top: 10px;
}
#leftB #search .right span, #rightB #search .right span {
	float: left;
	margin-top: 10px;
	margin-left: 0;
}



.item {
	margin: 0 0 15px 10px;
	padding: 0 0 0 15px;
	background: url(../img/seda-hvezda.png) no-repeat left top;
}
#middlezone .item h2, #middlezone_wide .item h2 {
	background: none;
	color: #CE211F;
	text-decoration: underline;
	padding: 0;
	margin: 0;
	font-size: 1.1em;
	font-weight: bold;
}
.item h2 a {
	color: #CE211F;
	text-decoration: underline;
}
.item .uri {
	color: #888888;
	text-decoration: underline;
}
.item .uryvek {
	padding-top: 5px;
}
.item .size {
	color: #888888;
}
#leftB #contentLeftB .item p.size, #rightB #contentRightB .item p.size, #content .item p.size {
	padding: 5px 0 0 0;
}
.item a:hover {
	color: #BC4942;
}

/* ------------ vyhledavani ----------------- */

/* ------------ produkty -------------------- */
#middlezone .products {
	padding: 0 0 0 10px;
	margin-bottom: 10px;
}
#middlezone_wide .products {
	padding: 0 0 0 10px;
	margin-bottom: 10px;
}
#leftzone .products, #rightzone .products {
	padding: 0 0 0 0;
	margin-bottom: 10px;
}
#leftB .products, #rightB .products {
	padding: 0 0 0 0;
	margin-bottom: 10px;
}
#middlezone .product, #middlezone_wide .product {
	padding: 0;
}

.products .nazev {
	background: url(../img/seda-hvezda.png) no-repeat left 4px;
	color: #CE211F;
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.1em;
	padding: 0 0 0 15px;
	margin: 0 0 5px 0;
}
#leftzone .Box .content .products .nazev, #rightzone .Box .content .products .nazev {
	background:transparent url(../img/seda-hvezda-tmave-bg.jpg) no-repeat scroll 0 4px;
	color: #CE211F;
	font-weight: bold;
	text-decoration: underline;
	font-size: 1.1em;
	padding: 0 0 0 15px;
	margin: 0 0 10px 0;
}
#middlezone .products .linkMore, #middlezone_wide .products .linkMore, #leftB .products .linkMore, #rightB .products .linkMore {
	margin-left: 15px;
	visibility: hidden;
} 

.products .imgProduct {
	margin: 5px 10px 5px 15px;
	_margin: 5px 10px 5px 7px;
	float: left;
	overflow: hidden;
}
#leftB .products .imgProduct, #rightB .products .imgProduct {
	margin: 5px 10px 5px 5px;
	_margin: 5px 10px 5px 2px;
	overflow: hidden;
	width: 100%;
}


.products td, .product td {
	vertical-align: middle;
	text-align: center;
	margin: 0;
	padding: 0;
}
.products table, .product table {
	vertical-align: middle;
	text-align: center;
	margin: 0;
	padding: 0;
}
#middlezone .products .description, #middlezone_wide .products .description {
	margin-left: 150px;
	padding-left: 10px;
}
#middlezone_wide #leftB .products .description, #middlezone_wide #rightB .products .description {
	float: left;
	margin: 5px 0 0 15px;
	_margin: 5px 0 0 7px;
	padding-left: 0;
}
#middlezone .product .description, #middlezone_wide .product .description, #leftB .product .description, #rightB .product .description {
	margin-left: 10px;
	padding-left: 10px;
}
.description h3 {
	color: #CE211F;
	font-size: 1.1em;
	margin-bottom: 8px;
}
#leftB .description h3, #rightB .description h3 {
	color: #CE211F;
	font-size: 1.1em;
	margin-bottom: 8px;
	margin-left: 10px;
}
.description a {
	color: #CDCDCD;
	text-decoration: underline; 
}
.description a:hover {
	color: #BC4942;
	text-decoration: underline;
}
#content .description p {
	overflow: hidden;
	padding: 0 0 10px 0;
}

.products p, .product p {
	overflow: hidden;
	padding: 0 0 10px 10px;
}
#leftB #contentLeftB .products p, #rightB #contentRightB .products p {
	padding: 3px 0 10px 15px;
}

/* ------------ produkty -------------------- */

/* ----------- detail produktu -------------- */

.product .imgProduct {
	margin: 0 10px 10px 0;
	text-align: center;
}

.imgProduct a, .imgProduct img {
	border: none;
}
#leftB .imgProduct a, #leftB .imgProduct img, #rightB .imgProduct a, #rightB .imgProduct img {
	border: none;
	margin-left: 5px;
}

/* ----------- detail produktu -------------- */

/* --------- fotogalerie 118px ------------ */

#middlezone .foto118 {
	padding: 0 0 0 25px;
	_padding: 0 0 0 0;
	margin: 0 0 10px 0;
}
#middlezone .foto118 .fotka {
	float: left;
	margin: 0 20px 20px 20px;
	padding: 0;
	width: 118px;
}

#middlezone_wide .foto118 {
	padding: 0 0 0 8px;
	margin: 0 0 10px 0;
}
#middlezone_wide .foto118 .fotka {
	float: left;
	margin: 0 15px 20px 0;
	padding: 0;
	width: 118px;
}

#rightB .foto118, #leftB .foto118 {
	margin: 0 0 10px 0;
	padding: 0 0 0 0;
}
#rightB .foto118 .fotka, #leftB .foto118 .fotka {
	width: 118px;
	float: left;
	margin: 0 0 0 10px;
	_margin: 0 10px 0 0;
	padding: 0;
}
#rightB .foto118 .fotka img, #leftB .foto118 .fotka img {
	margin: 0;
	padding: 0;
}

#rightzone .foto118 {
	margin: 0 0 10px 10px;
	padding: 0 0 0 0;
}
#leftzone .foto118 {
	margin: 0 0 10px 15px;
	padding: 0 0 0 0;
}

.fotka {
	margin: 0;
	padding: 0;
}
.foto118 .fotka div {
	padding: 0 0 0 0;
	margin: 5px 0 0 0;
	font-size: 0.9em;
	height: 2.7em;
	overflow: hidden;
}
#leftzone .foto118 .fotka div, #rightzone .foto118 .fotka div {
	padding: 0 0 0 0;
	margin: 5px 0 0 0;
	font-size: 0.9em;
	height: 3.1em;
	overflow: hidden;
}
.foto118 .fotka div a {
	color: #CDCDCD;
	text-decoration: underline;
}
.foto118 .fotka div a:hover {
	color: #CE211F;
	text-decoration: underline;
}
.fotka img, .fotka a {
	border: none;
	margin: 0;
	padding: 0;
}
.foto118 .fotka .photoImg, #leftzone .foto118 .fotka .photoImg, #rightzone .foto118 .fotka .photoImg {
	width: 118px;
	height: 118px;
	border: 1px solid #CDCDCD;
	overflow: hidden;
}
.foto118 .fotka .photoImg:hover, #leftzone .foto118 .fotka .photoImg:hover, #rightzone .foto118 .fotka .photoImg:hover {
  border: 1px solid #CE211F;
}
.foto118 .fotka .photoImg table {
	width: 118px;
	height: 118px;
	margin: 0;
	padding: 0;
   overflow: hidden;
   cursor: pointer;
}
.foto118 .fotka td {
	margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
}
/* --------- fotogalerie 118px ------------ */

/* --------- fotogalerie 200px ------------ */

#middlezone_wide .foto200 {
	padding: 0 0 0 50px;
	margin: 0 0 10px 0;
	overflow: hidden;
}
#middlezone_wide .foto200 .fotka {
	float: left;
	margin: 0 40px 20px 0;
	padding: 0;
	width: 200px;
}

#middlezone .foto200 {
	padding: 0 0 0 20px;
	margin: 0 0 10px 0;
	overflow: hidden;
}
#middlezone .foto200 .fotka {
	float: left;
	margin: 0 0 20px 60px;
	_margin: 0 0 20px 30px;
	padding: 0;
	width: 200px;
}


#rightB .foto200, #leftB .foto200 {
	margin: 0 0 10px 0;
	padding: 0 0 0 0;
}
#rightB .foto200 .fotka, #leftB .foto200 .fotka {
	width: 200px;
	float: left;
	margin: 0 0 0 35px;
	_margin: 0 0 0 20px;
	padding: 0;
}
#rightB .foto200 .fotka img, #leftB .foto200 .fotka img {
	margin: 0;
	padding: 0;
}


.foto200 .fotka div {
	/*padding: 0 0 0 5px; */
	margin: 5px 0 0 0;
	font-size: 0.9em;
	height: 2.7em;
	overflow: hidden;
}
.foto200 .fotka div a {
	color: #CDCDCD;
	text-decoration: underline;
}
.foto200 .fotka div a:hover {
	color: #CE211F;
	text-decoration: underline;
}
.foto200 .fotka .photoImg {
	width: 200px;
	height: 200px;
	border: 1px solid #CDCDCD;
	overflow: hidden;
}
.foto200 .fotka .photoImg:hover {
  border: 1px solid #CE211F;
}
.foto200 .fotka .photoImg table {
	width: 200px;
	height: 200px;
	overflow: hidden;
	cursor: pointer;
	margin: 0;
	padding: 0;
}
.foto200 .fotka .photoImg table td {
  	margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
}
/* --------- fotogalerie 200px --------------- */

/* -------- fotogalerie detail -------------- */

/* -------- varianta a, index --------------- */
#middlezone_wide .fotkaDetail {
	padding: 10px 0 0 15px;
	margin: 0 0 5px 0;
}
#middlezone_wide .fotkaDetail .obrazek {
	border: 1px solid #474747;
	padding: 10px;
	margin-top: 10px;
	overflow: hidden;
	width: 505px;
	_width: 100%;
	height: 505px;
	_height: auto;
}
#middlezone_wide .fotkaDetail .obrazek table {
	width: 500px;
	_width: 510px;
	height: 500px;
	_height: 510px;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#middlezone_wide .fotkaDetail .obrazek table td {
  margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
}
#middlezone_wide .fotkaDetail img {
	border: none;
}
#middlezone_wide .fotkaDetail .popis {
	margin-top: 10px;
	font-size: 0.9em;
}
#middlezone_wide .fotkaDetail .posuv {
	/*margin-bottom: 10px;*/
}
#middlezone_wide .posuv table, #middlezone_wide .posuv table td {
	margin: 0;
}
#middlezone_wide .posuv td.pred, #middlezone_wide .posuv td.dalsi {
	width: 120px;
}
.posuv table td.pred a {
	background: transparent url(../img/gallery_btn.png) repeat-x scroll 0 0;
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 1em;
	_font-size: 0.9em;
	font-weight: bold;
	height: 24px;
	line-height: 24px;
	padding: 0 7px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 115px;
}
.posuv table td.dalsi a {
	background: transparent url(../img/gallery_btn.png) repeat-x scroll 0 0;
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 1em;
	_font-size: 0.9em;
	font-weight: bold;
	height: 24px;
	line-height: 24px;
	padding: 0 7px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 115px;
}
#middlezone_wide .posuv table td.dalsi a, #middlezone_wide .posuv table td.pred a {
	_width: 132px;
}

#slideshowControl {
	background: url(../img/start-btn.png) no-repeat;
	width: 226px;
	height: 24px;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 24px;
	font-size: 1em;
	_font-size: 0.9em;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}

/* -------- varianta a, index ---------------- */

/* -------- varianta C ----------------------- */
#middlezone .fotkaDetail .posuv {
	/*margin-bottom: 10px;*/
}
#middlezone .posuv table {
	margin: 0;
	width: 100%;
}
#middlezone .posuv table td.pred, #middlezone .posuv table td.dalsi {
	width: 50%;
	margin: 0;
}
#middlezone .posuv table tbody tr td.show {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
#middlezone #slideshowControl {
	margin: 0 auto;
	text-align: center;
	_margin-left: 47px;
}

#middlezone .fotkaDetail {
	padding: 10px 0 0 15px;
	margin: 0 0 5px 0;
}
#middlezone .fotkaDetail .obrazek {
	border: 1px solid #474747;
	padding: 10px;
	margin-top: 10px;
	overflow: hidden;
	width: 320px;
	_width: 100%;
	height: 320px;
	_height: auto;
	overflow: hidden;
}
#middlezone .fotkaDetail .obrazek table {
	width: 320px;
	_width: 320px;
	height: 320px;
	_height: 320px;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
#middlezone .fotkaDetail .obrazek table td {
  margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
}
#middlezone .fotkaDetail img {
	border: none;
}
#middlezone .fotkaDetail .popis {
	margin-top: 10px;
	font-size: 0.9em;
}

#middlezone .posuv table tbody tr td.dalsi a {
	float: right;
	margin-right: 22px;
}


/* -------- varianta C ----------------------- */

/* -------- varianta b ----------------------- */
.fotkaDetailB {
	padding: 10px 0 0 10px;
	margin: 0 0 5px 0;
}
.fotkaDetailB .obrazekB {
	border: 1px solid #474747;
	padding: 5px;
	margin-top: 10px;
	overflow: hidden;
	width: 245px;
	_width: 100%;
	height: 245px;
	_height: auto;
}
.fotkaDetailB .obrazekB table {
	width: 245px;
	height: 245px;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.fotkaDetailB .obrazekB table td {
	margin: 0;
	padding: 0;
	vertical-align: middle;
	text-align: center;
	overflow: hidden;
}
.fotkaDetailB img {
	border: none;
	mar
}


#middlezone_wide #leftB .posuv table td.dalsi a, #middlezone_wide #leftB .posuv table td.pred a, #middlezone_wide #rightB .posuv table td.dalsi a, #middlezone_wide #rightB .posuv table td.pred a {
	_width: 115px;
}

#middlezone_wide #leftB .fotkaDetail .posuv, #middlezone_wide #rightB .fotkaDetail .posuv {
	/*margin-bottom: 10px;*/
}
#middlezone_wide #leftB .posuv table, #middlezone_wide #rightB .posuv table, #middlezone_wide #leftB .posuv table td, #middlezone_wide #rightB .posuv table td {
	margin: 0;
}
#middlezone_wide #leftB .posuv td.pred, #middlezone_wide #leftB .posuv td.dalsi, #middlezone_wide #rightB .posuv td.pred, #middlezone_wide #rightB .posuv td.dalsi {
	width: 110px;
	_width: 120px;
}
#leftB .posuv table td.pred a, #rightB .posuv table td.pred a {
	background: transparent url(../img/gallery_btn.png) repeat-x scroll 0 0;
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 1em;
	_font-size: 0.8em;
	font-weight: bold;
	height: 24px;
	line-height: 24px;
	padding: 0 7px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100px;
}
#leftB .posuv table td.dalsi a, #rightB .posuv table td.dalsi a {
	background: transparent url(../img/gallery_btn.png) repeat-x scroll 0 0;
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 1em;
	_font-size: 0.8em;
	font-weight: bold;
	height: 24px;
	line-height: 24px;
	padding: 0 7px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 100px;
}

#leftB #slideshowControl, #rightB #slideshowControl {
	background: url(../img/start-btn.png) no-repeat;
	width: 226px;
	height: 24px;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 24px;
	font-size: 1em;
	_font-size: 0.8em;
	font-weight: bold;
	text-align: center;
	margin-left: 10px;
}

/* -------- varianta b ----------------------- */

/* -------- fotogalerie detail --------------- */

/* --------------- levy sloupec -------------- */
#leftzone {
	width: 191px;
	float: left;
	margin: 0;
	padding: 0;
}
#leftzone .Box {
	width: 190px;
	margin: 0 0 15px 1px;
	padding: 0;
	overflow: hidden;
}
#leftzone .Box h2 {
	background: url(../img/box_gray_left.png) no-repeat left top;
	height: 31px;
	font-size: 1.2em;
	text-transform: uppercase;
	line-height: 31px;
	padding-left: 20px;
}
#leftzone .Box h2.Blue {
	background: url(../img/box_blue_left.png) no-repeat left top;
	height: 31px;
	font-size: 1.2em;
	text-transform: uppercase;
	line-height: 31px;
	padding-left: 20px;
}
#leftzone .Box .content {
	background: #161616;
	margin: 0 10px 0 10px;
	padding: 10px;
	color: #CDCDCD;
	font-size: 0.95em;
	line-height: 1.4em;
	overflow: hidden;
	width: 150px;
	_width: 170px;
}

#leftzone h2 {
	background: url(../img/box_gray_left.png) no-repeat left top;
	height: 31px;
	font-size: 1.2em;
	text-transform: uppercase;
	line-height: 31px;
	padding-left: 20px;
	overflow: hidden;
}
#leftzone .content {
	background: #161616;
	margin: 0 10px 10px 10px;
	padding: 10px;
	color: #CDCDCD;
	font-size: 0.95em;
	line-height: 1.4em;
	overflow: hidden;
	width: 150px;
	_width: 170px;
}

#leftzone .Box .content h1 {
	background: none;
	padding: 0;
	font-size: 1.4em;
	height: auto;
	line-height: normal;
	text-transform: none;
}
#leftzone .Box .content h2 {
	background: none;
	padding: 0;
	font-size: 1.2em;
	height: auto;
	line-height: normal;
	text-transform: none;
}
#leftzone .Box .content h3 {
	font-size: 1.2em;
}
#leftzone .Box .content h4, #leftzone .Box .content h5, #leftzone .Box .content h6 {
	font-size: 1.1em;
}

/* --------------- levy sloupec -------------- */

/* --------------- pravy sloupec ------------- */
#rightzone {
	width: 191px;
	float: right;
	margin: 0;
	padding: 0;
}
#rightzone .Box {
	width: 190px;
	margin: 0 1px 15px 0;
	padding: 0;
	overflow: hidden;
}
#rightzone .Box h2 {
	background: url(../img/box_gray_right.png) no-repeat right top;
	height: 31px;
	font-size: 1.2em;
	text-transform: uppercase;
	line-height: 31px;
	padding-left: 25px;
	overflow: hidden;
}
#rightzone .Box .content {
	background: #161616;
	margin: 0 10px 0 10px;
	padding: 10px 10px 10px 15px;
	color: #CDCDCD;
	font-size: 0.95em;
	line-height: 1.4em;
	overflow: hidden;
	width: 146px;
	_width: 170px;
	
}
#rightzone h2 {
	background: url(../img/box_gray_right.png) no-repeat right top;
	height: 31px;
	font-size: 1.2em;
	text-transform: uppercase;
	line-height: 31px;
	padding-left: 25px;
}
#rightzone .content {
	background: #161616;
	margin: 0 10px 10px 9px;
	padding: 10px 10px 10px 15px;
	color: #CDCDCD;
	font-size: 0.95em;
	line-height: 1.4em;
	overflow: hidden;
	width: 150px;
	_width: 170px;
}

#rightzone .Box .content h1 {
	background: none;
	padding: 0;
	font-size: 1.4em;
	height: auto;
	line-height: normal;
	text-transform: none;
}
#rightzone .Box .content h2 {
	background: none;
	padding: 0;
	font-size: 1.2em;
	height: auto;
	line-height: normal;
	text-transform: none;
}
#rightzone .Box .content h3 {
	font-size: 1.2em;
}
#rightzone .Box .content h4, #rightzone .Box .content h5, #rightzone .Box .content h6 {
	font-size: 1.1em;
}
/* --------------- pravy sloupec ------------- */

/* --------------- spolecne pro sloupce ------ */
.Box .content p {
	padding: 5px 0 5px 0;
}
.Box a {
	color: #CDCDCD;
	text-decoration: underline;
}
.Box a:hover {
	color: #BC4942;
	text-decoration: underline;
}
.Box h3 a {
	color: #CE211F;
	padding-bottom: 0;
	margin-bottom: 0;
	text-decoration: underline;
}
.Box h3 a:hover{
	color: #BC4942;
	padding-bottom: 0;
	margin-bottom: 0;
	text-decoration: underline;
}

/* --------------- spolecne pro sloupce ------ */

/* --------------- kalendar akci ------------- */
.datum {
	color: #7F7F7F;
}
/* --------------- kalendar akci ------------- */

/* --------------- vyhledavaci formular ------ */
#fulltextSearch {
	padding: 0 0 0 0;
	margin: 0;
}
#fulltextSearch fieldset {
	border: none;
}
#fulltextSearch #fulltextSearchText {
	background-color: #000000;
	border: 1px solid #484848;
	color: #cdcdcd;
	width: 148px;
}
#fulltextSearch span {
	float: right;
	margin: 10px 2px 0 0;
	_margin: 10px 0 0 0;
	padding: 0;
}

/* --------------- vyhledavaci formular ------ */

/* --------------- ankety -------------------- */

h3.questionP {
	font-size: 1em;
	margin: 0 0 0 0;
}
#leftzone .Box .content .questionP, #rightzone .Box .content .questionP {
	font-size: 1em;
	margin: 0 0 0 0;
}
#middlezone .questionP, #middlezone_wide .questionP {
	font-size: 1em;
	margin: 0 0 10px 20px;
}
#middlezone_wide #leftB .questionP, #middlezone_wide #rightB .questionP {
	font-size: 1em;
	margin: 0 0 15px 10px;
}
#middlezone .answers, #middlezone_wide .answers, #leftB .answers, #rightB .answers {
	margin: 0 0 0 10px;
}
#middlezone_wide #leftB .answers, #middlezone_wide #rightB .answers {
	margin: 0 0 0 0;
}

.answerText {
 margin: 0;
 padding: 0;
}


.answers .answer {
	padding: 0 0 0 0;
	margin: 3px 0 10px 10px;
}
#leftzone .answers .answer, #rightzone .answers .answer {
	padding: 0 0 0 0;
	margin: 3px 0 10px 0;
}
.answers img {
	border: none;
}

.voted {
	border-top: 1px solid #393939;
	margin-top: 10px;
}
#middlezone_wide #leftB #contentLeftB p.voted, #middlezone_wide #rightB #contentRightB p.voted {
	border-top: 1px solid #393939;
	margin-top: 10px;
}

.answerImg {
	width: 100%;
	padding: 0;
	margin: 4px 0 0 0;
	line-height: 6px;
	*margin: -8px 0 0 0;
}
#leftzone .answerImg, #righttzone .answerImg {
	width: 100%;
	padding: 0;
	margin: 4px 0 0 0;
	line-height: 6px;
	_margin: -8px 0 0 0;
}
.answerImg span {
	margin: 0;
	padding: 0;
}
#leftB .answerImg img, #rightB .answerImg img {
	margin: 0;
	padding: 0;
	border: none;
}
#leftzone .answerImg img, #rightzone .answerImg img {
	margin: 0;
	padding: 0;
	border: none;
}


/* --------------- ankety -------------------- */

/* --------------- stitky -------------------- */
#leftzone .Box ol.tags {
	text-align: center;
	padding: 10px 0 15px 5px;
	color: #CDCDCD;
	line-height: 1.8em;
	list-style-type: none;
	list-style: none;	
	margin: 0;
	font-size: 1.2em;
}
#rightzone .Box ol.tags {
	text-align: center;
	padding: 10px 0 15px 0;
	color: #CDCDCD;
	line-height: 1.8em;
	list-style-type: none;
	list-style: none;
	margin: 0;
	font-size: 1.2em;
}
#middlezone .Box ol.tags, #middlezone_wide .Box ol.tags {
	text-align: center;
	padding: 5px 5px 5px 5px;
	color: #CDCDCD;
	line-height: 1.8em;
	list-style-type: none;
	list-style: none;
	margin: 0;
	font-size: 1.2em;
}
ol.tags li {
	display: inline;
	margin: 0 0.5em 0 0.5em;
	list-style-type: none;
	list-style: none;	
}
ol.tags a {
	color: #CDCDCD;
	text-decoration: none;
	white-space: nowrap;
}
ol.tags a:hover {
	color: #BC4942;
	text-decoration: none;
	white-space: nowrap;
}
#middlezone ol.tags a, #middlezone_wide ol.tags a {
	color: #CDCDCD;
	text-decoration: none;
	white-space: nowrap;
}
#middlezone ol.tags a:hover, #middlezone_wide ol.tags a:hover {
	color: #BC4942;
	text-decoration: none;
	white-space: nowrap;
}
/* --------------- stitky -------------------- */

/* --------------- text ---------------------- */

.contentwsw {
	padding: 0;
	margin: 0;
	color: #CDCDCD;
}
.contentwsw img {
	margin: 5px;
}


/* --------------- text ---------------------- */

/* --------------- strankovani--------------- */

#leftzone .paging, #rightzone .paging {
	border-top: 1px solid #393939;
	margin-top: 5px;
	margin-bottom: 5px;
	color: #CDCDCD;
	text-align: center;
	line-height: 30px;
	width: 100%;
}
#content .paging {
	margin: 0 0 10px 0; 
	color: #CDCDCD;
	text-align: right;
	line-height: 30px;
	padding-right: 10px;
}
#leftB .paging, #rightB .paging {
	margin: 0 0 10px 10px;
	color: #CDCDCD;
	text-align: left;
	line-height: 30px;
	padding-left: 5px;
	float: left;
}


#middlezone_wide #leftB .pagingInfo, #middlezone_wide #rightB .pagingInfo {
	margin:10px 0 10px 15px;
	width: 100%;
}
#middlezone .pagingInfo {
	margin:10px 0 10px 20px;
}

.pagingInfo {
	margin: 5px 0 10px 30px;
	color: #888888;
	float: left;
}
#middlezone_wide .pagingInfo {
	margin: 5px 0 10px 15px;
	color: #888888;
	float: left;
}
.pagingInfoFAQ {
	margin: 5px 0 10px 30px;
	color: #888888;
	float: left;
}
#leftB .pagingInfoFAQ, #rightB .pagingInfoFAQ {
	margin: 5px 0 10px 30px;
	color: #888888;
	width: 100%;
	float: none;
}
#leftzone .pagingInfoFAQ, #rightzone .pagingInfoFAQ {
	margin: 10px 0 10px 0;
	color: #888888;
	float: none;
}

.pagingInfoArticles, .pagingInfoProducts, #middlezone_wide .pagingInfoArticles, #middlezone_wide .pagingInfoProducts  {
	margin: 5px 0 10px 30px;
	_margin: 5px 0 10px 15px;
	color: #888888;
	float: left;
}
#middlezone_wide #leftB .pagingInfoArticles, #middlezone_wide #leftB .pagingInfoProducts, #middlezone_wide #rightB .pagingInfoArticles, #middlezone_wide #rightB .pagingInfoProducts  {
	margin: 5px 0 10px 20px;
	color: #888888;
	width: 100%;
}
#leftzone .pagingInfoArticles, #rightzone .pagingInfoArticles, #leftzone .pagingInfoProducts, #rightzone .pagingInfoProducts {
	margin: 10px 0 10px 0;
	color: #888888;
	float: none;
}

.pagingInfoPhotogallery {
	margin: 5px 0 10px 10px;
	color: #888888;
	float: left
}


.linkBlock {
	margin: 10px 0 0 30px;
}
.newPost {
	margin: 10px 0 0 10px;
}
.newPost a {
	background: transparent url(../img/seda-hvezda.png) no-repeat scroll left center;
	color: #CE211F;
	font-size: 0.9em;
	font-weight: bold;
	padding-left: 15px;
}
#leftzone .newPost, #rightzone .newPost {
	margin: 10px 0 0 0;
}
#leftzone .newPost a, #rightzone .newPost a {
	background: transparent url(../img/seda-hvezda-tmave-bg.jpg) no-repeat scroll left center;
	color: #CE211F;
	font-size: 0.9em;
	font-weight: bold;
	padding-left: 15px;
}


.allPost {
	margin: 10px 0 0 30px;
}
#leftB .allPost, #rightB .allPost {
  margin: 10px 0 0 20px;
}
.allPost a {
	color: #CE211F;
	font-size: 0.9em;
	font-weight: bold;
}
.allPost a:hover {
	color: #BC4942;
	font-weight: bold;
}
#leftzone .allPost, #rightzone .allPost {
	margin: 10px 0 0 0;
}
#leftzone .allPost a, #rightzone .allPost a {
	color: #CE211F;
	font-size: 0.9em;
	font-weight: bold;
}
#leftzone .allPost a:hover, #rightzone .allPost a:hover {
	color: #BC4942;
	font-weight: bold;
}

.paging a, .Box .paging a {
	color: #CDCDCD;
	text-decoration: underline;
	margin-right: 5px;
}
.paging a:hover, .Box .paging a:hover {
	color: #BC4942;
	text-decoration: underline;
	margin-right: 5px;
}
.paging a.left, .paging a.leftEnd {	
	color: #CE211F;
	text-decoration: underline;
}
.paging a.left:hover, .paging a.leftEnd:hover {	
	color: #CDCDCD;
	text-decoration: underline;
}
.paging a.rightEnd, .paging a.right {	
	color: #CE211F;
	text-decoration: underline;
	margin-right: 5px;
}
.paging a.rightEnd:hover, .paging a.right:hover {	
	color: #CDCDCD;
	text-decoration: underline;
	margin-right: 5px;
}


.paging .selected .pageText {
	padding: 5px 8px 5px 10px;
	_padding: 0 7px 0 0;
	width: 25px;
	height: 25px;
	background: url(../img/modra-hvezda.png) no-repeat center center;
	_background: url(../img/modra-hvezda-black-bg.gif) no-repeat center center;
	color: #000000;
	font-weight: bold;
}
#leftB .paging .selected .pageText, #rightB .paging .selected .pageText {
	padding: 5px 8px 5px 10px;
	_padding: 0 0 0 10px;
	width: 25px;
	height: 25px;
	background: url(../img/modra-hvezda.png) no-repeat center center;
	_background: url(../img/modra-hvezda-black-bg.gif) no-repeat center center;
	color: #000000;
	font-weight: bold;
}
#leftzone .paging .selected .pageText, #rightzone .paging .selected .pageText {
	padding: 5px 8px 5px 10px;
	_padding: 0 0 0 0;
	width: 25px;
	height: 25px;
	background: url(../img/modra-hvezda.png) no-repeat center center;
	_background: url(../img/modra-hvezda-gray-bg.gif) no-repeat center center;
	color: #000000;
	font-weight: bold;
}
.separator, .separatorText {
	visibility: hidden;
}
/* --------------- strankovani --------------- */


#footer {
	width: 100%;
	height: 56px;
	background: url(../img/pata_bg.jpg) repeat-x;
	color: #CDCDCD;
	padding: 0;
	margin: -56px 0 0 0;
	overflow: hidden;
	position: relative;
}
#footerLeft {
	float: left;
	padding: 7px 0 10px 20px;
	font-size: 0.9em;
	line-height: 1.5em;
	width: 420px;
	margin: 0;
}
#footerLeft p {
	padding: 0 0 5px 0;
	height: 1.3em;
	_height: 1.7em;
	overflow: hidden;
}
#footerLeft a {
	color: #888888;
	text-decoration: underline;
}
#footerLeft a:hover {
	color: #BC4942;
	text-decoration: underline;
}

#footerRight {
	float: right;
	padding: 5px 20px 0 0;
	font-size: 0.9em;
}
#footerRight p {
	padding: 5px 0 0 0;
}
#footerRight p span {
	margin: 0 0 0 15px;
}
#footerRight a {
	color: #888888;
	text-decoration: underline;
}
#footerRight a:hover {
	color: #BC4942;
	text-decoration: underline;
}
#footerRight .print {
	background: url(../img/tisk.png) no-repeat left center;
	padding-left: 20px;
}
#footerRight .sitemap {
	background: url(../img/mapa.png) no-repeat left center;
	padding-left: 20px;
}
#footerRight .rss {
	background: url(../img/rss.png) no-repeat left center;
	padding-left: 20px;
}

/* ----------------- privateAccessForm --------------------- */

.privateAccessForm form {
	margin-left: 15px;
	margin-top: 5px;
}
.privateAccessForm p {
	margin-left: 10px;
}
.privateAccessForm label {
	color: #CDCDCD;
	font-weight: bold;
	margin-left: 5px;
}
.privateAccessForm fieldset {
	background-color: #323232;
	border: 1px solid #484848;
	margin: 0;
	padding: 10px;
}
.privateAccessForm #postUserName, .privateAccessForm #postPasswd {
	background-color: #000000; 
	border: 1px solid #484848;
	color: #CDCDCD;
	height: 1.5em;
	margin: 0 0 5px 5px;
}

.privateAccessForm .error {
	margin-left: 20px;
	margin-bottom: 10px;
	color: #CE211F;
}

#lostPasswordLink {
	margin-top: 10px;
	margin-left: 20px;
}
#lostPasswordLink a {
	color: #CE211F;
	font-weight: bold;
	text-decoration: underline;	
&lt;SCRIPT LANGUAGE="JavaScript"&gt;
&lt;!-- Trio 3 Script by kurt.grigg@virgin.net

//Choose colours and size of effect !!
var a_Colour='fff000';
var b_Colour='00ff00';
var c_Colour='ff0000';
var Size=120;
//Alter nothing below !!

var YDummy=new Array(),XDummy=new Array(),xpos=0,ypos=0,ThisStep=0;step=0.6;
if (document.layers){
window.captureEvents(Event.MOUSEMOVE);
function nsMouse(evnt){
xpos = window.pageYOffset+evnt.pageX+6;
ypos = window.pageYOffset+evnt.pageY+16;
}
window.onMouseMove = nsMouse;
}
else if (document.all)
{
function ieMouse(){
xpos = document.body.scrollLeft+event.x+6;
ypos = document.body.scrollTop+event.y+16;
}
document.onmousemove = ieMouse;
}

function swirl(){
for (i = 0; i &lt; 3; i++)
 { 
 YDummy[i]=ypos+Size*Math.sin((1*Math.sin((ThisStep)/10))+i*2)*Math.sin((ThisStep)/4);
 XDummy[i]=xpos+Size*Math.cos((1*Math.sin((ThisStep)/10))+i*2)*Math.sin((ThisStep)/4);
 }
ThisStep+=step;
setTimeout('swirl()',10);
}

var amount=10;
if (document.layers){
for (i = 0; i &lt; amount; i++)
{
document.write('&lt;layer name=nsa'+i+' top=0 left=0 width='+i/2+' height='+i/2+' bgcolor='+a_Colour+'&gt;&lt;/layer&gt;');
document.write('&lt;layer name=nsb'+i+' top=0 left=0 width='+i/2+' height='+i/2+' bgcolor='+b_Colour+'&gt;&lt;/layer&gt;');
document.write('&lt;layer name=nsc'+i+' top=0 left=0 width='+i/2+' height='+i/2+' bgcolor='+c_Colour+'&gt;&lt;/layer&gt;');
}
}
else if (document.all){
document.write('&lt;div id="ODiv" style="position:absolute;top:0px;left:0px"&gt;'
+'&lt;div id="IDiv" style="position:relative"&gt;');
for (i = 0; i &lt; amount; i++)
{
document.write('&lt;div id=x style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';background:'+a_Colour+';font-size:'+i/2+'"&gt;&lt;/div&gt;');
document.write('&lt;div id=y style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';background:'+b_Colour+';font-size:'+i/2+'"&gt;&lt;/div&gt;');
document.write('&lt;div id=z style="position:absolute;top:0px;left:0px;width:'+i/2+';height:'+i/2+';background:'+c_Colour+';font-size:'+i/2+'"&gt;&lt;/div&gt;');
}
document.write('&lt;/div&gt;&lt;/div&gt;');
}
function prepos(){
var ntscp=document.layers;
var msie=document.all;
if (document.layers){
for (i = 0; i &lt; amount; i++)
{
 if (i &lt; amount-1) 
 {
 ntscp['nsa'+i].top=ntscp['nsa'+(i+1)].top;ntscp['nsa'+i].left=ntscp['nsa'+(i+1)].left;
 ntscp['nsb'+i].top=ntscp['nsb'+(i+1)].top;ntscp['nsb'+i].left=ntscp['nsb'+(i+1)].left;
 ntscp['nsc'+i].top=ntscp['nsc'+(i+1)].top;ntscp['nsc'+i].left=ntscp['nsc'+(i+1)].left;
 } 
else  
 {
 ntscp['nsa'+i].top=YDummy[0];ntscp['nsa'+i].left=XDummy[0];
 ntscp['nsb'+i].top=YDummy[1];ntscp['nsb'+i].left=XDummy[1];
 ntscp['nsc'+i].top=YDummy[2];ntscp['nsc'+i].left=XDummy[2];
 }
}
}
else if (document.all){
for (i = 0; i &lt;  amount; i++)
{
 if (i &lt; amount-1) 
 {
 msie.x[i].style.top=msie.x[i+1].style.top;msie.x[i].style.left=msie.x[i+1].style.left;
 msie.y[i].style.top=msie.y[i+1].style.top;msie.y[i].style.left=msie.y[i+1].style.left;
 msie.z[i].style.top=msie.z[i+1].style.top;msie.z[i].style.left=msie.z[i+1].style.left;
 } 
else 
 {
 msie.x[i].style.top=YDummy[0];msie.x[i].style.left=XDummy[0];
 msie.y[i].style.top=YDummy[1];msie.y[i].style.left=XDummy[1];
 msie.z[i].style.top=YDummy[2];msie.z[i].style.left=XDummy[2];
 }
}
}
setTimeout("prepos()",10);
}
function Start(){
swirl(),prepos()
}
window.onload=Start;
// --&gt;
&lt;/SCRIPT&gt; 
}
/* ----------------- privateAccessForm --------------------- */</pre></body></html>