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

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

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

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

h1,
h2,
h3,
h4 {
	margin: 0 0 1em;
	color: #ef4623;
	font-weight: normal;
}

h1 {
	font-size: 145%;
	font-weight: bold;
}

h2 {
	font-size: 145%;
}

h3 {
	font-size: 127%;
}

h4 {
	font-size: 100%;
}

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

p,
.text {
	margin: 0 0 1em;
}

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

a {
	color: #ef4623;
	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 {
	border: 1px solid #333;
	background: white;
	color: black;
/*	font-size: 12px;
/*	padding: 2px 4px;*/
}

select {
	padding: 0;
}

input:focus,
select:focus,
textarea:focus {
}

input.submit {
	padding: 1px 10px;
	width: auto !important;
	background: #c56847 url(../img/input-submit.gif) repeat-x !important;
	border: 1px solid #a93325;
	color: white;
	font-weight: normal;
	cursor: pointer;
}

* html input.submit {
	padding: 1px 7px;
}

input.notext {
	border: none;
}

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

.left {float: left}
.right {float: right}
.hidden {display: none}
.clear {clear: both; height: 0; font-size: 0;}
.center{text-align:center;}
.newstitle{margin-bottom: 0;}
.bigger{font-size: 1.5em !important;}