/*
 * style.css - vychozi styl pro vsechna media
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

/* ==============================================[ css reset ] */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

:focus {
	outline: 0;
}

/* ==============================================[ barvy ] */
 
body {
	margin: 0;
	padding: 0;
	background: #21221d;
	color: #fff;
	font: 69% Verdana, Geneva, Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

/* ==============================================[ radkove prvky ] */

a {
	color: #6fabd4;
	text-decoration: underline;
}

a:hover {
	color: #326385;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: none;
}

/* ==============================================[ odstavce ] */

p {
	margin: 0.5em 0;
}

.big {
	font-size: 125%;
}

.small {
	font-size: 75%;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-center {
	text-align: center;
}

.text-justify {
	text-align: justify;
}

/* ==============================================[ nadpisy ] */

h1,
h2,
h3,
h4 {
	margin: 1em 0 0.5em;
	color: #9cb104;
	font-size: 164%;
	font-weight: bold;
}

h1 {
	border-bottom: 1px solid #9cb104;
}

h3,
h4 {
	font-size: 127%;
}

h4 {
	font-size: 100%;
}

DT{
	margin-top: 7px;
}

/* ==============================================[ obrazky ] */

.gallery {
	margin: 0.5em 0;
	text-align: center;
}

.img-left {
	float: left;
	margin: 0 10px 5px 0;	
}

.img-right {
	float: right;
	margin: 0 0 5px 10px;
}

.gallery img,
.img-left img,
.img-right img {
	margin: 0 0 5px;
}

.gallery img {
	margin: 0 5px 5px;
}

/* ==============================================[ oddelovace ] */

.hr {
	margin: 10px 0;
	height: 1px;
	background: #fff;
	font-size: 0;
}

.hr hr {
	display: none;
}

/* ==============================================[ seznamy ] */

ul,
ol {
	margin: 1em 0 1em 2em;
	list-style: disc outside;
}

ol {
	list-style-type: decimal;
}

ul ul,
ol ol {
	margin-bottom: 0.5em;
}

ul.nobullet {
	margin-left: 0;
	padding-left: 0;
	list-style: none outside;
}

ul.menu,
ul.menu ul {
	margin: 0;
	padding: 0;
	list-style: none outside;
}

ul.menu ul {
	margin-left: 2em;
}

/* ==============================================[ formulare ] */

form {
	margin: 1em 0 0.5em;
}

form p {
	margin: 0 0 0.5em;
}

input,
button,
select,
textarea {
	padding: 4px;
	border: 1px solid #6fabd4;
	background: #fff;
	color: #444;
	font: normal 100% Verdana, Geneva, Arial, Helvetica, sans-serif;
}

select {
	padding: 0;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #000;
	color: #000;
}

button {
	padding: 3px;
	border-color: #7592a7;
	background: #23455c url(../img/button.gif) repeat-x;
	color: #fff;
	font-weight: normal;
	cursor: pointer;
}
button.button2{
	background: #9cb104 url(../img/button2.png) repeat-x;
}
button:hover{
	color: #9cb104;
}
button.button2:hover{
	color: #23455c;
}


input.noborder {
	border: none;
	background: transparent;
}

/* ==============================================[ tabulky ] */

table {
	margin: 1em 1px 0.5em;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

table.wide {
	width: 99%;
}

td,
th {
	padding: 2px 4px;
	border: 1px solid #fff;
	text-align: left;
	vertical-align: top;
}

th {
	color: #fff;
	font-weight: bold;
}

table.noborder td,
table.noborder th {
	border: none;
}
.clr{
	clear:both;
}
.fr{float:right;}
.fl{float:left;}
.justify{text-align:justify; font-size:small;}