/* reset */
html, body, div, h1, h2, h3, h4, h5, h6, header, section, nav, ul, li, img, article, p, a, span, figure, footer, form, label, input{
	margin: 0;
	padding: 0;
	border: 0;
}

figcaption 
{
	margin: 1em auto auto 1em;
  font-size: 1.4em;
}

ul {
	list-style: none;
}

nav, header, figure, article, section {
	display: block;
}

img {
	vertical-align: middle;
}

/* Definování fontů */
@font-face{
	font-family: firaSansOtLight;
	src: url('./font/firasansot-light-webfont.woff');
}

@font-face{
	font-family: firaSansOtReg;
	src: url('./font/firasansot-regular-webfont.woff');
}

@font-face{
	font-family: sourceSansProLight;
	src: url('./font/SourceSansPro-Light.otf.woff');
}

body {
	background-color: #f2f3f4;
	text-align: center;
	width: 100%;
	min-width: 28em;
	font-family: firaSansOtLight, "Trebuchet MS", Helvetica, sans-serif;
	font-size: 100%;
	color: #1d1d1c;
}

section {
	width: 100%;
	float: left;
	position: relative;
	padding: 1.5em 0 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

a {
	transition: color .5s;
	-webkit-transition: color .5s;
}

.content {
	position: relative;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.alignContainer {
	display: table;
	width: 100%;
	min-height: 100%;
}

.alignCntnt {
	position: relative;
	display: table-cell;
	min-height: 100%;
	vertical-align: middle;
}

.alignCntnt h6 {
  color: #f6bd1c;
}

.hidnTx {
	display: none;
}

@keyframes fadein{
	from{opacity: 0;}
	to{opacity: 1;}
}

@-webkit-keyframes fadein{
	from{opacity: 0;}
	to{opacity: 1;}
}

@keyframes fadeout{
	from{opacity: 1;}
	to{opacity: 0;}
}

@-webkit-keyframes fadeout{
	from{opacity: 1;}
	to{opacity: 0;}
}

.popUp {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	text-align: justify;
	z-index: 985;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.popUpBg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #f2f3f4;
	opacity: 0.8;
	z-index: 984;
}

.popUpBg:hover {
	cursor: pointer;
}

.popUpClose {
	position: absolute;
	top: 1em;
	right: 1em;
	width: 2.2em;
	height: auto;
	opacity: 0.85;
	transition: all 0.4s ease-out;
}

.popUpClose:hover {
	cursor: pointer;
	opacity: 1;
}

.popUp div.alignContainer {
	position: relative;
	text-align: center;
}

.popUp article {
	position: relative;
	margin: 0 auto;
	width: 50em;
	overflow-y: auto;
	padding: 4em 3em 0;
	background-color: #2a8bc2;
	color: #f2f3f4;
	z-index: 987;
	text-align: left;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.popUp article {
	width: 100%;
	padding: 2em 1em 0;
}
}

.popUp article p {
	padding-top: 0.2em;
	font-size: 1.1em;
	line-height: 1.3;
	text-align: justify;
}

.popUp article p:last-child {
	padding-top: 0.8em;
	padding-bottom: 5em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.popUp article p:last-child {
	padding-bottom: 3em;
}
}

.popUp article a {
	font-family: firaSansOtReg;
	color: #f2f3f4;
}

.popUp article a:hover {
	color: #f6bd1c;
}

.popUp article h5 {
	font-family: firaSansOtReg;
	font-weight: normal;
	font-size: 1.6em;
	line-height: 1.3;
}

.popUp article h6 {
	font-family: firaSansOtLight;
	font-weight: normal;
	font-size: 1.4em;
	line-height: 1.2;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.popUp article h5 {
	font-size: 1.5em;
	line-height: 1;
	padding-right: 1.8em;
}

.popUp article h6 {
	font-size: 1.3em;
	line-height: 1;
	padding-top: 0.2em;
}
}

/* landpage */
section#home {
	background-image: url('./bg_2024.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 46em;
	padding: 0;
}

header#logo {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -26em;
	margin-top: -3em;
	width: 52em;
	height: 100vh;
	padding: 2em 0;
	color: #f2f3f4;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
header#logo {
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 0;
	margin-top: -3em;
	width: 100%;
	padding: 0;
}
}

header#logo div.lpBg {
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	z-index: 1;
	position: absolute;
	top: 3em;
	left: 0;
}

header#logo div.alignContainer {
	z-index: 3;
}

header#logo div.alignCntnt {
	z-index: 3;
}

header#logo img {
	position: relative;
	margin-top: 2.5em;
	width: 19em;
	height: auto;
	z-index: 3;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
header#logo img {
	margin-top: 3.5em;
}
}

header#logo h1 {
	font-family: sourceSansProLight;
	font-size: 8.2em;
	font-weight: normal;
	line-height: 1;
}

header#logo p {
	padding-top: 1.2em;
	font-size: 1.4em;
	color: #ffffff;
}

header#logo p:last-child {
	padding-top: 0;
}

header#logo h2 {
	font-family: firaSansOtReg;
	font-size: 2.7em;
	font-weight: normal;
	line-height: 1.4;
	color: #f6bd1c;
}

.nametag { float: left; width: 46%; margin: 3em 2% 0 2%}

/*menu*/

nav#menu figure.domu {
	float: left;
	width: 6.2em;
	margin-top: 1em;
	margin-left: 3.3em;
	position: relative;
}

nav#menu {
	position: fixed;
	bottom: 0;
	z-index: 900;
	width: 100%;
	height: 3.4em;
	box-shadow: 0px 0px 5px #777;
	background-color: #002a54;
}

@media screen and (min-width: 0) and (max-width: 73em){
nav#menu figure.domu {
	margin-left: 5%;
}

nav#menu {
	height: 5em;
}

.nametag {width: 98%}
}



nav#menu figure.domu a img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}

nav#menu figure.domu #mnuLogo{
	transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	opacity: 1;
	transition: all .5s linear;
	-webkit-transition: all .5s linear;
}

nav#menu figure.domu img#nahoru{
	transform: translatey(50%) rotateX(-90deg);
	-ms-transform: translatey(50%) rotateX(-90deg);
	-webkit-transform: translatey(50%) rotateX(-90deg);
	opacity: 0;
	transition: all .5s linear;
	-webkit-transition: all .5s linear;
}

nav#menu figure.domu a:hover #mnuLogo{
	transform: translatey(-50%) rotateX(90deg);
	-ms-transform: translatey(-50%) rotateX(90deg);
	-webkit-transform: translatey(-50%) rotateX(90deg);
	opacity: 0;
}

nav#menu figure.domu a:hover #nahoru{
	transform: translatey(0) rotateX(0deg);
	-ms-transform: translatey(0) rotateX(0deg);
	-webkit-transform: translatey(0) rotateX(0deg);
	opacity: 1;
}

nav#menu figure#menuIcon {
	display:none;
}




@media screen and (min-width: 0) and (max-width: 73em){
nav#menu figure#menuIcon {
	display: block;
	float: right;
	width: 2.6em;
	margin-top: 1.35em;
	margin-right: 5%;
	position: relative;
}

nav#menu figure#menuIcon div {
	width: 100%;
	height: 0.375em;
	background-color: #fff;
	margin-bottom: 0.375em;
	transition: all 0.4s ease-out;
}

nav#menu figure#menuIcon:hover {
	cursor: pointer;
}

nav#menu figure#menuIcon:hover div {
	background-color: #2b8bc1;
}
}

nav#menu ul.menuHor {
	display: block;
	position: relative;
	float: right;
	padding-top: 0.2em;
	margin-right: 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

nav#menu ul li {
	display: inline-block;
	position: relative;
	padding: 0 1em;
	border-left: 2px solid #f6bd1c;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	color: black
}

nav#menu ul li:first-child{
	border-left: 0;
}

nav#menu ul li a {
	text-decoration: none;
	color: #FFF;
	font-size: 1.5em;
	font-family: firaSansOtReg;
	line-height: 1;
}

nav#menu ul li a:hover {
	color: #2a8bc2;
}

nav#menu ul li.mnuCont {
	padding: 0 .5em;
	height: 100%;
	border-left: 0;
}

nav#menu ul li.mnuCont a {
	display: block;
	position: relative;
	float: left;
	width: 2.35em;
	height: 2em;
	font-size: 1em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

nav#menu ul li.mnuCont a:first-child {
	margin-right: 0.5em;
}

nav#menu ul li.mnuCont a img {
	position: absolute;
	top: 0.3em;
	left: 0;
	width: 100%;
	height: auto;
	opacity: 1;
	transition: all .2s linear;
	-webkit-transition: all .2s linear;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

nav#menu ul li.mnuCont a:hover img {
	opacity: 0;
}

nav#menu ul li.mnuCont a img.socClr {
	opacity: 0;
}

nav#menu ul li.mnuCont a:hover img.socClr {
	opacity: 1;
}

@media screen and (min-width: 0) and (max-width: 73em){
nav#menu ul.menuHor {
	display: none;
}

nav#menu ul.menuVert {
	display: block;
	position: absolute;
	float: none;
	bottom: 4.8em;
	right: 0;
	width: 22em;
	padding: 1em 1.5em 1.8em;
	margin: 0;
	background-color: #002a54;
	text-align: left;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

nav#menu ul li {
	display: block;
	padding: .9em 0.6em 1em;
	border-top: 1px solid #a5a3a1;
	border-left: 0;
}

nav#menu ul li:first-child{
	border-top: 0;
}

nav#menu ul li a {
	font-family: firaSansOtLight;
}

nav#menu ul li.mnuCont {
	width: 14em;
	border-top: 0;
	margin: 0 auto;
	padding: 0em 0 0;
}
}

/* nadpisy */
header.sectHdr {
	position: relative;
	width: 80%;
	height: 8.5em;
	margin: 1em auto 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 53.5em) and (max-width: 73em){
header.sectHdr {
	width: 96%;
}
}

@media screen and (min-width: 0) and (max-width: 53.5em){
header.sectHdr {
	width: 97%;
}
}

div.sectHdrOut {
	width: 100%;
	height: 5.2em;
	background-color: #f2f3f4;
	position: absolute;
	top: 0;
	left: 0;
}

div.sectHdrOut:before {
	content:"";
	position: absolute;
	top: 100%;
	width: 0;
	height: 0;
	transform: skewX(36deg);
	-ms-transform: skewX(36deg);
	-webkit-transform: skewX(36deg);
	border-top: 2.64em solid #f2f3f4;
	border-right: 1.2em solid transparent;
	border-left: 1.2em solid transparent;
	right: 0.55em;
}

div.sectHdrIn {
	position: absolute;
	width: 100%;
	height: 4.8em;
	left: 0;
	top: 0.2em;
	text-align: center;
	background-color: #0065BD;
}

div.sectHdrIn:before {
	content:"";
	position: absolute;
	top: 100%;
	width: 0;
	height: 0;
	transform: skewX(36deg);
	-ms-transform: skewX(36deg);
	-webkit-transform: skewX(36deg);
	border-top: 2.2em solid #0065BD;
	border-right: 1em solid transparent;
	border-left: 1em solid transparent;
	right: 1em;
}

header.sectHdr h3 {
	font-family: firaSansOtReg;
	font-size: 2.6em;
	color: #f2f3f4;
	font-weight: normal;
	line-height: 2;
}

/* about */
section#about {
	background-color: #0065BD;
	color: #f2f3f4;
}

section#about article {
	width: 52em;
	margin: 0 auto;
	margin-bottom: 5em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#about article {
	width: 96%;
	margin-bottom: 2em;
}
}

section#about article p {
	text-align: justify;
	font-size: 1.4em;
	line-height: 1.2;
	padding-bottom: 1em;
}

section#about article p a {
	text-decoration: none;
	color: #f2f3f4;
	font-family: firaSansOtReg;
}

section#about article p a:hover {
	color: #f6bd1c;
}

section#about article p:last-child a {
	text-decoration: underline;
}

/* prednasejici */
section#spikri {
	background-color: #f6bd1c;
	padding-bottom: 8em;
}

section#prog2020 {
	background-color: #f6bd1c;
	color: white;
	padding-bottom: 8em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){


section#spikri {
	padding-bottom: 4em;
}
}

section#spikri header.sectHdr {
	margin: 1em auto 1em;
}

section#spikri div.sectHdrOut:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.64em solid #f2f3f4;
   left: 0.55em;
}

section#spikri div.sectHdrIn {
   background-color: #f6bd1c;
}

section#spikri div.sectHdrIn:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.2em solid #f6bd1c;
   left: 1em;
}

section#prog2020 {
	padding-bottom: 4em;
}
}

section#prog2020 header.sectHdr {
	margin: 1em auto 1em;
}

section#prog2020 div.sectHdrOut:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.64em solid #f2f3f4;
   left: 0.55em;
}

section#prog2020 div.sectHdrIn {
   background-color: #f6bd1c;
}

section#prog2020 div.sectHdrIn:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.2em solid #f6bd1c;
   left: 1em;
}

div.sectCntnt {
	width: 100%;
	padding: 0 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}

@media screen and (min-width: 0) and (max-width: 73em){
div.sectCntnt {
	padding: 0;
}
}

div.tableBox {
	float: left;
	position: relative;
	width: 50%;
	border: 3px solid #f6bd1c;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 53.5em) and (max-width: 73em){
div.tableBox {
	float: none;
	width: 96%;
	margin: 0 auto;
}
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBox {
	float: none;
	width: 100%;
	margin: 0 auto;
	border-left: 0;
	border-right: 0;
}
}

div.tableBox header {
	height: 8em;
	color: #f2f3f4;
	background-color: #2a8bc2;
	text-align: left;
	position: relative;
	transition: all 0.4s ease-out;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBox header {
	height: 8em;
}
}

div.tableBox header:hover {
	background-color: #115ca3;
	cursor: pointer;
}

.tableBox figure {
	position: relative;
	float: left;
	width: 8em;
	height: 100%;
	margin-right: 2em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.tableBox figure {
	width: 8em;
}
}

.tableBox img.hlava {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
}

.tableBox img.pdf {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 2.4em;
	height: auto;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.tableBox figure {
	margin-right: 1.1em;
}
}

div.tableBox h4 {
	font-size: 2.2em;
	font-family: firaSansOtReg;
	font-weight: normal;
	line-height: 1;
	padding-top: 1.1em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBox h4 {
	font-size: 2.1em;
	padding-top: 0.7em;
}
}

div.tableBox header p {
	font-size: 1.2em;
	line-height: 1.1;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBox header p {
	font-size: 1.3em;
	padding-top: 0.15em;
}
}

/*program*/
div.sectCntnt {
	width: 84%;
	padding: 0 2%;
	margin: 0 8% 0 8%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}

@media screen and (min-width: 0) and (max-width: 73em){
div.sectCntnt {
	padding: 0;
}
}

div.tableBoxProgram {
	float: left;
	position: relative;
	width: 50%;
	border: 3px solid #f6bd1c;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 53.5em) and (max-width: 73em){
div.tableBoxProgram {
	float: none;
	width: 96%;
	margin: 0 auto;
}
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBox {
	float: none;
	width: 100%;
	margin: 0 auto;
	border-left: 0;
	border-right: 0;
}
}

div.tableBoxProgram header {
	height: 13em;
	color: #f2f3f4;
	background-color: #0065BD;
	text-align: left;
	position: relative;
	transition: all 0.4s ease-out;
}

.odkaz_program{
  text-decoration: none;
  color: white;
  font-size: 90%;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBoxProgram header {
	height: 8em;
}
}

div.tableBoxProgram header:hover {
	background-color: #0065BD;
	cursor: pointer;
}

.tableBoxProgram figure {
	position: relative;
	float: left;
	width: 9em;
	height: 100%;
	margin-right: 2em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.tableBox figure {
	width: 8em;
}
}

.tableBoxProgram img.hlava {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
}

.tableBoxProgram img.pdf {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 2.4em;
	height: auto;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.tableBoxProgram figure {
	margin-right: 1.1em;
}
}

div.tableBoxProgram h4 {
	font-size: 2.2em;
	font-family: firaSansOtReg;
	font-weight: normal;
	line-height: 1;
	padding-top: 1.5em;
}

div.tableBoxProgram h5 {
	font-size: 1.2em;
  color: #f6bd1c;
}

div.tableBoxProgram h5 a {
	font-size: 1em;
  color: #f6bd1c;
  text-decoration:none;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBoxProgram h4 {
	font-size: 2.1em;
	padding-top: 0.7em;
}
}

div.tableBoxProgram header p {
	font-size: 1.5em;
	line-height: 1.1;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBox header p {
	font-size: 1.3em;
	padding-top: 0.15em;
}
}


section#program {
	background-color: #0065BD;
	color: #f2f3f4;
	padding-bottom: 8em;
}



@media screen and (min-width: 0) and (max-width: 53.5em){
section#program {
	padding-bottom: 4em;
}
}

section#program div.tableBox {
	float: none;
	width: 68em;
	margin: 0 auto;
	border: 3px solid #0065BD;
}

@media screen and (min-width: 53.5em) and (max-width: 73em){
section#program div.tableBox {
	width: 96%;
}
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#program div.tableBox {
	width: 100%;
	border-left: 0;
	border-right: 0;
}
}

section#program div.tableBox header {
	display: table;
	height: 7.2em;
}

section#program div.tableBox header:hover {
	background-color: #2a8bc2;
	cursor: auto;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#program div.tableBox header {
	height: 6.5em;
	padding-right: .4em;
}
}

section#program div.tableBox header figure {
	display: table;
	float: left;
	width: 10em;
	height: 100%;
	margin-right: 1em;
	background-color: #f6bd1c;
	text-align: center;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#program div.tableBox header figure {
	width: 7em;
	margin-right: .5em;
}
}

section#program div.tableBox header figcaption {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	font-size: 2.6em;
	font-family: firaSansOtReg;
	font-weight: normal;
	line-height: 1;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#program div.tableBox header figcaption {
	font-size: 2.3em;
}
}

section#program div.tableBox header div {
	display: table-cell;
	vertical-align: middle;
	height: 100%;
}

section#program div.tableBox h4 {
	font-family: firaSansOtReg;
	font-size: 2em;
	line-height: 1.1;
	padding-top: 0;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#program div.tableBox h4 {
	font-size: 1.6em;
	line-height: 1.1;
}
}

section#program div.tableBox h5 {
	font-family: firaSansOtLight;
	font-size: 1.5em;
	line-height: 1.2;
	padding-top: 0;
	padding-left: 0.1em;
	font-weight: normal;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#program div.tableBox h5 {
	font-size: 1.3em;
	line-height: 1.1;
}
}


/* registrace */
section#registrace {
	background-color: #f6bd1c;
}

/* organizatori */
section#organizatori {
	text-align: center;
	padding-bottom: 3em;
	background: #f6bd1c;
}

section#organizatori header.sectHdr {
	margin: 1em auto 1em;
}

section#organizatori div.sectHdrOut {
   background-color: #FFF;
}

section#organizatori div.sectHdrOut:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.64em solid #FFF;
   left: 0.55em;
}

section#organizatori div.sectHdrIn {
   background-color: #f6bd1c;
}

section#organizatori div.sectHdrIn:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.2em solid #f6bd1c;
   left: 1em;
}

section#organizatori header.sectHdr h3 {
	color: #FFF;
}

div.sectCntntOrg {
	width: 100%;
	padding: 0 2%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: relative;
}

@media screen and (min-width: 0) and (max-width: 73em){
div.sectCntntOrg {
	padding: 0;
}
}


div.tableBoxOrg {
	float: left;
	position: relative;
	width: 50%;
	border: 3px solid #f6bd1c;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 53.5em) and (max-width: 73em){
div.tableBoxOrg {
	float: none;
	width: 96%;
	margin: 0 auto;
}
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBoxOrg {
	float: none;
	width: 100%;
	margin: 0 auto;
	border-left: 0;
	border-right: 0;
}
}

div.tableBoxOrg header {
	height: 11em;
	color: #f2f3f4;
	background-color: #2a8bc2;
	text-align: left;
	position: relative;
	transition: all 0.4s ease-out;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBoxOrg header {
	height: 8em;
}
}

.tableBoxOrg figure {
	position: relative;
	float: left;
	width: 11em;
	height: 100%;
	margin-right: 2em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.tableBoxOrg figure {
	width: 8em;
}
}

.tableBoxOrg img.hlava {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
.tableBoxOrg figure {
	margin-right: 1.1em;
}
}

div.tableBoxOrg h4 {
	font-size: 2.7em;
	font-family: firaSansOtReg;
	font-weight: normal;
	line-height: 1;
	padding-top: 1.1em;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBoxOrg h4 {
	font-size: 2.1em;
	padding-top: 0.7em;
}
}

div.tableBoxOrg header p {
	font-size: 1.5em;
	line-height: 1.1;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
div.tableBoxOrg header p {
	font-size: 1.3em;
	padding-top: 0.15em;
}
}


/* partneri */
section#partneri {
	text-align: center;
	padding-bottom: 3em;
}

section#partneri header.sectHdr {
	margin: 1em auto 1em;
}

section#partneri div.sectHdrOut {
   background-color: #1d1c1b;
}

section#partneri div.sectHdrOut:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.64em solid #1d1c1b;
   left: 0.55em;
}

section#partneri div.sectHdrIn {
   background-color: #f2f3f4;
}

section#partneri div.sectHdrIn:before {
	 transform: skewX(-36deg);
	 -ms-transform: skewX(-36deg);
	 -webkit-transform: skewX(-36deg);
   border-top: 2.2em solid #f2f3f4;
   left: 1em;
}

section#partneri header.sectHdr h3 {
	color: #1d1c1b;
}

section#partneri figure.tretina {
	float: left;
	position: relative;
	width: 33%;
	padding: 0 2em;
	margin: 1em auto 3em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

@media screen and (min-width: 53.5em) and (max-width: 73em){
section#partneri figure.tretina {
	padding: 0;
	float: none;
	width: 30em;
}
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#partneri figure.tretina {
	padding: 0 1em;
	float: none;
	width: 100%;
}
section#partneri figure.polovina {
	padding: 0 1em;
	float: none;
	width: 100%;
}
}

section#partneri figure.tretina h4 {
	font-size: 2.5em;
	font-family: firaSansOtLight;
	font-weight: normal;
	padding-top: 1.3em;
	line-height: 1.2;
}

@media screen and (min-width: 0) and (max-width: 53.5em){
section#partneri figure.tretina h4 {
	font-size: 2em;
	padding-top: 1em;
}
}

section#partneri figure.tretina img {
	padding-top: 1.8em;
	width: 100%;
	height: auto;
	max-width: 25em;
}

section#partneri figure.polovina img {
	padding-top: 1.8em;
	width: 100%;
	height: auto;
	max-width: 25em;
}


figure.tretina p{
	font-size: 2em;
	font-family: firaSansOtLight;
	line-height: 1.2;
}
figure.polovina p{
	font-size: 2em;
	font-family: firaSansOtLight;
	line-height: 1.2;
}

/* 2013 */
@media screen and (min-width: 57em){
div.vloni {
	width: 55em;
	margin: 0 auto;
}
}

@media screen and (max-width: 57em){
div.vloni {
	width: 100%;
	padding: 0 0.8em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
}

header.vlonihead {
	width: 100%;
	margin: 0;
	padding: 2.2em 0 1.2em 0;
}

@media screen and (min-width: 57em){
header.vlonihead  h1{
	color: #2a8bc2;
	font-size: 3.5em;
	line-height: 1.1;
	font-family: firaSansOtReg, "Trebuchet MS", Helvetica, sans-serif;
	font-weight: normal;
	text-align: justify;
}
}

@media screen and (max-width: 57em){
header.vlonihead  h1{
	color: #2a8bc2;
	font-size: 3em;
	line-height: 1.1;
	font-family: firaSansOtReg, "Trebuchet MS", Helvetica, sans-serif;
	font-weight: normal;
	text-align: left;
}
}

@media screen and (min-width: 57em){
article.vlonibody {
	position: relative;
	text-align: justify;
}
}

@media screen and (max-width: 57em){
article.vlonibody {
	position: relative;
	text-align: left;
}
}

article.vlonibody h2 {
	color: #2a8bc2;
	font-size: 2em;
	line-height: 1.1;
	font-family: firaSansOtReg, "Trebuchet MS", Helvetica, sans-serif;
	font-weight: normal;
	padding: 0.3em 0;
}

article.vlonibody p {
	font-size: 1.2em;
	text-indent: 2.6em;
	padding-bottom: 0.8em;
	line-height: 1.2;
}

@media screen and (max-width: 57em){
article.vlonibody p {
	text-align: justify;
}
}

article.vlonibody p a {
	color: #2a8bc2;
	text-decoration: none;
	font-family: firaSansOtReg, "Trebuchet MS", Helvetica, sans-serif;
}

article.vlonibody p a:hover{
	color: #f6bd1c;
	text-decoration: underline;
}

article.vlonibody p span {
	font-family: firaSansOtReg, "Trebuchet MS", Helvetica, sans-serif;
}

article.vlonibody footer {
	position: relative;
	font-size: 1.2em;
	float: right;
	padding-bottom: 4em;
}

figure#zpet {
	position: fixed;
	bottom: 0;
	left: 50%;
	margin-left: -20em;
	width: 40em;
	height: 3.2em;
}

figure#zpet div {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #2a8bc2;
	color: #f2f3f4;
	text-decoration: none;
	padding-top: 0.35em;
	font-size: 1.5em;
	font-family: firaSansOtReg, "Trebuchet MS", Helvetica, sans-serif;
	transition: all .4s linear;
}

figure#zpet a {
	text-decoration: none;
}

figure#zpet div:hover {
	background-color: #115ca3;
}
#index {
	color: white;
}

section#archiv {
	background: #0065BD;
	color: white
}

section#archiv td,tr {
	text-align: left
}

section#archiv a {
	color: white
}


.program_new {width: 90%; margin: 0 5% 0 5%; float: left}
.program_new .block {margin-bottom: 3em; text-align: center; width: 100%; float: left}
.program_new .profile {width: 29%; margin-right: 1%; float: left; text-align: right}
.program_new .profile .photo {width: 100px; border-radius: 50%}
.program_new .info {width: 100%; float: left}
.program_new .time {font-size: 1.5em; margin-bottom: 0.5em}
.program_new .name {font-size: 1.9em; font-weight: 900}
.program_new .person {font-size: 1.0em; margin-top: 1em; font-weight: 900}
.program_new .speaker_name {margin-top: 0.5em; }
.program_new .des {margin-top: 0.5em; }


.speakers {display: flex; justify-content: center; flex-wrap: wrap;} 
.speaker {display: flex; flex-direction: column; padding: 2em 1em 2em 1em; align-items: center; flex:  0 1 320px; MAX-WIDTH: 320px; min-WIDTH: 320px; transition: all 1s ease} 
.speaker:hover {   box-shadow: 0px 0px 8px #ecedee; background: rgba(255,255,255,0.1); cursor: pointer}
.speaker .photo {width: 150px; height: 150px; border-radius: 50%}
.speaker .jmeno {margin-top: 0.5em; font-size: 1.5em; font-family: "fira-sans"; text-transform: uppercase; font-weight: 700; color: white}
.speaker .firma {margin-top: 0.1em; font-size: 1em; font-family: "fira-sans"; font-weight: 400; color: white}





.partners {display: flex; justify-content: center; flex-wrap: wrap;} 
.partner {display: flex; flex-direction: column; padding: 2em 1em 2em 1em; align-items: center; flex:  0 1 250px; MAX-WIDTH: 320px; min-WIDTH: 320px; transition: all 1s ease} 
.partner:hover {   box-shadow: 0px 0px 8px #ecedee; background: rgba(255,255,255,0.1); cursor: pointer}
.partner .photo {width: 250px; }


section#fotogalerie {
	background-color: #0065BD;
	color: #f2f3f4;
	padding-bottom: 8em;
}

section#fotogalerie img {margin: 0.5em 0.5em 0.5em 0.5em; height: 150px;  transition: all 1s ease} 
section#fotogalerie img:hover {   box-shadow: 0px 0px 8px #ecedee; background: rgba(255,255,255,0.1); cursor: pointer}
¨

strong {color: white}
table {color: white}
