
/**
 * @file
 * Generic theme-independent base styles.
 */

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}
#autocomplete ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
#autocomplete li {
  background: #fff;
  color: #000;
  cursor: default;
  white-space: pre;
  zoom: 1; /* IE7 */
}
/* Animated throbber */
html.js input.form-autocomplete {
  background-image: url(../../misc/throbber-inactive.png);
  background-position: 100% center; /* LTR */
  background-repeat: no-repeat;
}
html.js input.throbbing {
  background-image: url(../../misc/throbber-active.gif);
  background-position: 100% center; /* LTR */
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  height: 1em;
}
html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}
fieldset.collapsible {
  position: relative;
}
fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
  display: block;
  margin: 0;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.resizable-textarea .grippie {
  background: #eee url(../../misc/grippie.png) no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
  height: 9px;
  overflow: hidden;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
  cursor: move;
}
.draggable a.tabledrag-handle {
  cursor: move;
  float: left; /* LTR */
  height: 1.7em;
  margin-left: -1em; /* LTR */
  overflow: hidden;
  text-decoration: none;
}
a.tabledrag-handle:hover {
  text-decoration: none;
}
a.tabledrag-handle .handle {
  background: url(../../misc/draggable.png) no-repeat 6px 9px;
  height: 13px;
  margin: -0.4em 0.5em; /* LTR */
  padding: 0.42em 0.5em; /* LTR */
  width: 13px;
}
a.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}
div.indentation {
  float: left; /* LTR */
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
  padding: 0.42em 0 0.42em 0.6em; /* LTR */
  width: 20px;
}
div.tree-child {
  background: url(../../misc/tree.png) no-repeat 11px center; /* LTR */
}
div.tree-child-last {
  background: url(../../misc/tree-bottom.png) no-repeat 11px center; /* LTR */
}
div.tree-child-horizontal {
  background: url(../../misc/tree.png) no-repeat -11px center;
}
.tabledrag-toggle-weight-wrapper {
  text-align: right; /* LTR */
}

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
table.sticky-header {
  background-color: #fff;
  margin-top: 0;
}

/**
 * Progress behavior.
 *
 * @see progress.js
 */
/* Bar */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}
.progress .filled {
  background-color: #000;
  height: 1.5em;
  width: 5px;
}
.progress .percentage {
  float: right; /* LTR */
}
/* Throbber */
.ajax-progress {
  display: inline-block;
}
.ajax-progress .throbber {
  background: transparent url(../../misc/throbber-active.gif) no-repeat 0px center;
  float: left; /* LTR */
  height: 15px;
  margin: 2px;
  width: 15px;
}
.ajax-progress .message {
  padding-left: 20px;
}
tr .ajax-progress .throbber {
  margin: 0 2px;
}
.ajax-progress-bar {
  width: 16em;
}

/**
 * Inline items.
 */
.container-inline div,
.container-inline label {
  display: inline;
}
/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
  display: block;
}

/**
 * Prevent text wrapping.
 */
.nowrap {
  white-space: nowrap;
}

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
html.js .js-hide {
  display: none;
}

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
/* IE6 */
* html .clearfix {
  height: 1%;
}
/* IE7 */
*:first-child + html .clearfix {
  min-height: 1%;
}



/**
 * @file
 * Styles for menus and navigation markup.
 */

/**
 * Markup generated by theme_menu_tree().
 */
ul.menu {
  border: none;
  list-style: none;
  text-align: left; /* LTR */
}
ul.menu li {
  margin: 0 0 0 0.5em; /* LTR */
}
ul li.expanded {
  list-style-image: url(../../misc/menu-expanded.png);
  list-style-type: circle;
}
ul li.collapsed {
  list-style-image: url(../../misc/menu-collapsed.png); /* LTR */
  list-style-type: disc;
}
ul li.leaf {
  list-style-image: url(../../misc/menu-leaf.png);
  list-style-type: square;
}
li.expanded,
li.collapsed,
li.leaf {
  padding: 0.2em 0.5em 0 0; /* LTR */
  margin: 0;
}
li a.active {
  color: #000;
}
td.menu-disabled {
  background: #ccc;
}

/**
 * Markup generated by theme_links().
 */
ul.inline,
ul.links.inline {
  display: inline;
  padding-left: 0;
}
ul.inline li {
  display: inline;
  list-style-type: none;
  padding: 0 0.5em;
}

/**
 * Markup generated by theme_breadcrumb().
 */
.breadcrumb {
  padding-bottom: 0.5em;
}

/**
 * Markup generated by theme_menu_local_tasks().
 */
ul.primary {
  border-bottom: 1px solid #bbb;
  border-collapse: collapse;
  height: auto;
  line-height: normal;
  list-style: none;
  margin: 5px;
  padding: 0 0 0 1em; /* LTR */
  white-space: nowrap;
}
ul.primary li {
  display: inline;
}
ul.primary li a {
  background-color: #ddd;
  border-color: #bbb;
  border-style: solid solid none solid;
  border-width: 1px;
  height: auto;
  margin-right: 0.5em; /* LTR */
  padding: 0 1em;
  text-decoration: none;
}
ul.primary li.active a {
  background-color: #fff;
  border: 1px solid #bbb;
  border-bottom: 1px solid #fff;
}
ul.primary li a:hover {
  background-color: #eee;
  border-color: #ccc;
  border-bottom-color: #eee;
}
ul.secondary {
  border-bottom: 1px solid #bbb;
  padding: 0.5em 1em;
  margin: 5px;
}
ul.secondary li {
  border-right: 1px solid #ccc; /* LTR */
  display: inline;
  padding: 0 1em;
}
ul.secondary a {
  padding: 0;
  text-decoration: none;
}
ul.secondary a.active {
  border-bottom: 4px solid #999;
}


/**
 * @file
 * Styles for system messages.
 */

div.messages {
  background-position: 8px 8px; /* LTR */
  background-repeat: no-repeat;
  border: 1px solid;
  margin: 6px 0;
  padding: 10px 10px 10px 50px; /* LTR */
}

div.status {
  background-image: url(../../misc/message-24-ok.png);
  border-color: #be7;
}
div.status,
.ok {
  color: #234600;
}
div.status,
table tr.ok {
  background-color: #f8fff0;
}

div.warning {
  background-image: url(../../misc/message-24-warning.png);
  border-color: #ed5;
}
div.warning,
.warning {
  color: #840;
}
div.warning,
table tr.warning {
  background-color: #fffce5;
}

div.error {
  background-image: url(../../misc/message-24-error.png);
  border-color: #ed541d;
}
div.error,
.error {
  color: #8c2e0b;
}
div.error,
table tr.error {
  background-color: #fef5f1;
}
div.error p.error {
  color: #333;
}

div.messages ul {
  margin: 0 0 0 1em; /* LTR */
  padding: 0;
}
div.messages ul li {
  list-style-image: none;
}


/**
 * @file
 * Basic styling for common markup.
 */

/**
 * HTML elements.
 */
fieldset {
  margin-bottom: 1em;
  padding: 0.5em;
}
form {
  margin: 0;
  padding: 0;
}
hr {
  border: 1px solid gray;
  height: 1px;
}
img {
  border: 0;
}
table {
  border-collapse: collapse;
}
th {
  border-bottom: 3px solid #ccc;
  padding-right: 1em; /* LTR */
  text-align: left; /* LTR */
}
tbody {
  border-top: 1px solid #ccc;
}
tr.even,
tr.odd {
  background-color: #eee;
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}

/**
 * Markup generated by theme_tablesort_indicator().
 */
th.active img {
  display: inline;
}
td.active {
  background-color: #ddd;
}

/**
 * Markup generated by theme_item_list().
 */
.item-list .title {
  font-weight: bold;
}
.item-list ul {
  margin: 0 0 0.75em 0;
  padding: 0;
}
.item-list ul li {
  margin: 0 0 0.25em 1.5em; /* LTR */
  padding: 0;
}

/**
 * Markup generated by Form API.
 */
.form-item,
.form-actions {
  margin-top: 1em;
  margin-bottom: 1em;
}
tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}
.form-item .description {
  font-size: 0.85em;
}
label {
  display: block;
  font-weight: bold;
}
label.option {
  display: inline;
  font-weight: normal;
}
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}
input.form-checkbox,
input.form-radio {
  vertical-align: middle;
}
.marker,
.form-required {
  color: #f00;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red;
}

/**
 * Inline items.
 */
.container-inline .form-actions,
.container-inline.form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * Markup generated by theme_more_link().
 */
.more-link {
  text-align: right; /* LTR */
}

/**
 * Markup generated by theme_more_help_link().
 */
.more-help-link {
  text-align: right; /* LTR */
}
.more-help-link a {
  background: url(../../misc/help.png) 0 50% no-repeat; /* LTR */
  padding: 1px 0 1px 20px; /* LTR */
}

/**
 * Markup generated by theme_pager().
 */
.item-list .pager {
  clear: both;
  text-align: center;
}
.item-list .pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: 0.5em;
}
.pager-current {
  font-weight: bold;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete li.selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsible .fieldset-legend {
  background: url(../../misc/menu-expanded.png) 5px 65% no-repeat; /* LTR */
  padding-left: 15px; /* LTR */
}
html.js fieldset.collapsed .fieldset-legend {
  background-image: url(../../misc/menu-collapsed.png); /* LTR */
  background-position: 5px 50%; /* LTR */
}
.fieldset-legend span.summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
tr.drag {
  background-color: #fffff0;
}
tr.drag-previous {
  background-color: #ffd;
}
.tabledrag-toggle-weight {
  font-size: 0.9em;
}
body div.tabledrag-changed-warning {
  margin-bottom: 0.5em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
*/
tr.selected td {
  background: #ffc;
}
td.checkbox,
th.checkbox {
  text-align: center;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background: #0072b9 url(../../misc/progress.gif);
}


/* Field display */
.field .field-label {
  font-weight: bold;
}
.field-label-inline .field-label,
.field-label-inline .field-items {
  float:left; /*LTR*/
}

/* Form display */
form .field-multiple-table {
  margin: 0;
}
form .field-multiple-table th.field-label {
  padding-left: 0; /*LTR*/
}
form .field-multiple-table td.field-multiple-drag {
  width: 30px;
  padding-right: 0; /*LTR*/
}
form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
  padding-right: .5em; /*LTR*/
}

form .field-add-more-submit {
  margin: .5em 0 0;
}


.node-unpublished {
  background-color: #fff4f4;
}
.preview .node {
  background-color: #ffffea;
}
td.revision-current {
  background: #ffc;
}


#permissions td.module {
  font-weight: bold;
}
#permissions td.permission {
  padding-left: 1.5em; /* LTR */
}
#permissions tr.odd .form-item,
#permissions tr.even .form-item {
  white-space: normal;
}
#user-admin-settings fieldset .fieldset-description {
  font-size: 0.85em;
  padding-bottom: .5em;
}

/**
 * Override default textfield float to put the "Add role" button next to
 * the input textfield.
 */
#user-admin-roles td.edit-name {
  clear: both;
}
#user-admin-roles .form-item-name {
  float: left; /* LTR */
  margin-right: 1em; /* LTR */
}

/**
 * Password strength indicator.
 */
.password-strength {
  width: 17em;
  float: right;  /* LTR */
  margin-top: 1.4em;
}
.password-strength-title {
  display: inline;
}
.password-strength-text {
  float: right; /* LTR */
  font-weight: bold;
}
.password-indicator {
  background-color: #C4C4C4;
  height: 0.3em;
  width: 100%;
}
.password-indicator div {
  height: 100%;
  width: 0%;
  background-color: #47C965;
}
input.password-confirm,
input.password-field {
  width: 16em;
  margin-bottom: 0.4em;
}
div.password-confirm {
  float: right;  /* LTR */
  margin-top: 1.5em;
  visibility: hidden;
  width: 17em;
}
div.form-item div.password-suggestions {
  padding: 0.2em 0.5em;
  margin: 0.7em 0;
  width: 38.5em;
  border: 1px solid #B4B4B4;
}
div.password-suggestions ul {
  margin-bottom: 0;
}
.confirm-parent,
.password-parent {
  clear: left; /* LTR */
  margin: 0;
  width: 36.3em;
}

/* Generated by user.module but used by profile.module: */
.profile {
  clear: both;
  margin: 1em 0;
}
.profile .user-picture {
  float: right; /* LTR */
  margin: 0 1em 1em 0; /* LTR */
}
.profile h3 {
  border-bottom: 1px solid #ccc;
}
.profile dl {
  margin: 0 0 1.5em 0;
}
.profile dt {
  margin: 0 0 0.2em 0;
  font-weight: bold;
}
.profile dd {
  margin: 0 0 1em 0;
}

.views-exposed-form .views-exposed-widget {
  float: left; /* LTR */
  padding: .5em 1em 0 0; /* LTR */
}

.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 1.6em;
}

.views-exposed-form .form-item,
.views-exposed-form .form-submit {
  margin-top: 0;
  margin-bottom: 0;
}

.views-exposed-form label {
  font-weight: bold;
}

.views-exposed-widgets {
  margin-bottom: .5em;
}

/* table style column align */
.views-align-left {
  text-align: left;
}
.views-align-right {
  text-align: right;
}
.views-align-center {
  text-align: center;
}

/* Remove the border on tbody that system puts in */
.views-view-grid tbody {
  border-top: none;
}

.view .progress-disabled {
  float: none;
}

* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
}
body {
    line-height: 1.5;
    font-size: 100%;
    color: #526d87;
    cursor: default;
    font-family: 'Open Sans', sans-serif;
    word-wrap: break-word;
	font-weight: 400;
	background-color:#031e36;
}
.views-slideshow-cycle-main-frame {
	float: right;
}
textarea, input {
font-family: 'Open Sans', sans-serif;
color: #526d87;
}
body#tinymce {
    background-image: none;
}
.clr {
    clear: both;
	display:block;
}
a {
    cursor: pointer;
	color:#0b5ca4;
}
a:hover {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
	color:#0b5ca4;
}
h1 {
    font-size: 180%;
    margin-bottom: 0.8em;
	margin-top:8px;
}
h2 {
    font-size: 110%;
	font-weight:700;
    margin-bottom: 0.7em;
}
h3 {
    font-size: 115%;
	font-weight:700;
}
h4 {
    font-size: 1.0em;
}
h5 {

}
h6 {

}
.node ul, .node ol {
margin-left:20px;
font-size:14px;
}
.node ul, .node ol, .node p, .node dl, .node table {
margin-bottom:20px;
}
.node table {
width:100%;
background-color:#fff;
border:1px solid #79b0e8;
}
.node table td {
padding:6px 15px;
}
.node table th {
text-align:center;
border:none;
background-color:#79b0e8;
padding: 10px 0;
color:#fff;
}
.node table tr:nth-child(even) {background: #d6e4f4}
.node table tr:nth-child(odd) {background: #bcd5f0}

.node p, .node dl {
font-size:14px;
}
#page-wrapper {
background: #e2e9f0 url(/media/theme/images/bg.jpg) center top no-repeat;
}
#page {
width:960px;
margin: 0 auto;
padding: 18px 0 30px 0;
}
#header {
position:relative;
margin-bottom:33px;
}
#levy {
float:left;
width: 300px;
}
#content {
width:960px;
}
#content.slevym {
width:619px;
float:left;
padding-left:40px;
border-left:1px solid #4b98e6;
}
.hotkontakt {
position:absolute;
top:0;
right:0;
}
.hotkontakt li {
height:35px;
list-style-type:none;
padding-left: 46px;
font-weight:700;
font-size:17px;
padding-top:9px;
color:#7a8fa4;
float:left;
margin-left:30px;
}
.hotkontakt a {
color:#7a8fa4;
text-decoration:none;
}
.hotkontakt a:hover {
color:#095ca3;
text-decoration:underline;
}
.htel {
background: transparent url(/media/theme/images/tel.png) left center no-repeat;
}
.hmail {
background: transparent url(/media/theme/images/mail.png) left center no-repeat;
}
#main-menu {
position:absolute;
bottom:-5px;
right:0;
margin:0;
padding:0;
}
#main-menu  li {
margin:0;
padding:0 5px 0 4px;
border-right:1px solid #c2d4e3;
}
#main-menu li.active, #main-menu li.last {
padding-right:0;
border:none;
}
#main-menu a {
display:inline-block;
padding: 4px 12px;
text-decoration:none;
color:#20518b;
font-size:14px;
}
#main-menu a.active, #main-menu a:hover, #main-menu li.active-trail a {
background: #4e9be9;
background: -moz-linear-gradient(top, #4e9be9 0%, #095ca3 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e9be9), color-stop(100%,#095ca3));
background: -webkit-linear-gradient(top, #4e9be9 0%,#095ca3 100%);
background: -o-linear-gradient(top, #4e9be9 0%,#095ca3 100%);
background: -ms-linear-gradient(top, #4e9be9 0%,#095ca3 100%);
background: linear-gradient(to bottom, #4e9be9 0%,#095ca3 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e9be9', endColorstr='#095ca3',GradientType=0 );
color:#fff;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
}
.view-titulka .views-slideshow-controls-top, .view-titulka #views_slideshow_cycle_main_titulka-page {
float:left;
}
.view-titulka .views-slideshow-controls-top {
width:314px;
}
#block-menu-block-1 li {
padding:0;
margin:0;
list-style-type:none;
list-style-image:none;
}
#block-menu-block-1 ul {
padding:0;
margin:0;
}
.view-titulka .views-slideshow-pager-field-item, #block-menu-block-1 a {
padding: 4px 15px;
margin:0;
display:block;
}
.view-titulka .views-slideshow-pager-field-item {
padding: 8px 15px;
}
.view-titulka .views-slideshow-pager-field-item.active, #block-menu-block-1 a.active  {
background: #4e9be9;
color:#fff;
text-decoration:none;
background: -moz-linear-gradient(top, #4e9be9 0%, #095ca3 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e9be9), color-stop(100%,#095ca3));
background: -webkit-linear-gradient(top, #4e9be9 0%,#095ca3 100%);
background: -o-linear-gradient(top, #4e9be9 0%,#095ca3 100%);
background: -ms-linear-gradient(top, #4e9be9 0%,#095ca3 100%);
background: linear-gradient(to bottom, #4e9be9 0%,#095ca3 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e9be9', endColorstr='#095ca3',GradientType=0 );
-moz-border-top-left-radius: 4px;
-webkit-border-top-left-radius: 4px;
-khtml-border-top-left-radius: 4px;
border-top-left-radius: 4px;
-moz-border-bottom-left-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-khtml-border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
padding: 8px 15px;
}
.view-titulka .views-slideshow-pager-field-item a {
color:#095ca3;
font-size: 14px;
text-decoration:none;
}
.view-titulka .views-slideshow-pager-field-item.active a {
font-size: 14px;
color:#fff;
}
.view-titulka #views_slideshow_cycle_main_titulka-page {
border:2px solid #4e9be9;
-moz-border-top-right-radius: 4px;
-webkit-border-top-right-radius: 4px;
-khtml-border-top-right-radius: 4px;
border-top-right-radius: 4px;
-moz-border-bottom-right-radius: 4px;
-webkit-border-bottom-right-radius: 4px;
-khtml-border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
}
#block-nodeblock-9 {
padding: 15px 18px;
background-color:#fff;
margin-top:40px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
}
#block-nodeblock-9 .node ul {
margin-bottom:0;
}
#block-nodeblock-9 #node-9 .content div {
float:left;
width:462px;
}
#block-nodeblock-9 .n9loga {
margin:0;
}
#block-nodeblock-9 .n9loga li {
display:inline-block;
width:151px;
text-align:center;
font-size:13px;
}
#block-nodeblock-9 .n9loga li img {
margin-bottom:14px;
}
#footer {
background-color:#072f53;
width:100%;
color:#4593e0;
}
#footer  .section {
width:960px;
margin: 0 auto;
padding: 20px 0;
}
#footer  .fblok hr {
height:1px;
border:0;
margin: 3px 0;
color:#4593e0;
background-color:#4593e0;
}
#footer  img.logofooter {
float:left; 
}
#footer  .fblok {
margin-left:150px;
font-size:13px;
padding-top: 15px;
}
#footer  a {
color:#4593e0;
}
#footer1 {
width:960px;
margin: 15px auto;
color:#2b5e90;
text-align:right;
}
#footer1 a {
color:#2b5e90;
}
#content dl {
}
#content dd {
margin-left:80px;
}
#content dt {
width: 80px;
float:left;
}
.mapa {
border:1px solid #000;
float:right;
-webkit-box-shadow: 3px 3px 5px 0px #b3c9db;
-moz-box-shadow:    3px 3px 5px 0px #b3c9db;
box-shadow:         3px 3px 5px 0px #b3c9db;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.field-name-field-foto .field-item {
float:left;
border:1px solid #000;
-webkit-box-shadow: 3px 3px 5px 0px #b3c9db;
-moz-box-shadow:    3px 3px 5px 0px #b3c9db;
box-shadow:         3px 3px 5px 0px #b3c9db;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin-bottom:34px;
}
.field-name-field-foto .field-item.even {
margin-right:34px;
}
.field-name-field-foto .field-item:hover {
border:1px solid #ffcb2e;
-webkit-box-shadow: none;
-moz-box-shadow:    none;
box-shadow:         none;
}
.view-reference table {
width:100%;
}
.view-reference td {
width:33%;
padding:15px;
height:180px;
background: url(/media/theme/images/ref.png) center center no-repeat;
text-align:center;
padding-left:10px;
}
.view-reference img {
margin-bottom:20px;
}
.view-slu-by img {
border:1px solid #000;
-webkit-box-shadow: 3px 3px 5px 0px #b3c9db;
-moz-box-shadow:    3px 3px 5px 0px #b3c9db;
box-shadow:         3px 3px 5px 0px #b3c9db;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
margin-bottom:34px;
}
.view-slu-by img:hover {
border:1px solid #ffcb2e;
}

/* poptávkový formulář (náhrada Drupal webformu, vzhled dle původního tématu) */
.kontakt-formular{margin:18px 0}
.kontakt-formular .skupina{border:1px solid #0b5ca4;padding:12px 20px 16px;margin:0 0 20px;background:#fff;border-radius:4px}
.kontakt-formular legend{color:#fff;background:#0b5ca4;padding:5px 10px}
.kontakt-formular .polozka{margin-bottom:12px}
.kontakt-formular label{display:block;margin-bottom:3px;font-size:14px}
.kontakt-formular input[type=text],.kontakt-formular input[type=email],.kontakt-formular textarea{width:100%;max-width:420px;height:30px;padding:5px 10px;border:1px solid #96b9d8;border-radius:5px;font:inherit;background:#fff;box-sizing:border-box}
.kontakt-formular textarea{height:auto;min-height:90px;resize:vertical}
.kontakt-formular input:focus,.kontakt-formular textarea:focus{outline:2px solid #4e9be9;outline-offset:0}
.kontakt-formular .sluzba{display:block;margin-bottom:6px;font-size:14px}
.kontakt-formular .sluzba input{margin-right:7px}
.kontakt-formular .povinne{color:#c00}
.kontakt-formular .odeslat{border-radius:8px;background-color:#45be4a;color:#fff;font:inherit;font-size:120%;padding:7px 22px;cursor:pointer;text-transform:uppercase;border:0}
.kontakt-formular .odeslat:hover{background-color:#81be45}
/* honeypot: pro člověka neviditelné, pro robota vyplnitelné */
.kontakt-formular .past{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
.zprava{padding:11px 14px;margin:0 0 18px;border-radius:4px;border:1px solid}
.zprava-ok{background:#eaf6ea;border-color:#a5cfa5;color:#1e5c1e}
.zprava-chyba{background:#fdeded;border-color:#e0a5a5;color:#8c1a1a}

/* slideshow bez JS: první slide viditelný (JS pak řídí display inline) */
.view-titulka .views_slideshow_cycle_slide{display:none}
.view-titulka .views_slideshow_cycle_slide.views-row-1{display:block}
.view-titulka .views-slideshow-pager-field-item{cursor:pointer}

/* vanilla lightbox (náhrada colorboxu) */
.lb-overlay{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;align-items:center;justify-content:center;z-index:9999}
.lb-overlay.is-open{display:flex}
.lb-figure{margin:0;max-width:92%;max-height:92%;text-align:center}
.lb-img{max-width:100%;max-height:82vh;display:block;margin:0 auto;background:#fff}
.lb-caption{display:block;color:#fff;font-size:13px;padding:10px 4px 0;line-height:1.5}
.lb-counter{display:block;color:#bbb;font-size:12px;margin-top:3px}
.lb-close,.lb-prev,.lb-next{position:absolute;background:none;border:0;color:#fff;cursor:pointer;padding:10px;line-height:1;opacity:.8}
.lb-close:hover,.lb-prev:hover,.lb-next:hover{opacity:1}
.lb-close{top:10px;right:16px;font-size:34px}
.lb-prev,.lb-next{top:50%;transform:translateY(-50%);font-size:56px}
.lb-prev{left:10px}
.lb-next{right:10px}
@media (max-width:640px){.lb-prev,.lb-next{font-size:38px}}

/* ── mobilní verze (původní téma byla fixní 960px bez viewportu) ─────────── */
@media (max-width: 999px){
  #page,#content,#footer .section,#footer1{width:auto}
  #page{padding:12px 15px 30px}
  #footer .section{padding:20px 15px}
  #footer1{margin:15px;text-align:center}
  img,iframe{max-width:100%;height:auto}

  /* hlavička: logo, kontakty a menu pod sebou místo absolutního layoutu */
  #header{margin-bottom:15px}
  .hotkontakt{position:static;margin-top:8px}
  .hotkontakt li{float:none;display:block;margin-left:0;height:auto;padding-top:4px}
  #main-menu{position:static;margin-top:12px;text-align:left}
  #main-menu li{display:inline-block;border-right:0;padding:0;margin:0 6px 6px 0}
  #main-menu a{border:1px solid #c2d4e3;border-radius:4px}

  /* sloupce pod sebe */
  #levy{float:none;width:auto;margin-bottom:20px}
  #content.slevym{float:none;width:auto;padding-left:0;border-left:0}

  /* titulní slideshow: pager nad obrázkem, obrázek plná šířka */
  .view-titulka .views-slideshow-controls-top{float:none;width:auto;margin-bottom:10px}
  .view-titulka #views_slideshow_cycle_main_titulka-page{float:none;width:auto}
  .view-titulka .views-slideshow-cycle-main-frame{float:none;width:auto!important}
  .view-titulka .views-slideshow-cycle-main-frame-row{width:auto!important}
  .view-titulka .views-slideshow-pager-field-item.active{border-radius:4px}

  /* blok výhod + referencí na titulce */
  #block-nodeblock-9 #node-9 .content div{float:none;width:auto}

  /* reference: mřížka 3 sloupců -> dlaždice pod sebou */
  .view-reference tr,.view-reference td{display:block;width:auto}
  .view-reference td{height:auto}

  /* kontakt: mapa a fotky pod text */
  .mapa{float:none;display:block;margin:15px auto}
  .field-name-field-foto .field-item,.field-name-field-foto .field-item.even{float:none;display:block;margin:0 0 20px;max-width:100%}

  /* formulář */
  .kontakt-formular input[type=text],.kontakt-formular input[type=email],.kontakt-formular textarea{max-width:none}

  #footer img.logofooter{float:none;display:block;margin:0 auto 12px}
  #footer .fblok{margin-left:0;text-align:center}
}
