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

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

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

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

h1,
h2,
h3,
h4 {
	color: #c73f33;
	font-weight: normal;
}

h1 {
	color: #666;
	font-size: 200%;
}

h2 {
	font-size: 180%;
}

h3 {
	font-size: 160%;
}

h4 {
	font-size: 130%;
}

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

p,
.text {
}

.border {
	margin: 0;
	padding-left:5px;
	padding-right:5px;
	padding-top:4px;
	padding-bottom:0;
	border: 1px solid #999;
	font-style:italic;
}

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

a {
	color: #c73f33;
	text-decoration: underline;
}

a:hover {
	color: #e00;
}

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

img {
	border: none;
}

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

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

.img-left img,
.img-right img {
	margin: 0 0 5px;
	border: 1px solid #999;
}

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

ol {
	list-style: decimal outside;
}

/* ==============================================[ formulare ] */

input,
select,
textarea {
	padding: 2px 4px;
	border: 1px solid #ed1c24;
	color: #666;
	font-size: 12px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #ccc;
	color: black;
}

input.submit {
	background-color: white;
	border: 1px solid #ed1c24;
	color: #ed1c24;
	font-weight: bold;
}

html input.submit {
}

input.notext {
	border: none;
}

input.search {
	margin: 0 0 0 10px;
	width: 110px;
}

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

.left {
	float: left
}

.right {
	float: right
}

.hidden {
	display: none
}

.clear {
	clear: both;
	height: 0;
	font-size: 0;
}

.bg-t {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 0;
}

.bg-b {
	font-size: 0;
}

.bg-l {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 0;
}

.bg-r {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 0;
}

