header, footer, section, nav, article {  
    display: block;  
}

body {
	background: url("images/1.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: #ffffff;
}

header {
	width: 960px;
	height: 210px;
	margin: 0 auto;  
	margin-bottom: 20px;
}

.header0 {
	background: url(images/header_cport_white.png);
	width: 960px;
	height: 210px;
	position: absolute;
}

.header0:hover {
	background: url(images/header_cport_red.png);
	width: 960px;
	height: 210px;
}

.header0 a {
	width: 960px;
	height: 210px;
	display: block;
}

.header1 {
	background: url("images/header1.jpg");
	width: 210px;
	height: 210px;
	float: left;
}

.header2 {
	background: url("images/header2.png");
	width: 20px;
	height: 210px;
	float: left;
}

.header3 {
	background: url(images/header3.jpg);
	width: 730px;
	height: 210px;
	float: left;
}

section#wrapper {
	margin: 0 auto;  
	display: table;
    table-layout: fixed;
	width: 960px;
}

article {
	width: 690px;
	background: #212121;
	display: table-cell;
	padding: 0px 20px 20px 20px;
	color: #ffffff;
}

article.login {
	height: 500px;
}

section#section_article_1 {
	text-align: center;
}

section#section_article_1 img {
	margin-right: 5px;
	margin-bottom: 5px;
	border: 2px solid #eee; 
}

section#section_article_odkazy {
	color: #eee;
}

section#section_article_odkazy a {
	color: #ff0000;
}

.break {
	width: 20px;
	display: table-cell;
}

footer {
	width: 960px;
	height: 40px;
	margin: 0px auto;
	text-align: center;
	color: #ff0000;
	margin-bottom: 40px;
	margin-top: 40px;
	color: #eee;
}

footer a {
	color: #ff0000;
}

.sk_nadpis {
	text-align: left;
	margin: 0px 0px 20px 20px;
	font-size: 20px;
	color: #ff0000;
	text-shadow: 2px 2px 1px #000;
}

.uvod_obr {
	margin-bottom: 25px;
}

.uvod_obr img {
	width: 686px;
}

.uvod_obr .uvod_vstup {
	text-align: right;
}

.uvod_obr .uvod_vstup a {
	color: #eee;
	text-decoration: none;
}

.vyska {
	width: 450px;
	margin: 0 auto;
}

.vyska img {
	width: 446px;
}

.heslo {
	font-weight: bold;
}

.heslo input.text {
	border: 0; 
	padding: 5px; 
	color: #212121; 
	border: solid 1px #000000; 
	margin: 0 0 20px; 
	width: 200px;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px; 
	border-radius: 4px;
	background: #eeeeee;
}

.heslo input.submit {
	border: solid 1px #000000; 
	padding: 4px 10px; 
	margin: 0 0 20px; 
	font-weight: bold;
	color: #000000;
	cursor: pointer;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px; 
	border-radius: 4px;
	background: #eeeeee;
}

.heslo input.submit:hover {
	background: #aaaaaa;
}

.chyba {
	margin-bottom: 10px;
	color: #FF0000;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.center {
	text-align: center;
}

.login_form {
	margin: 0 auto;
	width: 355px;
	margin-top: 120px;
	font-weight: bold;
}

.login_form input.text {
	border: 0; 
	padding: 5px; 
	color: #212121; 
	border: solid 1px #000000; 
	width: 200px;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px; 
	border-radius: 4px;
	background: #eeeeee;
}

.login_form input.submit {
	border: solid 1px #000000; 
	padding: 4px 10px; 
	font-weight: bold;
	color: #000000;
	cursor: pointer;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px; 
	border-radius: 4px;
	background: #eeeeee;
}

.login_form input.submit:hover {
	background: #aaaaaa;
}


/* MENU */
nav {
	/*background: #3c3c3c;*/
	background: #333333;
	width: 210px;
	display: table-cell;
	padding-bottom: 20px;
}

nav ul {
	/* Removes bullet points */
	list-style: none;
	margin: 0;
	padding: 0;
}

nav ul li {
	/* Any child positioned absolutely will be positioned relative to this */
	position: relative;
}

nav a {
	color: #e8e8e8;
	padding: 12px 0px;
	/* Fill all available horizontal space */
	display: block;
	/* Remove underline */
	text-decoration: none;
	/* 
	New CSS3 animations:
	apply transition to background property, taking 1s to change it 
	*/
	transition: background 1s;
	-moz-transition: background 1s;
	-webkit-transition: background 1s;
	-o-transition: background 1s;
	font-size: 13px;
	/*text-transform: uppercase;*/
	padding-left: 20px;
}
nav a:hover, nav ul li.current a {
	/* 
	RGBA background for transparency: 
	last number(0.05) is the transparency 
	*/
	background: RGBA(255,255,255,0.15);
	color: #fff;
}
nav ul li.current a span {
	background: #ff0000 !important;
}
nav ul li.current ul li a {
	/*color: #666666;*/
	color: #111111;
}
nav a:hover span {
	background: #ff0000;
	transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
}
nav ul li:hover ul {
	display: block;
}
nav ul ul {
	position: absolute;
	left: 210px;
	top: 0;
	border-top: 1px solid #e9e9e9;
	display: none;
}
nav ul ul li {
	width: 200px;
	/*background: #f1f1f1;*/
	background: #888888;
	border: 1px solid #e9e9e9;
	border-top: 0;
}
nav ul ul li a {
	/*color: #666666;*/
	color: #111111;
	font-size: 12px;
	text-transform: none;
}
nav ul ul li a:hover, nav ul ul li a.current {
	color: #ff0000 !important;
}
nav span {
	width: 12px;
	height: 12px;
	background: #fff;
	display: inline-block;
	float: left;
	margin-top: 3px;
	margin-right: 20px;
	position: relative;
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
}
nav span:before {
	content: "";
	width: 12px;
	height: 2px;
	background: #3a3b3b;
	position: absolute;
	left: 0px;
	top: 5px;
}
nav span:after {
	content: "";
	width: 2px;
	height: 12px;
	background: #3a3b3b;
	position: absolute;
	left: 5px;
	position: top;
}
nav ul li.current span:before, nav ul li a:hover span:before {
	background: #595959;
}
nav ul li.current span:after, nav ul li a:hover span:after {
	background: #595959;
}

/* END MENU */