/*
 *	       __          __                __            
 *	  ____/ /__ _   __/ /_  ____  ____  / /__ _________
 *	 / __  / _ \ | / / __ \/ __ \/ __ \/ //_// ___/_  /
 *	/ /_/ /  __/ |/ / /_/ / /_/ / /_/ / ,< _/ /__  / /_
 *	\__,_/\___/|___/_.___/\____/\____/_/|_(_)___/ /___/
 *                                                   
 *                                                           
 *      TUTORIÁLY  <>  DISKUZE  <>  KOMUNITA  <>  SOFTWARE
 * 
 *	Tento zdrojový kód je součástí tutoriálů na programátorské 
 *	sociální síti WWW.DEVBOOK.CZ	
 *	
 *	Kód můžete upravovat jak chcete, jen zmiňte odkaz 
 *	na www.devbook.cz :-) 
 */

body {
	font-family: verdana;
	font-size: 14px;
	padding: 0px; margin: 0px; 
	width: 811px; 
	margin: 0 auto;
	margin-top: 120px;
	background: 
		url('bg_logo.png') no-repeat top right,
		url('bg_feet.png') no-repeat bottom right fixed,
		url('bg_palm.png') no-repeat 25% center fixed,
		url('bg_landscape.png') repeat-x center fixed,
		url('bg_color.png') center fixed;
}

h1 {
	text-align: center;
	color: #444444;
}

nav ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

nav ul li {
	display: block;
	float: left;
	background: url('bg_button.png');
	-webkit-transition: 200ms linear 0s;
	-moz-transition: 200ms linear 0s;
	-ie-transition: 200ms linear 0s;
	-o-transition: 200ms linear 0s;
	transition: 200ms linear 0s;
	width: 141px;
	height: 34px;
	text-align: center;
	padding-top: 10px;
	margin-right: 26px;
}

nav ul li a {
	color: white;
	font-weight: bold;
	text-shadow: -1px 0px 0px #333, 0px -1px 0px #333, 1px 0px 0px #333, 0px 1px 0px #333;
	text-decoration: none;
}

#last-li {
	margin-right: 0px;
}

nav ul li:hover {
	background: url('bg_button_hover.png');
	-webkit-transition: 500ms linear 0s;
	-moz-transition: 500ms linear 0s;
	-ie-transition: 500ms linear 0s;
	-o-transition: 500ms linear 0s;
	transition: 500ms linear 0s;
	cursor: pointer;
}

article {
	background: url('bg_article_middle.png'); 
	padding: 1px 10px;
	text-shadow: 3px 3px 3px #aaaaaa;
}

#article-top {
	background: url('bg_article_top.png') no-repeat bottom; 
	height: 16px;
	margin-top: 10px;
}

footer {
	background: url('bg_article_bottom.png') no-repeat top; 
	height: 21px; 
	padding-top: 28px;
	font-size: 12px;
	text-align: center;
}