/* ***************************************************** */
/* ***************************************************** */
/*                                                       */
/*                    copyright 2009                     */
/*                 piXmedia - Jakub Kribik               */
/*           www.pixmedia.cz | info@pixmedia.cz          */
/*                                                       */
/* ***************************************************** */
/* ***************************************************** */
/* nastaveni pro vsechny elementy na strance*/
* {
	margin:0 auto;
	padding:0;
	font-size: 13px;
	line-height:1.4;
	font-family: "Arial", "Verdana", sans-serif;
}
/* ***************************************************** */
/* ***************************************************** */
/* klasika telo stranky*/
body{
	padding-bottom:10px;
	text-align:center;
	background: url(img/body.png) repeat-x top white;
}
body, h1, h2, h3, h4, h5, h6,ol, ul, li, p, input, textarea, select {
	color:#666;
}
/* ***************************************************** */
/* ***************************************************** */
/* odkazy */
a {
  color:#db2820;
  text-decoration:underline;
}
a:hover {
  color:black;
  text-decoration:none; 
}
a, a:hover, a:focus, a:active{
	outline:0;
}
strong, b{
	color:#2c2724;
}
/* ***************************************************** */
/* ***************************************************** */
/*  nastaveni nadpisu  */
h1, h2, h3, h4, h5, h6 {
	margin:7px auto;
	line-height:1.2;
	color:#666;
}
h1 {
	margin:0;
	padding:11px 0 10px 20px;
	height:39px;
	line-height:39px;
	font-size:18px;
	font-style:italic;
	color:white;
}
h2 {
	margin:0;
	padding:0;
	height:40px;
	line-height:40px;
	font-size:16px;
}
h3{
	font-size: 17px;
}
h4 {
  font-size: 15px;
}
h5{
	font-size: 13px;
}
h6{
	font-size: 11px;
}
/* ***************************************************** */
/* ***************************************************** */
/* ostatni pomocne */
hr {
  clear:both;
	display:none;
}
.cleaner{
	clear:both;
}
li{
	margin-left:20px;
}
pre{
	margin:0;
	padding:10px;
	font-family: "Courier New", Courier, monospace;
	overflow:auto;
	color:black;
	border:1px solid;
	background:white;
}
p, ul, ol, div, pre, address{
	margin:10px 0;
}
table{
	margin:10px 0;
	padding:0;
  border:1px solid;
	border-width:1px 0 0 1px;
}
table th, table td{
  padding:2px 5px;  
  border:1px solid;
	border-width:0 1px 1px 0;
}
table th{
	background:#dededd;
}
table tr:hover td{
	background:#ececeb;
}
/* ***************************************************** */
/* ***************************************************** */
/* obal stranky */
#main{
  margin:0 auto;
  padding:0;
	width:706px;
	min-height:1000px;
  text-align:left;
	
}
#main.main-img1{
	background:url(img/main-1.jpg) no-repeat center top;
}
#main.main-img2{
	background:url(img/main-2.jpg) no-repeat center top;
}
#main.main-img3{
	background:url(img/main-3.jpg) no-repeat center top;
}
#main.main-img4{
	background:url(img/main-4.jpg) no-repeat center top;
}
/* ***************************************************** */
/* ***************************************************** */
/* hlavicka stranky */
#header{
	margin:0;
	padding:0;
	height:221px;
}
#header a#home{
  margin:0;
	padding:0;
	width:240px;
	height:77px;
  display:block;
	float:left;
	text-indent:-9000px;
}
#header a#home:hover{
	text-decoration:none;
}
/* ***************************************************** */
/* ***************************************************** */
/* jazyky */
#header p#lang{
	margin:0;
	padding:12px 25px 0 0;
	height:48px;
	float:right;
	text-align:right;
}
#header p#lang, #header p#lang *{
	font-size:9px;
	font-weight:bold;
	text-decoration:none;
	color:#acabab;
}
#header p#lang a:hover{
	text-decoration:underline;
}
/* ***************************************************** */
/* ***************************************************** */
/* menu stranky */
#header ul#menu{
  margin:0;
  padding:0;
	width:302px;
	clear:right;
  float:right;
	list-style:none;
	border:0;
}
#header ul#menu li{
	margin:0;
	padding:0;
	float:left;
	height:18px;
}
#header ul#menu li a{
	margin:0;
	padding:0;
  display:block;
	line-height:18px;
	font-size:11px;
  text-decoration:none;
	text-align:center;
	font-weight:bold;
	font-style:italic;
  color:#485254;
}
#header ul#menu li a:hover,#header ul#menu li.active a{
	color:black;
}
#header ul#menu li#menu1 a{
	width:82px;
}
#header ul#menu li#menu2 a{
	width:69px;
}
#header ul#menu li#menu3 a{
	width:67px;
}
#header ul#menu li#menu4 a{
	width:83px;
}
/* ***************************************************** */
/* ***************************************************** */
/* obsah stranky */
#content{
  margin:0 0 10px 0;
  padding:0 10px 10px 10px;
  text-align:justify;
	border:1px solid #e5e5e4;
	background:url(img/content.png) repeat-x top;
}
#content ul, #content ol{
	padding:10px;
	border:1px #666;
	background:#dededd;
}
#content ul ul, #content ol ol{
	margin:0;
  padding:5px 10px;
  border:0;
}
#content ul li{
  margin-left:20px;
}
#content p{
	margin:10px 0;
}
/* ***************************************************** */
/* ***************************************************** */
/* paticka stranky */
#footer {
	margin:0;
  padding:25px 10px 10px 10px;
	clear:both;
	text-align:left;
	border:1px solid #e5e5e4;
	background:url(img/footer.jpg) no-repeat left top;
}
#footer, #footer *{
	color:#9d9c9b;
}
#footer img{
	margin:0;
	padding:0;
	text-decoration:none;
	vertical-align:middle;
	border:0;
}
/* ***************************************************** */
/* ***************************************************** */
/*                                                       */
/*                    copyright 2009                     */
/*                 piXmedia - Jakub Kribik               */
/*           www.pixmedia.cz | info@pixmedia.cz          */
/*                                                       */
/* ***************************************************** */
/* ***************************************************** */

/* ***************************************************** */
/* ***************************************************** */
/* detail clanku */
.clanek .anotace{
	font-style:italic;
}
.clanek .anotace a img{
	float:left;
	margin-right:10px;
	margin-bottom:5px;
}
.clanek .autor{
	border-top: 1px dotted black;
	border-bottom: 1px dotted black;
	margin-bottom:10px;
	padding-top:5px;
	padding-bottom:5px;
}
.clanek .kapitoly {
	margin-top: 15px;
	background: #EDEDED;
	border: 1px solid #C4C4C4;
	/*pridavam padding dolu kvuli http://www.motorkari.cz/detail-clanku/?cid=13062*/
	margin-bottom:30px;	
}
.clanek .kapitoly p {
	padding: 2px 0 3px 30px;
	color: #fff;
	margin:0px !important;
	font-weight: bold;
	background: #A1A1A1;
}
.clanek .kapitoly ol {
	padding: 3px 0 3px 30px !important;
	margin:0px !important;
	line-height: 160%;
	background:none !important;
}
.clanek .kapitoly ol li {
	list-style-type: decimal;
}
.clanek .kapitoly ol li a {
	color: #000;
	font-weight: bold;
}

.clanek img.leftfloated {
	float: left;
	margin-right:15px;
	margin-bottom:10px;
	margin-top:10px;
}
.clanek img.rightfloated {
	float: right;
	margin-left:10px;
	margin-bottom:10px;
	margin-top:10px;

}
.clanek div.centered {
	margin: 0px auto 0px auto;
	text-align:center;
	width: 680px;
	padding-bottom:10px;
	padding-top:10px;
}
.clanek div.centered p {
	margin: 4px 0;
	padding: 6px 10px;
	/*background: #EDEDED;*/
}
.clanek div.centered img {
	display:inline;
	float:none;
}
.clanek img{
	border:1px solid #E5E5E5;
	margin:2px;
	padding:2px;
}

