/*
 * style.css - vychozi styl pro vsechna media
 * Autor: Radek Liska, radarfox at seznam.cz 
 */

/* ==============================================[ pismo ] */

body {
	background: white;
	color: black;
	font: small-caps 75% Verdana, Geneva, Arial, Helvetica, sans-serif;
}

/* ==============================================[ nadpisy ] */

h1,
h2,
h3,
h4 {
	color: #030679;
	font-weight: bold;

}

h1 {
	margin: 0;
	padding: 20px 0 40px;
	color: #49453d;
	font-size: 167%;
}

h2 {
	font-size: 133%;
}

h3 {
	font-size: 117%;
}

h4 {
	font-size: 100%;
}

/* ==============================================[ odstavce ] */

p,
.text {
	margin: 0 0 3px;
}

/* ==============================================[ odkazy ] */

a {
	color: black;
	text-decoration: underline;
}

a:hover {
	color: #e00;
}

/* ==============================================[ obrazky ] */

img {
	border: none;
}

.img-left {
	float: left;
	margin: 5px 5px 0 0;	
}

.img-right {
	float: right;
	margin: 5px 0 0 5px;
}

.img-center {
	margin: 5px 0 2px;
	text-align: center;
}

.img-left img,
.img-right img,
.img-center img {
	margin: 0 0 3px;
	border: 1px solid #6f6b61;
}

/* ==============================================[ seznamy ] */
	
ul {
	list-style: disc outside;
}

ol {
	list-style: decimal outside;
}

/* ==============================================[ vlastni tridy ] */

.left {float: left}
.right {float: right}
.hidden {display: none}
.clear {clear: both}

