/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */

html {
  margin:0;
  padding:0;
  border:0;
}

body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* This helps to make newer HTML5 elements behave like DIVs in older browers */
article, aside, details, figcaption, figure, dialog,
footer, header, hgroup, menu, nav, section {
    display:block;
}

/* Line-height should always be unitless! */
body {
  line-height: 1.5;
  background: white;
}

/* Tables still need 'cellspacing="0"' in the markup. */
table {
  border-collapse: separate;
  border-spacing: 0;
}
/* float:none prevents the span-x classes from breaking table-cell display */
caption, th, td {
  text-align: left;
  font-weight: normal;
  float:none !important;
}
table, th, td {
  vertical-align: middle;
}

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ''; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/* Remember to define your own focus styles! */
:focus { outline: 0; }


/***********************************************************/


textarea {
	resize: none;
}


.table th,
.table td {
  padding: 5px 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ccc;
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid #ccc;
}
.table-bordered {
  border: 1px solid #ccc;
  border-left: 0;
  border-collapse: separate;
  *border-collapse: collapsed;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #ccc;
}
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #f2f2f2;
}
.table tbody tr:hover td,
.table tbody tr:hover th {
  /*background-color: #f2f2f2;*/
}


.table {
	width: 100%;
	margin-bottom: 20px;
}

.pagination {
  height: 36px;
  margin: 18px 0;
}
.pagination ul {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination li {
  display: inline;
}
.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  text-decoration: none;
  border: 1px solid #ccc;
  border-left-width: 0;
}
.pagination a:hover,
.pagination .active a {
  background-color: #f2f2f2;
}
.pagination .active a {
  color: #999999;
  cursor: default;
}
.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
  color: #999999;
  background-color: transparent;
  cursor: default;
}
.pagination li:first-child a {
  border-left-width: 1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.pagination li:last-child a {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.pagination-centered {
  text-align: center;
}
.pagination-right {
  text-align: right;
}

.thumbnails {
  margin-left: -20px;
  list-style: none;
  *zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
  display: table;
  content: "";
}
.thumbnails:after {
  clear: both;
}
.thumbnails > li {
  float: left;
  margin: 0 0 18px 20px;
}
.thumbnail {
  display: block;
  padding: 4px;
  line-height: 1;
  border: 1px solid #ccc;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}
a.thumbnail:hover {
  border-color: #0088cc;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 9px;
}






/* Hlášky */
.error{
color: red;
font-weight: bolder;
}
.success{
color: green;
font-weight: bolder;
}

/* Obtékání */
.lfloat{
float: left;
}
.rfloat{
float: right;
}
.lclear{
clear: left;
}
.rclear{
clear: right;
}
.clear{
clear: both;
}

/* Formátování textu */
.strike{
text-decoration: line-through;
}
.center{
text-align: center !important;
}
.left{
text-align: left !important;
}
.right{
text-align: right !important;
}
.sub{
vertical-align: sub;
font-size: 0.83em;
line-height: 0.83em;
}
.sup{
vertical-align: super;
font-size: 0.83em;
line-height: 0.83em;
}

/* Viditelnost */
.erase{
display: none;
}
.hide{
visibility: hidden;
}

/* ----------- Vlastní styl --------- */

html {
	font-size: 62.5%; /* for use REM as PX */
}

body {
	margin: 0px;
	padding: 0px;
	
	font-family: Arial, "Arial CE", Helvetica, sans-serif;
	
	color: #444;
	line-height: 18px;
	
	background: url("../images/stripes.png") repeat-x center top;
	background: url("../images/matrix.jpg") repeat-x center top;
	background-color: #B4D2E3;
	
	font-size: 12px;
	font-size: 1.2rem;
	
	overflow-y: scroll;
}

#obal {
	margin: 0 auto 0px auto;
	//padding: 0 4px;
	width: 850px;

	/*background-image: url("../images/obal.png");
	background-repeat: repeat-y;*/
	background: white;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0, 0.4);
}

#hlava {
	width: 850px;
	height: 223px;
	
	background: url("../images/hlava.jpg") white no-repeat;
	padding-bottom: 20px;
	position: relative;
	
	box-shadow: 0px 2px 4px -1px rgba(10,10,10, 0.5);
	/*overflow: hidden;*/
	
	height: 203px;
	z-index: 10;
}

#foto {
/*	background: url("../images/foto.jpg") no-repeat left top white;*/
	width: 150px;
	height: 192px;
	//position: relative;
	
	cursor: pointer;
	
	position: absolute;
	top: 0px;
	left: 60px;
	
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.5);
	border: solid 3px white;
	border-radius: 3px;
	
	//background: white;	
	//opacity: 0.85;
	
	//behavior:url(-ms-transform.htc);
	-moz-transform:rotate(-20deg);
	-webkit-transform:rotate(-20deg);
	-o-transform:rotate(-20deg);
	-ms-transform:rotate(-20deg);
	
	
	-webkit-transition: all 0.6s linear;
    -moz-transition: all 0.6s linear;
    -o-transition: all 0.6s linear;
    -ms-transition: all 0.6s linear;
	
	z-index: 8;
}

#foto:hover {
/*	background-position: -151px top;*/
	//opacity: 1.0;
	
	
	-moz-transform:rotate(-15deg);
	-webkit-transform:rotate(-15deg);
	-o-transform:rotate(-15deg);
	-ms-transform:rotate(-15deg);
}
#foto:hover {
	box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.8);
}

#foto .normal, #foto .nenormal {
	display: block;
	width: 150px;
	height: 192px;
	background: url("../images/foto.jpg") no-repeat left top white;
	position: absolute;
}
#foto .normal {
	background-position: -151px top;
	z-index: 10;
	opacity: 0;
	
	
	-webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -o-transition: all 0.7s ease-out;
    -ms-transition: all 0.7s ease;	
}
#foto .nenormal {
	background-position: 0px top;
	z-index: 9;
	opacity: 0.85;
}
#foto.active .normal, #foto:hover .normal {
	opacity: 1;
}

@font-face {
    font-family: 'UnderwoodChampionRegular';
    src: url('fonts/underwood_champion-webfont.eot');
    src: url('fonts/underwood_champion-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/underwood_champion-webfont.woff') format('woff'),
         url('fonts/underwood_champion-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

#logo {
	left: 245px;
	top: 3px;

	padding: 5px;
	
	position: relative;
	float: left;
	
	cursor: pointer;
	text-align: center;
	
	font-family: 'UnderwoodChampionRegular';	
	font-weight: normal;	
	text-decoration: none;
	letter-spacing: -1px;
	
	font-size: 40px;
	color: #444;
	color: rgba(0,0,0, 0.70);
	
	
	text-shadow: 0px 0px 4px rgba(150, 150, 150, 0.3);
	
	
	transition: color 0.5s;
	-moz-transition: color 0.5s; /* Firefox 4 */
	-webkit-transition:color 0.5s; /* Safari and Chrome */
	-o-transition:color 0.5s; /* Opera */
}

#logo:hover {
	color: #000;
	//text-shadow: 0px 0px 5px rgba(100, 100, 100, 0.5);
}

#slogan { 
	left: 335px;
	top: 105px;

	padding: 0px;
	margin: 0;
	
	position: absolute;
	
	font-family: 'UnderwoodChampionRegular';	
	font-weight: normal;	
	text-decoration: none;
	letter-spacing: -2px;
	
	font-size: 30px;
	color: #444;
	color: rgba(0,0,0, 0.80);	
	
	text-shadow: 0px 0px 4px rgba(150, 150, 150, 0.3);
	
	cursor: help;
}

/* MENU */

#menu {
	width: 655px;
	height: 29px;
	
	position: relative;
	
	margin: 0px;
	padding-left: 195px;

	top: 194px;

	text-align: left;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
	
	background: url("../images/menu.png") repeat-x top #22A3E3;
}

#menu a {
	font-size: 13px;
	font-size: 1.3rem;
	
	
	transition: color 0.15s ease-out;
	-moz-transition: color 0.15s ease-out; /* Firefox 4 */
	-webkit-transition:color 0.15s ease-out; /* Safari and Chrome */
	-o-transition:color 0.15s ease-out; /* Opera */
}

#menu li a {
	display: block;
	line-height: 29px;
	height: 29px;
	
	padding: 0px 20px;
	
	text-align: center;

	color: #E1F0F9;
	text-decoration: none;

	position: relative;
	z-index: 10;
  
	/*text-shadow: 1px 1px 2px #444;*/
	text-shadow: 1px 1px 2px rgba(0,0,0, 0.6);	
}

#menu li.aktivni/*, #menu li.aktivni:hover*/ {
	//background: url("../images/menu.png") repeat-x center -29px;
	background: rgba(200, 200, 200, 0.35);
}

#menu li:hover {
	background: rgba(200, 200, 200, 0.30);
}

#menu li.aktivni a{
	color: #F6F6F6;
	//line-height: 26px;
	text-shadow: 1px 1px 2px #444;
	color: #fcfcfc;
}

#menu li a:hover{
	color: #fafafa;
}


#menu li {
	list-style: none;
	display: inline-block;
	float: left;
	border-right: solid 1px rgba(100, 100, 100, 0.2);
	
	
	background: rgba(200, 200, 200, 0);
	
	
	transition: background-color 0.15s ease-out;
	-moz-transition: background-color 0.15s ease-out; /* Firefox 4 */
	-webkit-transition: background-color 0.15s ease-out; /* Safari and Chrome */
	-o-transition: background-color 0.15s ease-out; /* Opera */
}

#menu li:first-child {
	border-left: solid 1px rgba(100, 100, 100, 0.2);
}

ul {
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
}

li {
	list-style: none;
	
	padding: 0;
	margin: 0;
}

/* ---- */


#panel {
	float: left;
	width: 195px;

	margin-left: 0;
	padding: 5px 0 120px 0;
	padding: 5px 0 0 0;
	
/*	background-image: url("../images/panel.png");
	background-repeat: repeat-y;*/
	
	background: #f2f2f2;
}

#panel ul {
	margin-bottom: 15px;
}

#panel ul li a {
	display: block;
	line-height: 23px;
	
	font-size: 13px;
	font-size: 1.3rem;
	font-weight: normal;
	text-decoration: none;
	color: #626262;
	
	padding: 0 15px;
	margin-left: 20px;
	white-space: nowrap;
	
	border-top: solid 1px transparent;
	border-bottom: solid 1px transparent;
	border-left: solid 1px transparent;
	
/*	border-top: solid 1px white;
	border-bottom: solid 1px white;
	border-left: solid 1px white;
	
	
	background-color: #fff;*/
	
	transition: all 0.15s ease-out;
	-moz-transition: all 0.15s ease-out; /* Firefox 4 */
	-webkit-transition: all 0.15s ease-out; /* Safari and Chrome */
	-o-transition: all 0.15s ease-out; /* Opera */
}

#panel div:first-child {
	margin-top: none;
}

#panel .recommend {
	border-top: solid 1px #ccc;	
	border-bottom: solid 1px #ccc;	
	padding: 5px 0;
	background: white;
	border-right: solid 1px #ccc;
	margin-right: -1px;
	margin-bottom: 10px;
}
#panel .recommend ul {
	margin-bottom: 0px;
}
#panel .recommend strong {
	background: url("../images/star.png") no-repeat 8px 2px;
	padding-left: 30px;
}

#panel .donation {
	/*border-bottom: dotted 1px #dedede;*/
	/*position: absolute;
	bottom: 0px;*/

	/*border: solid 1px #ccc;
	border-right: none;
	background: #f2f2f2;*/
}

#panel .donation strong {
	padding: 0 0 5px 30px;
	background: url("../images/donate_16.png") no-repeat 8px 4px;
}

#panel form {
	margin-bottom: 4px;
}

#panel .links {
	margin-top: 4px;
	margin-left: 35px;
}

#panel ul li.aktivni a {
	background-color: #e8e8e8;
	background-color: #f9f9f9;
	
	background-color: #f2f2f2;
	background-color: white;

	color: #333;
	
	border-top: solid 1px white;
	border-bottom: solid 1px white;
	border-left: solid 1px white;
	
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	border-left: solid 1px #ccc;
	
	margin-right: -2px;
	
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
}

#panel ul li.aktivni a:hover {
	border-color: #ccc;
	background-color: white;
}

#panel ul li a:hover {
	background-color: #e8e8e8;
	background-color: #f2f2f2;
	background-color: #f8f8f8;
	color: black;
	
	border-color: #e8e8e8;
	border-color: #ccc;	
	border-color: #d8d8d8;
	background-color: #fafafa;
	/*border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;*/
}

#panel ul li a {
	padding-top: 3px;
}

#panel strong {
	display: block;
	line-height: 23px;
	
	font-size: 13px;
	fonr-size: 1.3rem;
	font-weight: bold;
	color: #444;
	
	padding: 0 8px 0 20px;
	
	/*text-shadow: 1px 1px 4px #ccc;*/
	/*text-shadow: 1px 1px 2px #eee;*/
}

#stred {
	background: url("../images/back.png") repeat-y left top;
	position: relative;
	padding: 20px 0;
}

#obsah {
	float: right;
	width: 610px;
	padding: 0 24px 0 20px;
	/*background: white;*/
}	

#pata {
	clear: both;
	
	position: relative;
	
	margin: 0;
	
	box-shadow: 0px -2px 4px -1px rgba(10,10,10, 0.5);
	/*overflow: hidden;*/

	height: 29px;

	background: url("../images/pata.png") repeat-x left 0px #22A3E3;
	
	color: #fff;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0,0,0, 0.9);
}

#reklama {
	margin: 0 auto;
	font-size: 11px;
	font-size: 1.1rem;
	width: 700px;
	text-align: center;
	text-shadow: 0px 0px 0px black;	
}

#reklama>* {
	margin-top: 8px;
}


#reklama a, #reklama strong {
	font-size: 11px;
	font-size: 1.1rem;
}

#pata p {
	font-size: 11px;
	font-size: 1.1rem;
	padding: 5px 0px 0px 00px;
	margin: 0;
	float: left;
	text-shadow: 1px 1px 2px rgba(0,0,0, 0.9);
}

#pata p a {
	color: white;
	font-size: 11px;
	font-size: 1.1rem;
}

.cleaner {
	clear: both;
	height: 0px;
	visibility: hidden;
}


img {
	border: none;
	vertical-align: top;	
}

h1 {
	font-size: 20px;
	font-size: 2.0rem;
	
	margin-top: 8px;
	margin-bottom: 18px;
}

h2, h3 {
	font-weight: normal;
	margin-bottom: 10px;
	padding-bottom: 4px;
}

h2 {
	font-size: 17px;
	font-size: 1.7rem;

	background: #f2f2f2;
	border: 1px solid #ccc;
	border-left: none;
	margin: 18px 0 18px -21px;
	padding: 6px 10px 4px 20px;
	
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

h2 a {
	color: inherit;
	font-size: 14px;
	line-height: 14px;
}

h3 {
	font-size: 16px;
	font-size: 1.6rem;
	
	margin: 8px 0;
}

/* menu 22 */

p {
	line-height: 18px;
	
	font-size: 13px;
	font-size: 1.3rem;

	margin: 4px 0 1.2em;
	
	text-align: justify;
	text-align: left;
	/*clear: right;	*/
}


a {
	color: #111;
	color: inherit;
	text-decoration: underline;
	/*font-weight: bold;	*/
}

a:hover {
	text-decoration: none;
}

hr {
	border-left: none;
	border-right: none;
	border-top: none;
	border-color: #666;	
}

#fbpage {
	position: absolute;
	z-index: 50;
	top: 3px;
	right: 5px;
	opacity: 0.80;
	height: 187px;
	overflow: hidden;
	background-color: white;
	border: solid 1px #ccc;
	border-radius: 5px;
	box-shadow: 0px 0px 3px #ccc;
}

table#kontakt {
	width: auto;
}

.gray {
  color: #555;
}


#language {
	float: left;
	margin-right: 20px;
}
#language li {
	background-color: rgba(200, 200, 200, 0);

	transition: background-color 0.15s ease-out;
	-moz-transition: background-color 0.15s ease-out; /* Firefox 4 */
	-webkit-transition: background-color 0.15s ease-out; /* Safari and Chrome */
	-o-transition: background-color 0.15s ease-out; /* Opera */
}
#language li a{
	height: 27px;
	line-height: 27px;
	display: block;		
	/*color: #E1F0F9;*/
	text-decoration: none;
	position: relative;	
	//text-shadow: 1px 1px 2px #444;
	
	font-size: 11px;
	font-size: 1.1rem;
	text-align: left;
	font-weight: bold;
	
	transition: opacity 0.15s ease-out;
	-moz-transition: opacity 0.15s ease-out; /* Firefox 4 */
	-webkit-transition: opacity 0.15s ease-out; /* Safari and Chrome */
	-o-transition: opacity 0.15s ease-out; /* Opera */
}

#language li.aktivni/*, #language li.aktivni:hover*/ {
	background-color: rgba(200, 200, 200, 0.35);
}

#language li:hover {
	background-color: rgba(200, 200, 200, 0.30);
}

#language li.aktivni a {
	/*color: #F6F6F6;*/
	//text-shadow: 1px 1px 2px #444;
	/*color: #fcfcfc;*/
}
#language li a:hover{
/*	color: #fafafa;*/
}

#language li {
	list-style: none;
/*	display: inline-block;*/
	float: left;
	border-right: solid 1px rgba(100, 100, 100, 0.2);
}
#language li:first-child {
	border-left: solid 1px rgba(100, 100, 100, 0.2);
}


#language .aktivni a, #language a:hover {
	opacity: 1;
}
#language a:hover {
	//opacity: 0.8;
}
#language a {
	color: white;
	min-width: 24px;
	height: 24px;
	opacity: 0.7;
	display: inline-block;
	padding-left: 28px;
	line-height: 24px;
	text-decoration: none;
	padding: 1px 17px 1px 42px;
}

#language .english {
	background: url("../images/flag_en.png") no-repeat 12px center;
}
#language .czech {
	background: url("../images/flag_cz.png") no-repeat 12px center;
}



a {
	color: #222;
}

strong, .bold {
	font-weight: bold;
	color: #444;
}
em, .italic {
	font-style: italic;
}


.news {
	margin-top: 10px;
	padding-top: 10px;
	border-top: solid 1px #dedede;	
}
h1+.news, h2+.news, .news:first-child {
	border-top: none;
	margin-top: -10px;
}

.news:first-child {
	margin-top: -10px;
}


abbr {
	border-bottom: 1px dotted #777;
	cursor: help;
}




.download table {
	margin-bottom: 20px;
}

.download {
	margin-bottom: 15px;
	/*padding-top: 15px;*/
	/*border-top: solid 1px #ccc;	*/
}



.more {
	text-align: right;
	display: block;
	float: right;
	margin-top: -5px;
	margin-bottom: -5px;
}

.download table + h2 {
	margin-top: 20px;
}

p  + .download {
	padding-top: 0px;
}



#obsah p + ul, #obsah p + ol {
	margin-top: -10px;
}

#obsah ul, #obsah ol {
	margin-bottom: 18px;
}


#obsah ul li {
	margin-left: 20px;
	list-style: circle outside none;
	line-height: 22px;
}
#obsah ol li {
	margin-left: 25px;
	list-style: decimal outside none;
	line-height: 22px;
}

#obsah img {
	-webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
	
	background: white;
	border: 1px solid #AFAFAF;
	margin: 2px 12px 10px 0px;
	padding: 6px;
}
#obsah img:hover {	
	background: #f2f2f2;
	border: 1px solid #999;
}

#obsah .rfloat img {
	margin: 2px 0px 10px 12px;
}
#obsah .lfloat img {
	margin: 2px 12px 10px 0px;
}

#obsah img.icon {
	padding: 0;
	margin: 0;
	border: none;
	vertical-align: baseline;
}

#obsah .donation {
	border: 1px solid #BBB;
	margin: 0px 0px 20px;
	padding: 8px 20px 10px;
	text-align: center;	
	background: #D3E5ED;
}

#obsah .donation p {
	background: url("../images/donate_32.png") no-repeat left center #D3E5ED;
	padding: 6px 0 6px 45px;
	text-align: justify;

	border-bottom: solid 1px #bbb;
	border-top: solid 1px #bbb;
}

#obsah .donation .buttons * {
	vertical-align: middle;
}

#obsah .donation .buttons span {
	padding: 0 25px;
	font-weight: bold;
	font-size: 13px;
}

#obsah .donation h3 {
	margin: 0;
	padding: 0 0 6px;
}




/**** fancyzoom ****/
#ZoomPrev, #ZoomNext {
  text-decoration:none;
  border:0;
}
  #ZoomPrev span,
  #ZoomNext span {
    position: absolute;
    top: 30%;
    background: #333;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    opacity: 0;
    filter: alpha(opacity=0);
    color: #fff;
    text-decoration: none;
    border: 0;
    font-size: 1.4em;
    padding: 4px 10px;
  }
  #ZoomPrev span {
    left: 0;
    -moz-border-radius-bottomleft: 0px;
    -moz-border-radius-topleft: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    padding-left: 20px;
  }
  #ZoomNext span {
    right: 0;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-topright: 0px;
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    padding-right: 20px;
  }
  #ZoomPrev:hover span,
  #ZoomNext:hover span {
    :opacity: 0.8;
    :filter: alpha(opacity=80);
  }
  
  
.label {
	margin-left: 5px;
	color: white;
	padding: 2px 4px 2px;
	border-radius: 3px;
	font-size: 9px;
	font-weight: bold;
	line-height: 10px;	
	vertical-align: middle;
}

.label.green {
	background: rgb(20,200,60);
	box-shadow: inset 0px 0px 5px 2px rgba(0,120,10,0.5);
}

.downloads a {
	background: url("../images/down.png") no-repeat -8px -10px;
	/*line-height: px;*/
	padding: 1px 0 1px 20px;
	/*display: inline-block;
	vertical-align: middle;
	height: 32px;*/
}


.showComments {
	background: url("../images/comment.png") left 50% no-repeat #f2f2f2;
	color: inherit;	
	font-size: 14px;
	padding-left: 20px;
	
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

#obsah > .showComments {	
	background-position: 20px 50%;
	border: solid 1px #ccc;	
	border-left: none;
	display: inline-block;
	margin-left: -21px;
	margin-top: 0px;
	padding: 4px 10px 3px 40px;
	margin-bottom: 10px;
	line-height: 20px;
}