html {
    height: 100%;
}

body {
    height: 100%;
    background: #265e2e;
}

.wrap {
    margin: 0 auto;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
    height: 206px;
    background: url('../images/header.jpg') no-repeat;
}

.main-content {
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 1 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
}

.left {
    flex-basis: 250px;
    width: 250px;
    min-width: 250px;
    background: url('../images/left_bg.jpg') repeat-y;
}

.left-img {
    margin: 10px auto;
    text-align: center;
}

.menu {
    margin: 0;
    padding: 0;
}

.menu li {
    list-style: none;
    margin-right: 8px;
}

.menu li a {
    display: block;
    font-size: 16px;
    padding: 3px 0 3px 35px;
    color: #ffffff;
    transition: all .2s;
}

.menu li a:hover {
    background: #18411f;
    color: #e2ea00;
    text-decoration: none;
}

.menu_delimeter {
    color: #e2ea00;
    margin-top: 20px;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 30px;
}

.right {
    background: #ffffff url(../images/content_bg.jpg) no-repeat 0 0;
    /* 1 flex-grow, 0 flex-shrink, auto flex-basis */
    flex-basis: 100%;
    flex-grow: 1;
    overflow: hidden;
    white-space: normal;
}

.right-wrapper {
    margin: 20px;
    font-size: 16px;
    overflow: hidden;
    white-space: normal;
}

h1 {
    font-size: 18px;
    font-weight: 600;
}

.plashka {
    display: block;
    background: #eeeeee;
    color: #000000;
    padding: 5px 10px 10px 10px;
}

.plashka a {
    color: #000000;
    text-decoration: none;
}

.active {
    font-weight: 600;
}

.object-list {
    max-width: 710px;
}

.item2 {
    background: #eeeeee;
}

.object-item {
    padding: 10px;
    margin: 10px 0;
    display: flex;
    flex-direction: row;
}

.object-item:hover {
    text-decoration: none;
    background: #dde4e0;
}

.object-text {
    margin-left: 20px;
    color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cena {
    font-size: 20px;
    color: #265e2e;
}

.object-text span object a {
    color: #000000;
}

.object-text span object a:hover {
    color: #000000;
    text-decoration: none;
}


footer {
    /* 0 flex-grow, 0 flex-shrink, auto flex-basis */
    flex: 0 0 auto;
    height: 72px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-left {
    width: 250px;
    background: url('../images/left_bg.jpg') repeat-y;
}

.footer-right {
    background: #ffffff url(../images/footer_bg.jpg) repeat-x;
    flex: 1 0 auto;
    display: flex;
    flex-direction: row;
}

.footer-text {
    margin-top: 10px;
    color: #ffffff;
    font-size: 12px;
}

.footer-text a {
    color: #ffffff;
}

.footer-text a:hover {
    color: #ffffff;
    text-decoration: none;
}

#map {
    width: auto;
    height: 250px;
    border: 1px solid #008601;
    margin-bottom:20px;
}