



























































































body, input, textarea, button, select
{
	font-family: sans-serif;
	font-size: 16px;
	padding: 0;
	margin: 0;
}

*
{
	box-sizing: border-box;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
}

body
{
	min-width: 700px;
	color: black;
}
body.withTopToolbar
{
	padding-top: 62px;
}
body.withLeftCol, body.leftColHidden
{
	min-width: 900px;
}
body.withRightCol, body.rightColHidden
{
	min-width: 900px;
}
body.withLeftCol.withRightCol,
body.leftColHidden.withRightCol,
body.withLeftCol.rightColHidden,
body.leftColHidden.rightColHidden
{
	min-width: 1100px;
}

.clear
{
	clear: both !important;
	float: none !important;
	height: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	list-style: none !important;
}

p, ul
{
	margin: 4px 0;
}

a, .a
{
	color: #2D5099;
	text-decoration: none;
	cursor: pointer;
}
a:hover, .a:hover, input.a:not(:disabled):hover, button:not(:disabled).a:hover
{
	color: #2D5099;
	text-decoration: underline;
}

.linkBlankMarked a[target=_blank]::after
{
	content: "\00a0";
	display: inline-block;
	width: 11px;
	height: 11px;
	margin-left: 3px;
	line-height: 11px;
	font-size: 11px;
	vertical-align: text-top;
	background: right top url(/_img/base/targetBlank.svg?color=%232D5099) no-repeat;
	background-size: 100% 100%;
}
.linkBlankMarked.noSvg a[target=_blank]::after
{
	background-image: url(/_img/base/targetBlank.png?color=%232D5099);
}
.linkBlankMarked .noBlank a[target=_blank]::after, a[target=_blank].noBlank::after
{
	display: none;
}

img, iframe
{
	border: none;
}

.anchor, a[name]:not([href])
{
	position: relative;
	top: -8px;
	display: block;
}
body.withTopToolbar .anchor, body a[name]:not([href])
{
	top: -44px;
}

#bodyContainer
{
	max-width: 100%;
	padding: 26px 0px 72px;
	overflow: hidden;
}

.accessNavigation
{
	position: absolute;
	left: -1000000px;
}

body
{
	background-color: white;
}

input[type=text], input[type=email], input[type=password], input[type=number], input[type=search], textarea, select
{
	margin: 0 1px;
	padding: 2px 5px;
	border: 1px solid #2D5099;
	color: #2D5099;
	background-color: white;
	width: 200px;
	min-height: 26px;
	line-height: 1;
	vertical-align: middle;
	overflow: visible;
}

select
{
	padding: 0;
	cursor: pointer;
}
select > option
{
	cursor: pointer;
	padding: 2px 5px;
	min-height: 26px;
}

input[type=text]:disabled, input[type=email]:disabled, input[type=password]:disabled, input[type=number]:disabled, input[type=search]:disabled, textarea:disabled, select:disabled
{
	border-color: #666;
	color: #666;
	background: #F8F8F8;
}
input[type=text][readonly], textarea[readonly]
{
	border-color: transparent;
	background: transparent;
	padding: 2px 0;
	color: black;
	outline: none;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button
{
	position: relative;
	left: 5px;
}
input[type=button], input[type=submit], button, a.button, a.submit
{
	border: 1px solid #2D5099;
	background-color: #3965C1;
	color: white;
	text-decoration: none;
	font-size: 87.5%;
	cursor: pointer;
	padding: 4px 10px;
	margin: 0 1px;
	border-radius: 6px;
	vertical-align: middle;
}
input[type=button].submit, input[type=submit], button.submit, a.submit
{
	border-color: #673A79;
	background-color: #9253AC;
	color: white;
}
input[type=button]:not(:disabled):hover, input[type=submit]:not(:disabled):hover, button:not(:disabled):hover, a.button:hover
{
	border-color: #3965C1;
	background-color: #5D82CF;
	color: white;
}
input[type=button].submit:not(:disabled):hover, input[type=submit]:not(:disabled):hover, button.submit:not(:disabled):hover, a.submit:hover
{
	border-color: #9253AC;
	background-color: #A775BD;
	color: white;
}
input[type=button]:disabled, input[type=submit]:disabled, button:disabled
{
	border-color: #BBB;
	color: #666;
	background-color: #DDD;
	cursor: default;
}
.alert
{
	margin: 7px 4px;
	padding: 7px 12px;
	border: 1px solid black;
	background: white;
	overflow: hidden;
	text-align: left;
}
.alert_info
{
	border-color: #07F;
	background: #CDF;
}
.alert_warning
{
	border-color: #880;
	background: #FF8;
}
.alert_success
{
	border-color: #0A0;
	background: #BEB;
}
.alert_error
{
	border-color: red;
	background: #FBB;
}

button.alert_close, button.alert_close:hover
{
	border: none;
	background: none;
	padding: 0;
	float: right;
	margin: -1px -6px -1px 0;
	font-size: 0;
	line-height: 0;
}

button.alert_close::after
{
	content: "";
	display: block;
	width: 19px;
	height: 19px;
	border-radius: 10px;
	background: #3965C1 url(/_img/base/close.svg?color=white) no-repeat center center;
}
button.alert_close:hover::after
{
	background-color: #5D82CF;
}

.noSvg button.alert_close::after
{
	display: block;
	content: "x";
	text-align: center;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
	background: #3965C1;
	color: white;
}
.noSvg button.alert_close:hover::after
{
	background: #5D82CF;
}

.alert p
{
	margin: 0;
}
.topToolbar
{
	background-color: #BEDDF4;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 36px;
	padding: 2px 16px;
	white-space: nowrap;
	box-shadow: 0 0 5px #2D5099;
	overflow: hidden;
}

.topToolbar_login
{
	float: right;
}
.topToolbar_login > p
{
	display: inline-block;
	line-height: 32px;
	margin: 0 0 0 16px;
}

.topToolbar_login_hiddenButton
{
	padding: 6px;
}
.topToolbar_login_hiddenButton::after
{
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	border: 1px solid #2D5099;
}
.topToolbar_login_hiddenButton:hover::after
{
	background-color: #2D5099;
}
#euFuckingCookies_toolbar
{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 5px;
	background-color: #BEDDF4;
	box-shadow: 0 0 5px #2D5099;
	text-align: center;
	z-index: 1000000;
}
#euFuckingCookies_toolbar p
{
	display: inline-block;
}
#euFuckingCookies_toolbar .euFuckingCookies_toolbar_text
{
	margin-right: 16px;
	min-width: 400px;
	text-align: left;
}
#euFuckingCookies_toolbar .euFuckingCookies_toolbar_buttons a
{
	margin-left: 10px;
}

#euFuckingCookies_pageContent
{
	margin-top: 10px;
}

#content #euFuckingCookies_pageSystemContent h3
{
	font-size: 110%;
	margin-top: 10px;
}

#euFuckingCookies_form
{
	margin: 30px 0 40px;
	text-align: center;
}
#pageHeader
{
	position: relative;
	height: 355px;
	background-color: #51AFF6;
	background-size: 100% 100%;
	overflow: hidden;
}
#pageHeader::before
{
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	left: 12px;
	bottom: 12px;
	z-index: 3;
	width: 120px;
	height: 132px;
	background: url(/_img/cervenejanovice/znak.png) no-repeat;
}
#pageHeader::after
{
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: right bottom url(/_img/cervenejanovice/header.png) no-repeat;
}
#title h1, #title p
{
	position: absolute;
	z-index: 3;
	right: 8px;
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #0C3285;
}
#title h1
{
	bottom: 0;
	font-size: 42px;
}
#title p
{
	bottom: 56px;
	font-size: 17.5px;
}
#pageHeader iframe
{
	position: absolute;
	left: 0;
	top: -100px;
	width: 100%;
	height: calc(100% + 360px);
	z-index: 2;
}
#pageHeader a
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
}
#slideshowInHeader, #slideshowInHeader .slideshow_image
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
#slideshowInHeader .slideshow_image
{
	background-color: white;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	border-width: 0;
}

#headerBar
{
	background: #2D5099;
}
#headerBar::after
{
	content: "";
	display: block;
	clear: both;
}

#email
{
	margin: 0;
	font-size: 68%;
	padding-left: 8px;
	line-height: 30px;
}
#email, #email a, #email a:hover
{
	color: white;
}

#horizontalMenu
{
	float: right;
	margin: 2px 0;
}
#horizontalMenu ul
{
	display: block;
	margin: 0;
	padding: 0;
}
#horizontalMenu ul::after
{
	content: "";
	display: block;
	clear: both;
}
#horizontalMenu ul li
{
	display: block;
	position: relative;
}
#horizontalMenu > ul > li
{
	float: left;
}
#horizontalMenu ul li a, #horizontalMenu ul li span
{
	display: block;
	width: 127px;
	text-align: center;
	padding: 5px 0 4px;
	background: #B4DEFF;
	color: #25334F;
	text-decoration: none;
	font-weight: bold;
	border: 1px solid #2D5099;
	font-size: 85%;
}
#horizontalMenu ul li a:hover
{
	background-color: #80C7FF;
}
.linkBlankMarked #horizontalMenu ul li a[target=_blank]::after
{
	display: none;
}
#horizontalMenu ul li span
{
	cursor: default;
}
#horizontalMenu ul ul
{
	display: none;
}
#page
{
	position: relative;
	width: 700px;
	margin: 0 auto;
}
body.withLeftCol #page, body.leftColHidden #page
{
	width: 900px;
}
body.withRightCol #page, body.rightColHidden #page
{
	width: 900px;
}
body.withLeftCol.withRightCol #page,
body.leftColHidden.withRightCol #page,
body.withLeftCol.rightColHidden #page,
body.leftColHidden.rightColHidden #page
{
	width: 1100px;
}

#page_box
{
	position: relative;
	border: 2px solid #2D5099;
	background: white;
}

#content
{
	width: 696px;
	padding: 16px 18px;
	background: white;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body.leftColHidden #content
{
	width: 896px;
}
body.rightColHidden #content
{
	width: 896px;
}
body.leftColHidden.rightColHidden #content
{
	width: 1096px;
}
#content h2
{
	margin: 0;
	font-size: 140%;
}
#content h2, #content h2 a
{
	color: #2D5099;
}
#content h3
{
	margin: 7px 0 0;
	font-size: 130%;
}
#content h3, #content h3 a
{
	color: #2D5099;
}
#content h4
{
	margin: 7px 0 0;
	font-size: 120%;
}
#content h4, #content h4 a
{
	color: #2D5099;
}
#content h5
{
	margin: 6px 0 0;
	font-size: 110%;
}
#content h5, #content h5 a
{
	color: #2D5099;
}
#content h6
{
	margin: 6px 0 0;
	font-size: 105%;
}
#content h6, #content h6 a
{
	color: #2D5099;
}

#content h3:first-child, #content h4:first-child, #content h5:first-child, #content h6:first-child
{
	margin-top: 0;
}

#content hr
{
	border-top: 2px solid #2D5099;
	border-bottom: none;
	margin: 16px 7px;
}
nav.path > ul
{
	margin: 0;
	padding: 0;
}
nav.path > p, nav.path > ul, nav.path > ul > li
{
	display: inline;
	margin: 0;
}
nav.path > p::after
{
	content: ':';
}
nav.path > ul > li:not(:first-child)::before
{
	content: ' >> ';
}
.userPageTitleAndPath
{
	float: left;
}

.userPage_info
{
	float: right;
	font-size: 80%;
	text-align: right;
}
.userPage_info p
{
	display: inline;
	margin: 0;
}
.userPage_info p + p::before
{
	content: ", ";
}
.userPage_info .userPage_views
{
	display: block;
}
.userPage_info .userPage_views::before
{
	content: "";
}

.userPage_actions
{
	float: right;
	clear: right;
}

.userPage_authors
{
	margin: 0;
	padding: 0;
}
.userPage_authors li
{
	display: inline;
	font-weight: bold;
	font-size: 90%;
}
.userPage_authors li + li::before
{
	content: ", ";
}

.userPage_links
{
	border: 1px dotted black;
	padding: 12px 32px 12px 48px;
	margin: 7px 0;
}
.userPage_links li
{
	list-style: disc outside;
	padding: 3px 24px 3px 0;
	width: 50%;
	float: left;
}
.userPage_links li:nth-child(odd)
{
	clear: left;
}

.userPage_image_left, .userPage_image_right
{
	margin: 5px 0;
	max-width: 320px;
	max-height: 240px;
}
.userPage_image_left
{
	float: left;
	margin-right: 5px;
}
.userPage_image_right
{
	float: right;
	margin-left: 5px;
}

.userPage_perex
{
	margin: 12px 0;
	font-weight: bold;
}
.userPage_content
{
	margin: 10px 0 16px;
}
.userPage_perex p, .userPage_content p, .userPage_child_perex p
{
	margin: 4px 0;
}
.userPage_content h3, .userPage_content h4, .userPage_content h5, .userPage_content h6
{
	text-indent: 7px;
}

.userPage_attachments
{
	margin: 0 0 16px;
	padding: 0;
	list-style-type: none;
}

.userPage_colContent, .userPage_colOther
{
	width: 50%;
}
.userPage_contentLeft .userPage_colContent, .userPage_contentRight .userPage_colOther
{
	float: left;
	clear: left;
}
.userPage_contentLeft .userPage_colOther, .userPage_contentRight .userPage_colContent
{
	float: right;
	clear: right;
}
.userPage_contentLeft .userPage_colContent
{
	padding-right: 16px;
}
.userPage_contentRight .userPage_colContent
{
	padding-left: 16px;
}
.userPage_colContent .userPage_content
{
	margin-top: 0;
}
.userPage_colOther .userPageTitleAndPath, .userPage_colOther .userPage_info
{
	float: none;
	text-align: left;
}
.userPage_colOther .userPage_links li
{
	width: auto;
	float: none;
}

.userPage_children > .pagination
{
	float: left;
	margin: 10px 4px;
}
.userPage_children > .pagination a, .userPage_children > .pagination b
{
	display: inline-block;
	margin: -2px;
	padding: 2px 6px;
}

.userPage_children > .userPage_children_archiveLink
{
	float: left;
	margin: 10px 4px;
}
.userPage_children > .pagination + .userPage_children_archiveLink
{
	margin-left: 16px;
}

.userPage_archiveLinkOnly
{
	margin-top: 16px;
}

.userPage_children > .iconHorizontalMenu
{
	float: right;
}

.userPage_children_classic .userPage_child
{
	margin: 6px 0;
	border: 1px dotted black;
	padding: 8px 12px;
}
.userPage_children_classic .userPage_child_inactive,
.userPage_children_titlesOnly .userPage_child_inactive
{
	opacity: 0.5;
}

#content .userPage_children_classic .userPage_child > h3
{
	margin-top: 2px;
}

.userPage_child_image_left, .userPage_child_image_right
{
	display: block;
	margin: 5px 0;
}
.userPage_child_image_left
{
	float: left;
	margin-right: 10px;
}
.userPage_child_image_right
{
	float: right;
	margin-left: 10px;
}
.userPage_child_image_left img, .userPage_child_image_right img
{
	max-width: 160px;
	max-height: 120px;
}

.userPage_children_titlePathAndDate .userPage_child_dateFrom
{
	float: right;
	margin-left: 8px;
}

.userPage_children_classic .userPage_child_info,
.userPage_children_officialDesk .userPage_child_info
{
	font-size: 80%;
}
.userPage_children_classic .userPage_child_info
{
	margin-bottom: 7px;
}
.userPage_children_classic .userPage_child_info p,
.userPage_children_officialDesk .userPage_child_info p
{
	display: inline;
}
.userPage_children_classic .userPage_child_info p + p::before,
.userPage_children_officialDesk .userPage_child_info p + p::before
{
	content: ", ";
}
.userPage_children_classic .userPage_child_author,
.userPage_children_officialDesk .userPage_child_author
{
	font-weight: bold;
}

.userPage_children_classic .path,
.userPage_children_officialDesk .path
{
	margin: 2px 0 3px;
	font-size: 90%;
}

.userPage_children_titlesOnly
{
	margin: 20px 0;
}
.userPage_children_titlesOnly h3
{
	margin: 7px 0;
}

.userPage_children_titlePathAndDate .userPage_child
{
	border-top: 1px solid #2D5099;
	border-bottom: 1px solid #2D5099;
	margin-bottom: -1px;
	padding: 6px 4px;
}
#content .userPage_children_titlePathAndDate h3
{
	margin-top: 0;
}
.userPage_children_titlePathAndDate .path
{
	margin-top: 3px;
}

.userPage_children_officialDesk > table
{
	width: 100%;
	border-collapse: collapse;
}
#content .userPage_children_officialDesk > table h3
{
	font-size: 110%;
}
.userPage_children_officialDesk > table > thead th,
.userPage_children_officialDesk > table > tbody > tr > td
{
	padding: 6px 8px;
	text-align: center;
}
.userPage_children_officialDesk > table > thead th:first-child,
.userPage_children_officialDesk > table > tbody > tr > td:first-child
{
	text-align: left;
}
.userPage_children_officialDesk > table > tbody > tr
{
	background: white;
}
.userPage_children_officialDesk > table > tbody > tr:nth-child(odd)
{
	background: #EEE;
}
.userPage_children_officialDesk > table > tbody > tr.userPage_child_inactive > td
{
	opacity: 0.4;
}

.userPage_child .iconHorizontalMenu
{
	margin: 0;
}
.userPage_children_classic .userPage_child .iconHorizontalMenu
{
	margin-top: -5px;
}
.userPage_children_titlesOnly .userPage_child .iconHorizontalMenu
{
	margin-top: -5px;
	margin-bottom: 6px;
}

.userPage_children_grid .userPage_children_container
{
	margin: 0 2px;
}
.userPage_children_grid .userPage_child
{
	float: left;
	width: 168px;
	margin: 4px 6px;
}
.userPage_children_grid .userPage_child .iconHorizontalMenu
{
	margin-top: 6px;
	text-align: center;
}
.userPage_children_grid::after, .userPage_children_grid .userPage_child_delimiter:nth-child(8n)
{
	content: "";
	display: block;
	clear: left;
}
.userPage_children_grid .iconHorizontalMenu
{
	clear: both;
}
.userPage_child_grid
{
	display: block;
	border: 4px solid #BEDDF4;
	background: #BEDDF4;
}
.userPage_child_grid:hover
{
	border-color: #F4F8FB;
	background-color: #F4F8FB;
	text-decoration: none;
}
.userPage_child_gridImage
{
	width: 160px;
	height: 120px;
	line-height: 120px;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	position: relative;
}
.userPage_child_gridImage::before
{
	content: "?";
	display: block;
	width: 100%;
	font-size: 200%;
	text-align: center;
	position: absolute;
}
.userPage_child_grid img
{
	min-width: 30px;
	min-height: 30px;
	max-width: 160px;
	max-height: 120px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
#content .userPage_child_grid h3
{
	font-weight: normal;
	font-size: 100%;
	text-align: center;
	margin: 8px 4px 4px;
}

#content .userPage_colOther .userPage_children h3
{
	font-size: 100%;
}
#content .userPage_colOther .userPage_children .path
{
	font-size: 85%;
}
.userPage_colOther .userPage_child_dateFrom
{
	font-size: 90%;
}

.archive_noChildren
{
	margin-top: 16px;
	font-style: italic;
}

.gallery_miniature
{
	width: 100px;
	height: 75px;
	line-height: 75px;
	text-align: center;
	vertical-align: middle;
	background: #BEDDF4;
}
.gallery_miniature img
{
	max-width: 100px;
	max-height: 75px;
	vertical-align: middle;
	position: relative;
	top: -1px;
}

.userPage_gallery
{
	margin: 1px 1px 32px;
	text-align: center;
}
.userPage_gallery .gallery_miniature
{
	width: 168px;
	height: 128px;
	line-height: 120px;
	display: inline-block;
	margin: 4px;
	border: 4px solid #BEDDF4;
	cursor: pointer;
}
.userPage_gallery .gallery_miniature:hover
{
	border-color: #F4F8FB;
	background-color: #F4F8FB;
}
.userPage_gallery .gallery_miniature img
{
	max-width: 160px;
	max-height: 120px;
}

.gallery
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000000;
	text-align: center;
}

.gallery_image
{
	position: relative;
	display: inline-block;
	min-width: 180px;
	min-height: 60px;
}
.gallery_image img
{
	max-width: 100%;
	vertical-align: middle;
	position: relative;
	top: -1px;
}
.gallery_number
{
	text-align: center;
	font-size: 200%;
	color: white;
	padding-top: 16px;
}

.gallery_description
{
	padding: 10px 30px;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: black;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	line-height: 1.5;
}

button.gallery_previous, button.gallery_previous:hover, button.gallery_next, button.gallery_next:hover
{
	position: absolute;
	z-index: 2;
	background: transparent;
	background-repeat: no-repeat;
	top: 0;
	width: 50%;
	height: 100%;
	margin: 0;
	padding: 0;
	border-width: 0;
	font-size: 0;
}
button.gallery_previous, button.gallery_previous:hover
{
	left: 0;
	background-image: url(/_img/base/gallery/previous.svg);
	background-position: left center;
	opacity: 0;
}
button.gallery_previous:hover
{
	opacity: 1;
}
button.gallery_next, button.gallery_next:hover
{
	right: 0;
	background-image: url(/_img/base/gallery/next.svg);
	background-position: right center;
	opacity: 0;
}
button.gallery_next:hover
{
	opacity: 1;
}
button.gallery_previous:active, button.gallery_next:active
{
	outline: none;
}

.gallery_header
{
	text-align: right;
	padding: 16px 50px;
}
button.gallery_close, button.gallery_close:hover
{
	border-width: 0;
	background: transparent url(/_img/base/gallery/close.svg) 16px center no-repeat;
	color: white;
	font-size: 200%;
	margin: -16px -50px -16px -16px;
	padding: 16px 50px 16px 60px;
	height: 68px;
	line-height: 36px;
	position: relative;
	z-index: 2;
}
.userForm
{
	margin: 16px 0;
}

.userForm_row
{
	margin: 8px 4px;
}

.userForm_row input[type=text], .userForm_row input[type=email], .userForm_row textarea, .userForm_row input[type=file]
{
	display: block;
}
.userForm_row input[type=text], .userForm_row input[type=email]
{
	min-width: 360px;
}
.userForm_row textarea
{
	width: 100%;
}

.userForm_row label
{
	display: inline-block;
	padding: 0 3px 2px;
}
.userForm_row label:first-child::after
{
	content: ":";
}

.userForm_row .userForm_error
{
	display: inline-block;
	padding: 0 3px 2px 16px;
	font-size: 75%;
	color: red;
}

.userForm_captcha
{
	margin: 24px 6px;
}

.userForm_buttonsRow
{
	margin: 12px 4px 8px;
}
.emailForm_content
{
	margin: 10px 0 16px;
}
.emailForm_perex p, .emailForm_content p, .emailForm_child_perex p
{
	margin: 4px 0;
}
.calendarAction_term
{
	font-size: 130%;
	margin: 8px 0 16px;
}
.calendar_action_more
{
	margin-top: 12px;
}

.calendar_action_container
{
	padding: 8px;
}
.calendar_action_container_inner
{
	padding: 10px 14px;
}
.calendar_action_container_color .calendar_action_container_inner
{
	background: white;
	background: rgba(255, 255, 255, 0.9);
}

#calendar_filter
{
	margin: 24px 0;
}
#calendar_filter label::after
{
	content: ":";
}
#calendar_filter label:not(:first-child)
{
	margin-left: 16px;
}
#calendar_filter_year
{
	width: 70px;
}
#calendar_filter select
{
	width: auto;
}
#calendar_filter_category
{
	min-width: 160px;
}

.calendar_actionItem
{
	margin: 8px 2px;
	border: 1px dotted black;
	padding: 4px;
}
.calendar_actionItem_color
{
	margin: 6px 0;
	border: none;
	padding: 6px;
}
.calendar_actionItem_inner
{
	background: white;
	background: rgba(255, 255, 255, 0.9);
	padding: 8px 12px;
}
.calendar_actionItem_category
{
	font-size: 95%;
}
.calendar_actionItem_category span:first-child::after
{
	display: inline;
	content: ":";
}
.calendar_actionItem_term
{
	font-size: 115%;
}
.calendar_actionItem_description
{
	margin: 8px 0;
}

.calendar_action_description p, .calendar_actionItem_description p
{
	margin: 4px 0;
}
.calendar_action_description h3, .calendar_action_description h4, .calendar_action_description h5, .calendar_action_description h6
{
	text-indent: 7px;
}

.captcha label::after
{
	content: ":";
}
.captcha input[type=text]
{
	width: 140px;
}

.captcha_error
{
	font-size: 85%;
	color: red;
}

#searchPage_form
{
	padding: 24px 0;
}
#searchPage_form input[type=search]
{
	width: 300px;
}
#searchPage_noResults
{
	font-style: italic;
}
#loginPage_form
{
	margin-top: 10px;
}
#loginPage_form label::after
{
	content: ":";
}
#loginPage_form td
{
	padding: 5px;
}
#loginPage_form td:first-child
{
	text-align: right;
}

#loginPage_logOutForm > p
{
	text-align: center;
}
#cols
{
	clear: both;
	display: flex;
	flex-direction: row;
	align-content: stretch;
	width: 100%;
	min-height: 360px;
}
#leftCol
{
	width: 200px;
	background: white;
	order: -1;
}
#rightCol
{
	width: 200px;
	background: white;
}
#leftCol, #rightCol
{
	padding-top: 48px;
	padding-bottom: 32px;
	vertical-align: top;
}
.module h2
{
	padding: 6px 12px;
	margin: 0;
	font-size: 80%;
	font-weight: bold;
	background: #2D5099;
	color: white;
}
.module h2 + .module_content
{
	border: 2px solid #2D5099;
	border-top: none;
}
#leftCol .module h2 + .module_content
{
	border-left: none;
}
#rightCol .module h2 + .module_content
{
	border-right: none;
}

.module
{
	margin-bottom: 12px;
}
.module_menu ul
{
	margin: 0;
	padding: 0;
	background-color: #2D5099;
}
.module_menu li
{
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
.module_menu li a, .module_menu li span
{
	display: block;
	color: white;
	text-decoration: none;
	font-size: 85%;
	padding: 7px 12px 5px 24px;
	border-bottom: 1px solid white;
	font-weight: bold;
	overflow: hidden;
	position: relative;
}
.module_menu li a::before, .module_menu li span::before
{
	content: "";
	display: block;
	background: #5D82CF;
	width: 18px;
	height: 18px;
	position: absolute;
	top: 5px;
	left: -9px;
	transform-origin: center center;
	transform: rotate(45deg);
}
.module_menu li a:hover
{
	background-color: #5D82CF;
	color: white;
}
.linkBlankMarked .module_menu li a[target=_blank]::after
{
	display: none;
}
.module_menu ul li span
{
	cursor: default;
}

.module_menu.menuMode_hover ul ul
{
	display: none;
}

.module_menu.menuMode_click ul ul,
.module_menu.menuMode_expanded ul ul
{
	background-color: transparent;
}
.module_menu.menuMode_click ul ul li a, .module_menu.menuMode_click ul ul li span,
.module_menu.menuMode_expanded ul ul li a, .module_menu.menuMode_expanded ul ul li span
{
	padding-left: 36px;
	font-size: 75%;
	font-weight: normal;
}
.module_menu.menuMode_click ul ul li a::before, .module_menu.menuMode_click ul ul li span::before,
.module_menu.menuMode_expanded ul ul li a::before, .module_menu.menuMode_expanded ul ul li span::before
{
	display: none;
}
.module_menu.menuMode_click ul ul ul li a, .module_menu.menuMode_click ul ul ul li span,
.module_menu.menuMode_expanded ul ul ul li a, .module_menu.menuMode_expanded ul ul ul li span
{
	padding-left: 48px;
}
.module_menu.menuMode_click ul ul ul ul li a, .module_menu.menuMode_click ul ul ul ul li span,
.module_menu.menuMode_expanded ul ul ul ul li a, .module_menu.menuMode_expanded ul ul ul ul li span
{
	padding-left: 60px;
}
.module_menu.menuMode_click ul ul ul ul ul li a, .module_menu.menuMode_click ul ul ul ul ul li span,
.module_menu.menuMode_expanded ul ul ul ul ul li a, .module_menu.menuMode_expanded ul ul ul ul ul li span
{
	padding-left: 72px;
}
.module_menu.menuMode_click ul ul ul ul ul ul li a, .module_menu.menuMode_click ul ul ul ul ul ul li span,
.module_menu.menuMode_expanded ul ul ul ul ul ul li a, .module_menu.menuMode_expanded ul ul ul ul ul ul li span
{
	padding-left: 84px;
}

.module_menu.menuMode_none ul ul
{
	display: none;
}

.module_menu.adminMenu ul
{
	background-color: #673A79;
}
.module_menu.adminMenu li a, .module_menu.adminMenu li span
{
	color: white;
}
.module_menu.adminMenu li a::before, .module_menu.adminMenu li span::before
{
	background-color: #A775BD;
}
.module_menu.adminMenu li a:hover
{
	background-color: #A775BD;
	color: white;
}

.menuItem_bold > a, .menuItem_bold > span
{
	font-weight: bold;
}

.module_menu li.menuItem_opened > a, .module_menu li.menuItem_opened > span
{
	font-weight: bold;
	color: #FF4;
}
.module_menu li.menuItem_opened > a:hover
{
	color: #FF4;
}

.module_usedSpace p {
    text-align: center;
    font-size: 150%;
    margin: 0;
    padding: 4px;
}

.module_calendar
{
	margin: 4px 7px;
}
.module_calendar > p
{
	padding-left: 32px;
}
.module_calendar > p a
{
	display: inline-block;
	min-width: 95px;
	text-align: center;
}
.module_calendar input[type=button]
{
	border-radius: 0;
	width: 33px;
	padding: 2px 0;
	margin: 0;
	position: relative;
	top: -2px;
}
.module_calendar table
{
	border-collapse: collapse;
	width: 100%;
}
.module_calendar td, .module_calendar th
{
	position: relative;
	border: 1px solid #2D5099;
	width: 32px;
	padding: 0;
	text-align: center;
}
.module_calendar th
{
	padding: 2px 0;
}
.module_calendar td a, .module_calendar td span
{
	display: block;
	padding: 3px 0;
}
.module_calendar td a
{
	background: #3965C1;
	color: white;
}
.module_calendar td a:hover
{
	background: #5D82CF;
	color: white;
}
.module_calendar td span:not(.module_calendar_empty)
{
	background: white;
}
.module_calendar_empty, .module_calendar th
{
	background: #F4F8FB;
}

.module_search
{
	padding: 0 10px;
	text-align: right;
}
.module_search label
{
	display: none;
}
.module_search input[type=search]
{
	width: 100%;
	margin-bottom: 4px;
}
.newestUserPages
{
	padding: 0 7px;
}

.newestUserPage
{
	border-top: 1px solid #2D5099;
	padding: 5px 3px;
}
.newestUserPage:first-child
{
	border-top: none;
}

.newestUserPage h3
{
	font-size: 80%;
	margin: 0;
}

.newestUserPage_path
{
	margin: 0;
	padding: 0;
}
.newestUserPage_path li
{
	display: inline;
	font-size: 70%;
}
.newestUserPage_path li:not(:first-child)::before
{
	content: ' >> ';
}

.newestUserPage_perex
{
	font-size: 70%;
}
.newestUserPage_perex::after
{
	content: "...";
	display: inline;
}

.newestUserPage_date
{
	float: right;
	font-size: 70%;
	margin: 2px 0 0 7px;
	white-space: nowrap;
}
.module_slideshow
{
	position: relative;
	right: 1px;
	height: 134px;
	border: 1px solid #2D5099;
}
.module_slideshow .slideshow_image
{
	position: absolute;
	width: 100%;
	height: 132px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.module_own
{
	padding: 0;
}
.linkBlankMarked .module_own a[target=_blank]::after
{
	display: none;
}

.module_address
{
	margin-bottom: 24px;
}
.module_address p
{
	font-weight: bold;
	color: #25334f;
	font-size: 90%;
	margin: 3px 12px;
}
.slideshow_description
{
	font-size: 75%;
	text-align: right;
	margin: 0 6px;
	position: relative;
	top: -6px;
}


#footerModules
{
	margin: 0 -10px;
}

#page > footer
{
	margin-top: 16px;
	border-top: 1px solid black;
	padding: 5px;
	clear: both;
}

.footerContent
{
	float: left;
	max-width: 50%;
}

.lastUpdate, .poweredBy, .footerLinks
{
	float: right;
	clear: right;
	display: block;
	font-size: 90%;
	margin: 0 0 3px;
	padding: 0;
}
.footerLinks ul
{
	display: inline;
	padding: 0;
}
.footerLinks li, .footerLinks .footer_loggedUser
{
	display: inline;
}
.footerLinks li::before
{
	content: " | ";
}
.footerLinks li:first-child::before
{
	content: "";
}
.footerLinks .footer_loggedUser + ul li:first-child::before
{
	content: " | ";
}
.langFlag_cs-CZ
{
	background-image: url(/_img/_langs/cs-CZ.svg);
}
.noSvg .langFlag_cs-CZ
{
	background-image: url(/_img/_langs/cs-CZ.png);
	background-size: 24px 36px;
}
.langFlag_de-DE
{
	background-image: url(/_img/_langs/de-DE.svg);
}
.noSvg .langFlag_de-DE
{
	background-image: url(/_img/_langs/de-DE.png);
	background-size: 24px 36px;
}
.langFlag_en-GB
{
	background-image: url(/_img/_langs/en-GB.svg);
}
.noSvg .langFlag_en-GB
{
	background-image: url(/_img/_langs/en-GB.png);
	background-size: 24px 36px;
}
.langFlag_en-US
{
	background-image: url(/_img/_langs/en-US.svg);
}
.noSvg .langFlag_en-US
{
	background-image: url(/_img/_langs/en-US.png);
	background-size: 24px 36px;
}
.langFlag_en
{
	background-image: url(/_img/_langs/en.svg);
}
.noSvg .langFlag_en
{
	background-image: url(/_img/_langs/en.png);
	background-size: 24px 36px;
}
.langFlag_es-ES
{
	background-image: url(/_img/_langs/es-ES.svg);
}
.noSvg .langFlag_es-ES
{
	background-image: url(/_img/_langs/es-ES.png);
	background-size: 24px 36px;
}
.langFlag_fr-FR
{
	background-image: url(/_img/_langs/fr-FR.svg);
}
.noSvg .langFlag_fr-FR
{
	background-image: url(/_img/_langs/fr-FR.png);
	background-size: 24px 36px;
}
.langFlag_it-IT
{
	background-image: url(/_img/_langs/it-IT.svg);
}
.noSvg .langFlag_it-IT
{
	background-image: url(/_img/_langs/it-IT.png);
	background-size: 24px 36px;
}
.langFlag_pl-PL
{
	background-image: url(/_img/_langs/pl-PL.svg);
}
.noSvg .langFlag_pl-PL
{
	background-image: url(/_img/_langs/pl-PL.png);
	background-size: 24px 36px;
}
.langFlag_ru-RU
{
	background-image: url(/_img/_langs/ru-RU.svg);
}
.noSvg .langFlag_ru-RU
{
	background-image: url(/_img/_langs/ru-RU.png);
	background-size: 24px 36px;
}
.langFlag_sk-SK
{
	background-image: url(/_img/_langs/sk-SK.svg);
}
.noSvg .langFlag_sk-SK
{
	background-image: url(/_img/_langs/sk-SK.png);
	background-size: 24px 36px;
}
.langFlag_unkown
{
	background-image: url(/_img/_langs/unkown.svg);
}
.noSvg .langFlag_unkown
{
	background-image: url(/_img/_langs/unkown.png);
	background-size: 24px 36px;
}

span.langFlag_image
{
	display: inline-block;
	width: 36px;
	height: 24px;
	margin: 1px;
	font-size: 0;
	line-height: 24px;
	vertical-align: top;
}
#langSelector
{
	display: block;
	float: left;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}
#langSelector li
{
	display: inline-block;
	margin-right: 20px;
}
.langSelector_option
{
	display: inline-block;
	padding-left: 40px;
	line-height: 32px;
	background-repeat: no-repeat;
	background-position: left center;
}

#langSelector_short
{
	display: none;
	float: left;
	margin-top: 2px;
	padding: 3px 5px;
	width: auto;
	min-width: 120px;
}
.iconHorizontalMenu
{
	margin: 4px 0;
	padding: 0;
}

.iconInlineMenu
{
	display: inline-block;
	vertical-align: middle;
}

.iconHorizontalMenu li
{
	display: inline-block;
}

.iconItem, input[type=button].iconItem, input[type=button].iconItem:hover, button.iconItem, button.iconItem:hover
{
	display: inline-block;
	position: relative;
	padding: 3px 3px 3px 32px;
	min-height: 30px;
	line-height: 24px;
	font-size: 100%;
	background-color: transparent;
	background-position: 3px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: 0;
	border-radius: 0;
	margin: 0 -3px;
	vertical-align: middle;
}
.iconItem.iconItem_onlyTooltip, input[type=button].iconItem.iconItem_onlyTooltip, button.iconItem.iconItem_onlyTooltip, button.iconItem.iconItem_onlyTooltip:not(:disabled)
{
	padding-left: 0;
	width: 30px;
	text-decoration: none;
	font-size: 0;
}

.iconHorizontalMenu .iconItem, .iconInlineMenu .iconItem,
.iconHorizontalMenu input[type=button].iconItem, .iconInlineMenu input[type=button].iconItem,
.iconHorizontalMenu input[type=button].iconItem:hover, .iconInlineMenu input[type=button].iconItem:hover,
.iconHorizontalMenu button.iconItem, .iconInlineMenu button.iconItem,
.iconHorizontalMenu button.iconItem:hover, .iconInlineMenu button.iconItem:hover
{
	margin-right: 7px;
}
.iconHorizontalMenu .iconItem.iconItem_onlyTooltip, .iconInlineMenu .iconItem.iconItem_onlyTooltip,
.iconHorizontalMenu input[type=button].iconItem.iconItem_onlyTooltip, .iconInlineMenu input[type=button].iconItem.iconItem_onlyTooltip,
.iconHorizontalMenu input[type=button].iconItem.iconItem_onlyTooltip:hover, .iconInlineMenu input[type=button].iconItem.iconItem_onlyTooltip:hover,
.iconHorizontalMenu button.iconItem.iconItem_onlyTooltip, .iconInlineMenu button.iconItem.iconItem_onlyTooltip,
.iconHorizontalMenu button.iconItem.iconItem_onlyTooltip:hover, .iconInlineMenu button.iconItem.iconItem_onlyTooltip:hover
{
	margin-right: 3px;
	text-decoration: none;
}

.iconItem.active, .iconItem.active:hover
{
	background-color: #BEDDF4;
}

.iconItem.icon_print
{
	background-image: url(/_img/base/icons/print.svg);
}
.noSvg .iconItem.icon_print
{
	background-image: url(/_img/base/icons/print.png);
}

.iconItem.icon_rss
{
	background-image: url(/_img/base/icons/rss.svg);
}
.noSvg .iconItem.icon_rss
{
	background-image: url(/_img/base/icons/rss.png);
}

.iconItem.icon_sortByText_asc
{
	background-image: url(/_img/base/icons/sortByText_asc.svg);
}
.noSvg .iconItem.icon_sortByText_asc
{
	background-image: url(/_img/base/icons/sortByText_asc.png);
}

.iconItem.icon_sortByText_desc
{
	background-image: url(/_img/base/icons/sortByText_desc.svg);
}
.noSvg .iconItem.icon_sortByText_desc
{
	background-image: url(/_img/base/icons/sortByText_desc.png);
}

.iconItem.icon_sortByNumber_asc
{
	background-image: url(/_img/base/icons/sortByNumber_asc.svg);
}
.noSvg .iconItem.icon_sortByNumber_asc
{
	background-image: url(/_img/base/icons/sortByNumber_asc.png);
}

.iconItem.icon_sortByNumber_desc
{
	background-image: url(/_img/base/icons/sortByNumber_desc.svg);
}
.noSvg .iconItem.icon_sortByNumber_desc
{
	background-image: url(/_img/base/icons/sortByNumber_desc.png);
}

.iconItem.icon_sortByHash_asc
{
	background-image: url(/_img/base/icons/sortByHash_asc.svg);
}
.noSvg .iconItem.icon_sortByHash_asc
{
	background-image: url(/_img/base/icons/sortByHash_asc.png);
}

.iconItem.icon_sortByHash_desc
{
	background-image: url(/_img/base/icons/sortByHash_desc.svg);
}
.noSvg .iconItem.icon_sortByHash_desc
{
	background-image: url(/_img/base/icons/sortByHash_desc.png);
}

.iconItem.icon_link
{
	background-image: url(/_img/base/icons/link.svg);
}
.noSvg .iconItem.icon_link
{
	background-image: url(/_img/base/icons/link.png);
}

.iconItem.icon_mail
{
	background-image: url(/_img/base/icons/mail.svg);
}
.noSvg .iconItem.icon_mail
{
	background-image: url(/_img/base/icons/mail.png);
}

.iconItem.icon_files_folder
{
	background-image: url(/_img/base/icons/files/small/folder.svg);
}
.noSvg .iconItem.icon_files_folder
{
	background-image: url(/_img/base/icons/files/small/folder.png);
}

.iconItem.icon_files_file
{
	background-image: url(/_img/base/icons/files/small/file.svg);
}
.noSvg .iconItem.icon_files_file
{
	background-image: url(/_img/base/icons/files/small/file.png);
}

.iconItem.icon_files_files
{
	background-image: url(/_img/base/icons/files/small/files.svg);
}
.noSvg .iconItem.icon_files_files
{
	background-image: url(/_img/base/icons/files/small/files.png);
}

.iconItem.icon_files_image
{
	background-image: url(/_img/base/icons/files/small/image.svg);
}
.noSvg .iconItem.icon_files_image
{
	background-image: url(/_img/base/icons/files/small/image.png);
}

.iconItem.icon_files_text
{
	background-image: url(/_img/base/icons/files/small/text.svg);
}
.noSvg .iconItem.icon_files_text
{
	background-image: url(/_img/base/icons/files/small/text.png);
}

.iconItem.icon_files_document
{
	background-image: url(/_img/base/icons/files/small/document.svg);
}
.noSvg .iconItem.icon_files_document
{
	background-image: url(/_img/base/icons/files/small/document.png);
}

.iconItem.icon_files_word
{
	background-image: url(/_img/base/icons/files/small/word.svg);
}
.noSvg .iconItem.icon_files_word
{
	background-image: url(/_img/base/icons/files/small/word.png);
}

.iconItem.icon_files_excel
{
	background-image: url(/_img/base/icons/files/small/excel.svg);
}
.noSvg .iconItem.icon_files_excel
{
	background-image: url(/_img/base/icons/files/small/excel.png);
}

.iconItem.icon_files_powerpoint
{
	background-image: url(/_img/base/icons/files/small/powerpoint.svg);
}
.noSvg .iconItem.icon_files_powerpoint
{
	background-image: url(/_img/base/icons/files/small/powerpoint.png);
}


.iconItem.icon_files_pdf
{
	background-image: url(/_img/base/icons/files/small/pdf.svg);
}
.noSvg .iconItem.icon_files_pdf
{
	background-image: url(/_img/base/icons/files/small/pdf.png);
}

.modalWindow_shadow
{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0.5;
	z-index: 100000;
}

.modalWindow
{
	position: absolute;
	margin: 0 auto;
	background: white;
	border: 1px solid #2D5099;
	z-index: 100000;
}

.modalWindow_content
{
	padding: 5px 10px;
}

.modalWindow_text
{
	margin: 20px;
	min-width: 260px;
}
.modalWindow_text_center
{
	margin: 20px;
	text-align: center;
}
.modalWindow_buttons
{
	margin: 5px;
	text-align: center;
}

.modalWindow header
{
	background-color: #BEDDF4;
	padding: 8px 12px;
	position: relative;
}

.modalWindow header h3
{
	margin: 0;
	padding-right: 26px;
}

.modalWindow header button, .modalWindow header button:hover
{
	position: absolute;
	top: 7px;
	right: 7px;
	border: none;
	background: none;
	padding: 0;
	font-size: 0;
	line-height: 0;
}

.modalWindow header button::after
{
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	border-radius: 10px;
	background: #3965C1 url("/_img/base/close.svg?color=white") no-repeat center center;
}
.modalWindow header button:hover::after
{
	background-color: #5D82CF;
}

.noSvg .modalWindow header button::after
{
	display: block;
	content: "x";
	text-align: center;
	width: 20px;
	height: 20px;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
	background: #3965C1;
	color: white;
}
.noSvg .modalWindow header button:hover::after
{
	background: #5D82CF;
}

