@font-face {
    font-family: Poppins;
    src: url('/_fonts/Poppins-Regular.ttf');
}
@font-face {
    font-family: Poppins;
    src: url('/_fonts/Poppins-Italic.ttf');
    font-style: italic;
}
@font-face {
    font-family: Poppins;
    src: url('/_fonts/Poppins-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: Poppins;
    src: url('/_fonts/Poppins-BoldItalic.ttf');
    font-weight: bold;
	font-style: italic;
}
@font-face {
    font-family: Poppins;
    src: url('/_fonts/Poppins-SemiBold.ttf');
    font-weight: 600;
}
@font-face {
    font-family: Poppins;
    src: url('/_fonts/Poppins-SemiBoldItalic.ttf');
    font-weight: 600;
	font-style: italic;
}


/* Základní */

body, html {
	height: 100%;
}
body {
	margin: 0px;
	background: white;
	color: #58595B;
	font-family: "Poppins" !important;
	font-size: 16px;
	display: flex;
	flex-direction: column;
}

article, section, header, nav, aside, footer {
	display: block;
}

input, select, textarea, .button {
	display: inline-block;
	max-width: 100%;
	border: 1px solid #00458D;
}
input:focus, input:active, input:after {
	outline: none;
}
input[type=text] {
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 10px;
}
input[type=submit], input[type=reset] {
	background-color: #00458D;
	color: white;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 10px;
}
input[type=submit]:hover, input[type=reset]:hover {
	color: #00458D;
	background-color: white;
}

div, input, select, .button, nav, footer, header {
	box-sizing: border-box;
}

a {
	color: #00458D;
	text-decoration: underline;
}
a:hover {
	color: #00458D;
	text-decoration: none;
}
a:focus {
	outline: 2px solid #00458D;
	text-decoration: none;
}
a.odkaz {
	color: #00458D !important;
	text-decoration: underline;
}
a.odkaz:hover {
	color: #00458D !important;
	text-decoration: none !important;
}
a.odkaz:focus {
	outline: 2px solid #00458D;
	text-decoration: none;
}
a.odkaz_blok {
	display: block;
}
a.odkaz_blok_inline {
	display: inline-block;
}

button.odkaz {
	color: #00458D !important;
	text-decoration: underline;
	background: none;
	border: 0;
	padding-left: 0;
}
button.odkaz:hover {
	color: #00458D !important;
	text-decoration: none !important;
}
button.odkaz:focus {
	outline: 2px solid #00458D;
	text-decoration: none;
}

p, li {
	margin: 0 0 10px 0;
	text-align: left;
	word-break: break-word;
}
ol, ul {
	margin-top: 10px;
}

h1 {
	font-size: 28px;
	font-style: normal;
	font-weight: bold;
	color: #00458D;
	margin-bottom: 40px;
}
h1.nadpis_stranka {
	margin-top: 0;
}
h1.nadpis_stranka:before {
	content: url(/_obrazky/h1.png);
	display: inline-block;
	vertical-align: middle;
	margin-left: -55px;
	margin-right: 10px;
	margin-top: -16px;
}
h2 {
	font-size: 20px;
	font-family: "Poppins";
	font-style: normal;
	font-weight: bold;
	color: #00458D;
	margin-bottom: 20px;
	margin-top: 40px;
}
h2:before {
	content: "\2014";
	color: #00AEEF;
	display: inline-block;
	vertical-align: middle;
	margin-left: -30px;
	margin-right: 10px;
	margin-top: 0px;
	font-weight: normal;
}
h3 {
	font-size: 18px;
	font-family: "Poppins";
	font-style: normal;
	font-weight: bold;
	color: #00458D;
	margin-bottom: 20px;
	margin-top: 40px;
}
h3:before {
	content: "\2014";
	color: #00AEEF;
	display: inline-block;
	vertical-align: middle;
	margin-left: -30px;
	margin-right: 10px;
	margin-top: -3px;
	font-weight: normal;
}
h4 {
	font-size: 16px;
	font-family: "Poppins";
	font-style: normal;
	font-weight: bold;
	color: #58595B;
	margin-top: 20px;
	margin-bottom: 20px;
}
.nadpis_stred {
	color: #58595B;
	font-family: "Poppins";
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
}
.nadpis_stred:before {
	content: none;
}
.nadpis_velikost_normalni {
	font-size: 16px;
}

@media screen and (max-width: 640px) {

	h1.nadpis_stranka:before {
		margin-left: 0;
	}

	h2:before {
		margin-left: 0px;
	}
	
	h3:before {
		margin-left: 0px;
	}
}


/* Tabulka */

table {
	margin: 0 auto 0 auto;
	width: 100%;
	border: 0;
	border-spacing: 0px;
	border-collapse: collapse;
}
table td {
	padding: 5px;
	text-align: left;
}
table th {
	font-weight: bold;
	padding: 5px;
	text-align: left;
}

table.vypis_stred td,
table.vypis_stred th
{
	text-align: center;
}


div.vypis {
	width: 100%;
	overflow: scroll;
	margin: auto;
	padding: 0;
	overflow-y: hidden;
	overflow-x: auto;
	box-sizing: border-box;
}
@media screen and (max-width: 1400px) {

	div.vypis {
		width: 100vw;
	}
}
