html {
    Xbackground-color: #4962a3;
}
body {
    overflow: hidden;
    background: url("../images/town-tiles-bg3.jpg") top left;
}
#wrapper {
    height: 100%;
}
#header,
#footer {
    position: absolute;
    left: 0px;
    height: 30px;
    width: 98%;
    padding: 0 1%;
    color: white;
    text-align: center;
    z-index: 2;
}
#header {
    top: 20px;
}
    #header .popover,
    #footer .popover {
        max-width: 500px;
    }
    #header .login-form,
    #footer .login-form {
        margin: 0px;
    }
#footer {
    bottom: 20px;
}
    #footer .btn:first-child {
        opacity: .7;
    }
    #footer .btn:first-child:hover {
        opacity: 1;
    }
#middle {
    position: relative;
    height: 100%;
    z-index: 1;
}

.houses-list {
    position: absolute;
    left: 0px;
    top: 50%;
    min-width: 100%;
    height: 0px;
}
.houses-inner {
    height: 400px;
    margin: -200px auto 0;
}
.houses-item {
    float: left;
    margin: 0 25px 0;
    cursor: pointer;
}
.houses-item a {
    text-decoration: none;
}
.houses-item .title {
    margin: 0 -25px 10px;
    text-align: center;
    font-size: 1.6em;
    color: white;
}
.houses-item .title .addr-city {
    font-size: 1.2em;
    line-height: 1.5em;
}
.houses-item .title .addr-street,
.houses-item .title .addr-house {
    color: #ff5;
}
.houses-item .imgs {
    position: relative;
    width: 280px;
    height: 210px;
    border: 15px solid rgba(255,255,255,0.8);
    -moz-border-radius: 120px;
    -webkit-border-radius: 120px;
    -khtml-border-radius: 120px;
    border-radius: 120px;
    -moz-box-shadow: 5px 5px 7px #222;
    -webkit-box-shadow: 5px 5px 7px #222;
    -khtml-box-shadow: 5px 5px 7px #222;
    box-shadow: 5px 5px 7px #222;
    overflow: hidden;
}
.houses-item .imgs img {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: none;
    height: 100%;
}
.houses-item.hovered {
    padding: 2px 0 0;
    margin: 0 23px 0 27px;
}
.houses-item.hovered .title {
    text-shadow: 0 0 10px;
}
.houses-item.hovered .imgs {
    border-color: #fff5b4;
    -moz-box-shadow: 5px 5px 7px #222;
    -webkit-box-shadow: 5px 5px 7px #222;
    -khtml-box-shadow: 5px 5px 7px #222;
    box-shadow: 3px 3px 7px #222;
}