form ul {

	list-style: none;
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

form li {
	margin: 0.5em 0;
	font-size: 1em;
	font-weight: normal;
	vertical-align: top;
}

#dokument_board form p {
	margin: 0.5em 0;
	padding: 0px 5px;
	font-size: 0.86em;
	font-weight: normal;
	vertical-align: top;
}

form strong
{  font-size: 0.9em; 
   color: #000; 
   font-weight: bold;
   margin: 0px 5px;
   padding: 5px;
   vertikal-align: bottom;
} 

form h2 
{  font-size: 1em; 
   color: #900; 
   font-weight: bold;
   margin: 0px 5px;
   padding: 0px;
   vertikal-align: bottom;
} 

label {
	display: inline-block;
	padding: 3px 6px;
	text-align: right;
	width: 150px;
	font-size: 1em;
	font-weight: normal;
	vertical-align: top;
}


input, select, button {
	display: inline-block;
	font-size: 0.85em;
	font-weight: normal;
	height: 1.6em;
}

select {
	width: 170px;
}

.tlacidlo {
	border-radius: 4px;
	width: 150px;
	height: 40px;
	padding: 0px;
	text-align: center;
	font-size: 1em;
	font-weight: normal;
	vertical-align: middle;
	background: #FF8;
}

form.vymazat  {	
	border: none;
	vertical-align: middle;
	list-style: none;
	width: 30px;
	margin: 0px;
	padding: 0px;
	align: center;
	background-color: transparent;
}

#vyhladavac {
        display: block;
        position: relative;
	margin: 0px;
	padding: 0px;
	width: 100%;;
	font-weight: normal;
	background-color: #FFD;
	border-radius: 8px;
}

#vyhladavac form {
	border: none;
	list-style: none;
	margin: 0px;
	padding: 0px 0px 15px 15px;
	background-color: transparent;
}

.chyba  {
	font-size: 0.9em;
	color: red;
}

.txt_formular  {
	font-size: 0.86em;
	color: black;
	vertical-align: baseline;
}	
/* ------------------------------------   CHECK BOX  --------------------------------- */

/* The container */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    left: 0px;
    top: 5px;
    width: 30px;
    height: 30px;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}