/*
 *  CSS - často používané styly
 */


/* ----- Zarovnání ---------------------------------------------------------- */
.left {text-align: left;}
.right {text-align: right;}
.center {text-align: center;}
.justify {text-align: justify;}
.f-left {float: left;}
.f-right {float: right;}
.i {font-style: italic;}
.v-top {vertical-align: top;}

/* ----- Ohraničení --------------------------------------------------------- */
.border {border: 1px solid #000000;}
/* ----- Skrytí --------------------------------------------------------- */
.hidden {display:none;}
/* ----- Font --------------------------------------------------------------- */
.bold {font-weight: bold;}

/* ----- Hlasky ----------------------------------------------------------------- */
.info-ok {
	background-color: #008866;
	color: #ffffff;
	font-weight: bold;
	padding: 5px;
	border: solid #cfcfcf 1px;
}
.info-err {
	background-color: #990033;
	color: #ffffff;
	font-weight: bold;
	padding: 5px;
	border: solid #cfcfcf 1px;
}
.hlaska-info {
	background-color: #ffffff;
	color: #FF0000;
}
.form-err {
	background-color: #ffffff;
	color: #FF0000;
	font-weight: bold;
}

/* ----- Tabulky ----------------------------------------------------------------- */
.radka1 {
	background-color: #e9f5f4;
}
.radka2 {
	background-color: 	#fcfefd;
}

#show-table {
	
	font-size: 0.9em;
	text-align: center;
}
#show-table th {
	background-color: #bcdddb;
	font-weight: bold;
	border-top: solid #97cdc9 1px;
	border-bottom: solid #97cdc9 1px;
	padding: 4px 2px 4px 2px;
	text-align: center;
	
}


