/*
 * 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: #f4f4e8;
	color: #111;
	font: 75% Arial, Helvetica, sans-serif;
	line-height: 1.3;
}

/* ==============================================[ radkove prvky ] */

a {
	color: #111;
	text-decoration: underline;
}

a:hover {
	color: #347109;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

.green {
	color: #347109;
}

.orange {
	color: #ff8800;
}

/* ==============================================[ 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: #347109;
	font-size: 117%;
	font-weight: bold;
}

h3,
h4 {
	font-size: 100%;
}

h4 {
	margin-bottom: -0.4em;
}

dt{margin-top:5px;}

/* ==============================================[ 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;
	border: 1px solid #000;
}

.gallery img {
	margin: 0 5px 5px;
}

.gallery a:hover img,
.img-left a:hover img,
.img-right a:hover img {
	border-color: #666;
}

/* ==============================================[ oddelovace ] */

.hr {
	margin: 10px 0;
	height: 1px;
	background: #347109;
	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 #c4c398;
	background: #fff;
	color: #000;
	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;
	background: #c4c398;
	color: #111;
	font-weight: bold;
	cursor: pointer;
}

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 #000;
	text-align: left;
	vertical-align: top;
}

th {
	color: #000;
	font-weight: bold;
}

table.noborder td,
table.noborder th {
	border: none;
}
