html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  background-repeat: no-repeat;
  vertical-align: middle;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /*
		While support for IE7 is lacking, there has been workarounds introduced here. 
		Search for ".ie7" We might get rid of box model issues using this:
		https://github.com/Schepp/box-sizing-polyfill
		Example code:
		box-sizing: border-box; *behavior: url(/scripts/boxsizing.htc);
	*/
}
html,
body,
.map_wrapper,
#map_canvas,
.overlay {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
body {
  background-color: #a0a0a0;
}
.map_wrapper {
  position: fixed;
  transition: padding 0.5s;
  -moz-transition: padding 0.5s;
  /* Firefox 4 */
  -webkit-transition: padding 0.5s;
  /* Safari and Chrome */
  -o-transition: padding 0.5s;
  /* Opera */
  opacity: 0;
  /* standard: ff gt 1.5, opera, safari */
  filter: alpha(opacity=0);
  /* ie lt 7 */
}
.map_wrapper.open {
  padding-top: 70px;
  opacity: 1;
  /* standard: ff gt 1.5, opera, safari */
  filter: alpha(opacity=100);
  /* ie lt 7 */
}
#map_canvas {
  position: absolute;
  z-index: 1;
}
.overlay {
  position: fixed;
  z-index: 100;
}
.container {
  width: 100%;
  height: 0;
  z-index: 200;
  /* background: red; OBVIOUSLY, DISPOSABLE */
}
.overlay {
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body.global_layout .overlay {
  background-image: url(../images/bg_fallback.jpg);
}
.oldie body.global_layout.city_front .overlay {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.../images/bg_fallback', sizingMethod='scale');
  ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/bg_fallback', sizingMethod='scale')";
}
.font-normal {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.font-bold {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.ellipsis {
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
body {
  /* Font */
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: #222222;
}
body .container {
  -webkit-font-smoothing: subpixel-antialiased;
  font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}
.wrap {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  min-width: 300px;
}
@media only screen and (max-width: 1000px) {
  .wrap {
    width: 95%;
  }
}
strong {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  color: #000000;
}
a strong {
  color: inherit;
}
small {
  color: #a1a1a1;
}
/* Links */
a,
a:link,
a:visited {
  color: #3aa7d0;
  text-decoration: none;
}
a:hover,
a:active {
  color: #4fc1ec;
  text-decoration: none;
}
/* Placeholder color */
::-webkit-input-placeholder {
  color: #a1a1a1;
}
:-moz-placeholder {
  color: #a1a1a1;
}
.floatright {
  float: right;
}
.floatleft {
  float: left;
}
.clearboth {
  clear: both;
}
.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.show {
  position: static;
  overflow: visible;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
/* Testing greyscale stuff. Class for things desaturated, eg. inactive places? */
.desaturate {
  filter: grayscale(100%);
  /* Current draft standard */
  -webkit-filter: grayscale(100%);
  /* New WebKit */
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  /* Not yet supported in Gecko, Opera or IE */
  -webkit-filter: saturate(0%);
  -moz-filter: saturate(0%);
  -o-filter: saturate(0%);
  filter: gray;
  /* IE */
  -webkit-filter: grayscale(1);
  /* Old WebKit */
  /* 
		Probably better to use:
		http://archive.plugins.jquery.com/project/desaturate
		or
		http://james.padolsey.com/demos/grayscale/
    */
}
.desaturate img {
  filter: url(resources.svg#desaturate);
  /* Gecko */
  /* This makes things disappear in FF */
}
/* end */
/*
.border-radius (@radius: 4px) {
	-webkit-border-radius: @radius; 
	-moz-border-radius: @radius; 
	-o-border-radius: @radius; 
	border-radius: @radius; 
	}
.box-shadow (@x: 0, @y: 1px, @blur: 4px, @color: rgba(0,0,0,.2)) {
	box-shadow: @arguments;
	-moz-box-shadow: @arguments;
	-webkit-box-shadow: @arguments;
	-o-box-shadow: @arguments;
	}
.box,
.node{
	.box-shadow(0px, 0px, 20px, 0.5);
	.border-radius(0px);
}
*/
a.action,
span.action,
input[type="submit"].action {
  background-color: #3aa7d0;
  display: block;
  height: 30px;
  width: 130px;
  cursor: pointer;
  color: #fff;
  line-height: 30px;
  padding-left: 7.5px;
  border-bottom: solid 2px #238ebf;
}
a.action.free,
span.action.free,
input[type="submit"].action.free {
  width: auto;
  padding: 0 15px;
  margin-left: 0;
}
a.action:hover,
span.action:hover,
input[type="submit"].action:hover {
  background-color: #4fc1ec;
}
span.inactive {
  background-color: #a1a1a1;
  border-color: #666666;
}
span.inactive:hover {
  background-color: #a1a1a1;
  cursor: default;
}
input[type="submit"].action {
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  border-bottom: solid 2px #238ebf;
}
input.action.negative,
a.negative {
  background-color: #d65210;
  border-color: #ab0000;
}
input.action.negative:hover,
a.negative:hover {
  background-color: #f8580a;
}
.show_map {
  background-position: 120px 0;
}
.add_review {
  background-position: 120px 0;
}
.send_message {
  background-position: 120px 0;
}
div#masthead {
  width: 100%;
  min-height: 70px;
  margin-bottom: 15px;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.4);
}
@media only screen and (max-width: 1000px) {
  div#masthead .wrap {
    overflow: hidden;
  }
}
div.city_logo {
  height: 70px;
  padding-top: 15px;
  float: left;
  width: 220px;
}
.ie7 div#masthead {
  height: 50px;
}
.ie7 div.city-logo {
  height: 55px;
}
div#masthead h4 {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@media only screen and (max-width: 1000px) {
  div#masthead h4 {
    position: static;
    overflow: visible;
    clip: auto;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    margin-right: 190px;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    text-indent: -9999px;
    position: absolute;
    top: 15px;
    right: 0px;
    z-index: 51;
    background: url(../images/sprite.png) -40px -50px;
  }
  div#masthead h4.open {
    background-position: -40px -90px;
  }
}
@media only screen and (max-width: 480px) {
  div#masthead h4 {
    /* Position for mobiles (with closed search) */
    margin-right: 50px;
  }
}
div#masthead ul.sections {
  float: right;
  padding-top: 20px;
  line-height: 24px;
  overflow: hidden;
  /* make room for searchbox */
  right: 190px;
}
div#masthead ul.sections li {
  display: inline;
  margin-left: 20px;
}
div#masthead ul.sections li a {
  font-size: 18px;
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
div#masthead ul.sections li a:hover {
  border-color: #fff;
}
@media only screen and (max-width: 1000px) {
  div#masthead ul.sections {
    margin: 0;
    padding: 0;
    clear: both;
    /* loose room for searchbox */
    right: 0;
    height: 0;
  }
  div#masthead ul.sections.open {
    height: auto;
    padding-bottom: 10px;
    padding-left: 5px;
  }
  div#masthead ul.sections li {
    margin: 0;
    line-height: 32px;
    float: left;
    min-width: 90px;
  }
}
form.search {
  position: static;
  float: left;
  clear: both;
  width: 100%;
}
form.search fieldset {
  position: static;
}
form.search label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@media only screen and (max-width: 480px) {
  form.search label {
    background: blue;
    position: static;
    overflow: visible;
    clip: auto;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    /* Positioning */
    position: absolute;
    top: 15px;
    right: 5px;
    /* It looks like a button: */
    display: block;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    cursor: pointer;
    background: url(../images/sprite.png) 0 -50px;
  }
  form.search label.open {
    background-position: 0 -90px;
  }
}
form.search div {
  /* Positioning for tablets and dekstops*/
  width: 170px;
  position: absolute;
  top: 22px;
  right: 0;
}
@media only screen and (max-width: 480px) {
  form.search div {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
  }
  form.search div.open {
    position: static;
    overflow: visible;
    clip: auto;
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
    border: 0;
    position: relative;
    float: left;
    clear: both;
    overflow: hidden;
    top: 0;
    padding-bottom: 10px;
    width: 100%;
  }
  form.search div input.search {
    width: 100%;
  }
  form.search div input.submit {
    position: absolute;
    top: 0;
    right: 0;
  }
}
form.search input.search {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  float: left;
  width: 145px;
  height: 25px;
  padding: 4px;
  font-size: 14px;
  outline: none;
  margin: 0;
  border: 0;
  color: #222222;
}
form.search input.inline_search {
  float: left;
}
form.search input.submit {
  float: left;
  width: 25px;
  height: 25px;
  min-height: 25px;
  cursor: pointer;
  text-indent: -999em;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  vertical-align: middle;
  background: #ffffff url(../images/sprite.png) -1px -1px;
}
form.search input.submit:hover {
  background-position: -1px -26px;
}
form.search .search_suggestions {
  background: #ffffff;
  z-index: 200;
  top: 48px;
}
form.search .search_suggestions a {
  float: left;
  clear: both;
  display: block;
  width: 100%;
  padding: 5px 7.5px;
}
form.search .search_suggestions a:hover {
  color: #fff;
  background: #4fc1ec;
}
form.search .search_suggestions a.normal_search i {
  display: block;
  float: left;
  margin-right: 5px;
  background: url('../images/sprite.png') no-repeat -5px -30px;
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 1000px) {
  form.search .search_suggestions {
    display: none;
  }
}
.lt-ie9 div#masthead ul li a {
  border-color: #ddd;
}
.lt-ie8 form.search input.search {
  padding: 0;
}
.lt-ie8 form.search input.submit {
  position: absolute;
  top: 0;
  right: 0;
  color: transparent;
  padding: 0 0 0 25px !important;
  line-height: 0;
}
.places_bar {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  min-width: 300px;
  margin: 15px auto;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .places_bar {
    width: 95%;
  }
}
.places_bar li {
  display: block;
  float: left;
  text-align: center;
  background: url(../images/places_bar_separator.png) no-repeat 0 7px;
  /* Width for desktops */
  width: 12.5%;
}
.places_bar li:first-child {
  background: none;
}
.places_bar li a {
  display: block;
  height: 70px;
  padding-top: 8px;
  color: #fff;
  white-space: nowrap;
}
.places_bar li a.count0 {
  opacity: 0.8;
}
.places_bar li a:hover {
  background: #222;
}
.places_bar li span.icon {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 6px auto;
  background: url('../images/sprite.png') -80px -160px;
}
.places_bar li small {
  font-size: 10px;
  color: #ccc;
  display: inline;
  margin-left: 2px;
}
@media only screen and (max-width: 1000px) {
  .places_bar li small {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .places_bar {
    width: 100%;
  }
  .places_bar li {
    width: 25%;
    background: none;
  }
}
.lt-ie9 .places_bar {
  background: #333;
}
li a.restaurants span.icon {
  background-position: -110px -160px;
}
li a.hotels span.icon {
  background-position: -140px -160px;
}
li a.pubs_clubs span.icon {
  background-position: -170px -160px;
}
li a.shopping span.icon {
  background-position: -200px -160px;
}
li a.entertainment span.icon {
  background-position: -230px -160px;
}
li a.services span.icon {
  background-position: -260px -160px;
}
li a.culture span.icon {
  background-position: -290px -160px;
}
.secnav {
  background: rgba(0, 0, 0, 0.1);
  height: 36px;
  line-height: 36px;
  color: #fff;
}
.secnav a {
  color: #fff;
}
ol.breadcrumb {
  overflow: hidden;
  color: #fff;
  margin: 0;
  max-height: 36px;
  float: left;
}
ol.breadcrumb li {
  float: left;
}
ol.breadcrumb li a {
  color: #fff;
  display: block;
  float: left;
}
ol.breadcrumb li a:hover {
  text-decoration: underline;
}
ol.breadcrumb i {
  display: block;
  float: left;
  width: 35px;
  height: 36px;
  background: url(../images/sprite.png) -259px -90px no-repeat;
}
.sign {
  float: right;
  text-align: right;
}
@media only screen and (max-width: 1000px) {
  .sign {
    display: none;
  }
}
.like-button {
  line-height: 46px;
}
.logged_in {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  height: 36px;
  overflow: hidden;
  opacity: 0.7;
}
.logged_in .avatar {
  float: right;
  top: -5px;
  margin-left: 10px;
  right: -11px;
}
.logged_in .username {
  float: right;
  right: -10px;
}
.logged_in.open {
  height: 100px;
  z-index: 2;
  opacity: 1;
  overflow: visible;
  transition: opacity 0.3s;
  -moz-transition: opacity  0.3s;
  -webkit-transition: opacity  0.3s;
  -o-transition: opacity  0.3s;
}
.logged_in.open .menu {
  background: #fff;
  color: #333;
}
.logged_in.open .menu .menu_options {
  overflow: hidden;
  text-align: left;
}
.logged_in.open .menu a {
  padding-left: 10px;
  display: block;
  float: left;
  color: #333;
  line-height: 20px;
  margin-bottom: 8px;
}
.logged_in.open .menu a:hover {
  color: #3aa7d0;
}
.logged_in .menu {
  margin-right: 10px;
  cursor: pointer;
}
.logged_in:hover .menu {
  background-color: #fff;
  color: #888;
}
.box.global_social_buttons {
  padding: 8px 30px 4px 30px;
  height: 37px;
  /* 
	i {
		display: block;
		height: 65px;
		width: 65px;
		background: url(../images/share_like_bubble.png) no-repeat;
		position: absolute;
		top: -35px;
		right: 10px;
	}
	*/
}
.box.global_social_buttons .fb-like {
  left: 8px;
}
.front_social_buttons {
  position: absolute;
  top: 30px;
  z-index: 2;
  right: 330px;
}
@media only screen and (max-width: 700px) {
  .front_social_buttons {
    top: 15px;
    right: 30px;
  }
}
@media only screen and (max-width: 420px) {
  .front_social_buttons {
    display: none;
  }
}
.content {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  min-width: 300px;
}
@media only screen and (max-width: 1000px) {
  .content {
    width: 95%;
  }
}
@media only screen and (max-width: 700px) {
  .content {
    margin: 0;
    width: 100%;
  }
}
/* Sidebar modules for pdf and app */
.sidebar .showcase {
  padding-bottom: 140px;
}
.sidebar .showcase a {
  position: relative;
  top: 0;
  left: 30px;
}
.sidebar .showcase.app {
  background: #ffffff url(../images/iphone_app_short.jpg) no-repeat 60px 144px;
}
.sidebar .showcase.pdf {
  background: #ffffff url(../images/pdf_tall.jpg) no-repeat 60px 124px;
}
.city_front .main,
.city_front .sidebar {
  padding-top: 15px;
}
.city_front .social_media_thingy {
  height: 30px;
  width: 260px;
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 101;
}
@media only screen and (max-width: 1000px) {
  .city_front .social_media_thingy {
    display: none;
  }
}
.city_front .social_media_thingy .fb-like {
  position: absolute;
  left: 160px;
  top: 0;
}
.tagline {
  text-shadow: 0px 0px 30px rgba(100, 100, 100, 0.5);
  height: 250px;
  font-size: 90px;
  line-height: 80px;
  padding: 15px 0 0 0;
  color: #ffffff;
  margin-bottom: 30px;
}
.tagline em {
  font-weight: 600;
}
.tagline .welivehere {
  font-size: 40px;
  position: absolute;
  top: 80px;
}
.tagline .numbers {
  position: absolute;
  bottom: 15px;
  width: 100%;
  font-size: 40px;
  padding: 0;
  line-height: 52px;
}
.tagline .numbers span {
  display: block;
  width: 33.3%;
  float: left;
  text-align: left;
  white-space: nowrap;
}
.tagline .numbers span + span {
  text-align: center;
}
.tagline .numbers span:last-child {
  text-align: right;
}
@media only screen and (max-width: 940px) {
  .tagline {
    font-size: 60px;
  }
  .tagline .welivehere {
    top: 60px;
  }
  .tagline .numbers span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 820px) and (min-width: 700px) {
  .tagline .numbers span {
    font-size: 30px;
    text-align: center;
    overflow: visible;
  }
  .tagline .numbers span:last-child {
    text-align: center;
  }
  .tagline .numbers span em {
    font-size: 30px;
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 700px) {
  .tagline {
    font-size: 90px;
    height: 200px;
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
  }
  .tagline .welivehere {
    top: 60px;
  }
  .tagline .numbers span {
    font-size: 40px;
  }
}
@media only screen and (max-width: 570px) {
  .tagline {
    font-size: 70px;
    height: 180px;
    padding: 0;
  }
  .tagline .welivehere {
    top: 50px;
  }
  .tagline .numbers {
    bottom: 0;
  }
  .tagline .numbers span {
    font-size: 30px;
  }
}
@media only screen and (max-width: 420px) {
  .tagline {
    font-size: 50px;
    height: 160px;
    padding: 0;
    margin-bottom: 15px;
    margin-top: -30px;
  }
  .tagline .welivehere {
    top: 40px;
  }
  .tagline .numbers {
    bottom: 0;
  }
  .tagline .numbers span {
    font-size: 20px;
  }
}
.city_front .content_columns .box {
  margin-bottom: 0;
}
.content_columns {
  overflow: hidden;
  margin-bottom: 30px;
}
.content_columns .box {
  border-left: 0;
  width: 47%;
  float: left;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.content_columns .box + .box {
  float: right;
  margin: 0;
}
.content_columns .box h3 {
  background: none;
  padding-top: 15px;
  padding-left: 30px;
  text-align: left;
}
.content_columns .box p {
  padding: 0 3px 18px 3px;
}
.content_columns .box p.more {
  padding: 0 15px 18px 30px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.content_columns .box .list img {
  margin-right: 15px;
}
@media only screen and (max-width: 1000px) {
  .content_columns .box.places_reviews p strong {
    padding-right: 15px;
  }
  .content_columns .user_stars {
    display: none;
  }
}
@media only screen and (max-width: 570px) {
  .content_columns .box {
    width: 49%;
  }
}
@media only screen and (max-width: 480px) {
  .content_columns .box {
    width: 100%;
    clear: both;
    margin-bottom: 30px;
  }
}
.flexslider {
  clear: both;
  padding: 15px;
  margin: 30px 0;
  background: #ffffff;
}
.flexslider li a {
  display: block;
  height: 320px;
  overflow: hidden;
}
@media only screen and (max-width: 500px) {
  .flexslider li a {
    height: 200px;
  }
}
.flexslider li a:hover img {
  opacity: 0.8;
}
.flexslider li a span {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding: 5px 10px 5px 0;
  color: #222222;
  background: #ffffff;
  position: absolute;
  bottom: 15px;
  left: 0;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.flexslider .flex-control-nav {
  position: absolute;
  bottom: 30px;
  right: 30px;
  text-align: center;
  height: 15px;
}
.banner_main {
  display: block;
  padding: 0;
  margin-bottom: 15px;
  height: 250px;
  text-align: center;
}
.city_front .banner_main {
  margin-bottom: 30px;
  text-align: center;
}
.city_front .nano {
  margin-bottom: 30px;
}
.city_front .box {
  margin-bottom: 30px;
}
.main {
  margin-right: -330px;
  margin-bottom: 30px;
  width: 100%;
  float: left;
  padding-right: 330px;
}
@media only screen and (max-width: 700px) {
  .main {
    clear: both;
    margin-right: 0;
    padding-right: 0;
  }
}
.main_box {
  background-color: #ffffff;
  padding-bottom: 30px;
  *zoom: 1;
}
.main_box:before,
.main_box:after {
  content: "";
  display: table;
}
.main_box:after {
  clear: both;
}
.sidebar {
  float: right;
  width: 300px;
}
@media only screen and (max-width: 700px) {
  .sidebar {
    float: none;
    clear: both;
    width: 100%;
  }
}
.ie7 .main {
  width: auto;
  margin: 0;
  float: none;
  padding: 0;
}
.ie7 .main .main_box {
  margin-right: 330px;
}
.ie7 .sidebar {
  width: 300px;
  float: none;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
}
div.map_nav_top {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  min-width: 300px;
}
@media only screen and (max-width: 1000px) {
  div.map_nav_top {
    width: 95%;
  }
}
div.map_nav_top a {
  position: absolute;
  top: 15px;
  display: none;
}
div.map_nav_top a span {
  display: block;
  float: right;
  height: 25px;
  width: 25px;
  background-image: url(../images/sprite.png);
}
div.map_nav_top a.close_map {
  right: 0;
  width: 30px;
  /*
			&.back_link {
				width: 300px;
				position: absolute;
				top:0;
				left: 0;
				padding: 0 10px 0 37px;
				margin-top: @unit/2;
				font-size: 16px;
				.font-bold;
				cursor: pointer;
				line-height: @unit;
				color: @link-color;
				line-height: @unit;
				font-size: 16px;
				background: @box-color url('../images/sprite.png') no-repeat -328px -190px;
				
				.ellipsis;
				
				&:hover {
					color: @link-color-hover;
					}
				}
			*/
}
div.map_nav_top a.close_map span {
  background-position: -36px -186px;
}
div.map_nav_top a.share_map {
  right: 145px;
}
div.map_nav_top a.share_map span {
  background-position: -36px -186px;
}
div.find_on_map {
  display: none;
  position: absolute;
  top: 0;
  right: 45px;
  background: #ffffff;
  margin-top: 15px;
  width: 230px;
}
div.find_on_map .find_on_map_options {
  display: none;
  padding-top: 15px;
  padding-bottom: 15px;
}
div.find_on_map h5 {
  line-height: 30px;
  font-size: 16px;
  padding: 0 0 0 10px;
  cursor: pointer;
  transition: padding 0.3s;
  -moz-transition: padding 0.3s;
  -webkit-transition: padding 0.3s;
  -o-transition: padding 0.3s;
}
div.find_on_map h5 i {
  float: right;
  display: block;
  height: 30px;
  width: 30px;
  background-color: #3aa7d0;
  background-image: url('../images/sprite.png');
  background-position: -40px -267px;
  border-bottom: solid 2px #238ebf;
  transition: top 0.3s;
  -moz-transition: top 0.3s;
  -webkit-transition: top 0.3s;
  -o-transition: top 0.3s;
}
div.find_on_map h5.open {
  padding: 15px 0 0 30px;
}
div.find_on_map h5.open i {
  background-position: -70px -267px;
  top: -15px;
}
div.find_on_map h5:hover i {
  background-color: #4fc1ec;
}
div.find_on_map h6 {
  line-height: 30px;
  font-size: 16px;
  padding: 0 0 6px 30px;
}
div.find_on_map .browse_map {
  padding-bottom: 5px;
}
div.find_on_map .inline_search {
  padding-bottom: 15px;
}
div.find_on_map .browse_map_select {
  padding-top: 15px;
}
#map_canvas div {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.infobox {
  width: 250px;
  padding-right: 15px;
}
.infobox img {
  float: left;
}
.infobox span {
  width: 160px;
  float: right;
  clear: right;
}
.infobox span.user_stars {
  float: left;
  margin-left: 15px;
}
h1 {
  font-size: 30px;
  padding: 30px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.show_place h1 {
  padding: 30px 180px 30px 30px;
}
@media only screen and (max-width: 480px) {
  .show_place h1 {
    padding: 30px;
  }
}
.place_list h1 {
  padding: 30px 140px 30px 30px;
}
@media only screen and (max-width: 480px) {
  .place_list h1 {
    padding: 30px;
  }
}
.main h3 {
  background-image: url(../images/sprite.png);
  background-position: 0 -134px;
  background-repeat: repeat-x;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 30px;
  clear: both;
  width: 100%;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 10px;
}
@media only screen and (max-width: 500px) {
  .main h3 {
    font-size: 16px;
  }
}
.main h3 span {
  background-color: #ffffff;
  padding: 0 30px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
h2 {
  font-size: 18px;
  padding: 15px 30px;
  clear: both;
}
hr {
  margin: 0 30px;
  height: 1px;
  border: 0;
  background: #222222;
}
.main p {
  padding: 0 30px 15px 30px;
}
/* Avatar positioning */
div.avatar {
  width: 45px;
  height: 45px;
  overflow: hidden;
  float: left;
  margin-left: 30px;
}
div.avatar img {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 0;
  left: 0;
  /*
		// MAKE IT ROUND, MAAAAN!
		border-radius: 20px;
		height: 40px;
		width: 40px;
		*/
}
div.avatar span {
  display: block;
  width: 45px;
  height: 45px;
}
input[type="text"],
input[type="email"],
input[type="password"] {
  height: 26px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  padding: 5px;
  margin: 0;
  border: solid 1px #c4c4c4;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  background-color: #fafafa;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="password"]:hover {
  background-color: #fcfcfc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  background-color: #ffffff;
}
input[type="submit"] {
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
}
textarea {
  border: solid 1px #c4c4c4;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  background-color: #fafafa;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  padding: 5px;
  margin: 0;
  overflow: auto;
}
textarea:hover {
  background-color: #fcfcfc;
}
textarea:focus {
  background-color: #ffffff;
}
p.load_more {
  padding-top: 30px;
}
p.load_more .action {
  width: 100%;
  text-align: center;
}
.action.show_map_tr {
  /* top right of .mainbox | .action is here to override width from .action selector */
  position: absolute;
  top: 30px;
  right: 30px;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  width: auto;
}
@media only screen and (max-width: 480px) {
  .action.show_map_tr {
    display: none;
  }
}
.action.free {
  padding-right: 30px;
  padding-left: 30px;
  text-align: center;
  width: auto;
  display: inline-block;
}
input[type="file"] {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
}
.article h4 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-left: 30px;
}
.article ol li,
.article ul li {
  margin-bottom: 10px;
}
.main_box ol h4,
.main_box ul h4 {
  margin-left: -15px;
}
.main_box ol,
.main_box ul {
  margin-left: 45px;
  padding-right: 30px;
  padding-bottom: 15px;
}
.main_box ol ol,
.main_box ul ol,
.main_box ol ul,
.main_box ul ul {
  margin-left: 30px;
}
.main_box ol {
  list-style-type: decimal;
}
.main_box ol ul {
  list-style-type: lower-alpha;
}
.main_box ul {
  list-style-type: disc;
}
.place h1 {
  padding: 30px 190px 30px 30px;
}
@media only screen and (max-width: 500px) {
  .place h1 {
    padding: 30px 15px;
  }
}
span.main_rating {
  position: absolute;
  top: 30px;
  right: 30px;
  text-indent: -9999px;
  width: 144px;
  height: 25px;
  background: url(../images/sprite.png) -40px -25px;
}
span.main_rating.starcount9 {
  background-position: -40px 0;
}
span.main_rating.starcount8 {
  background-position: -69px -25px;
}
span.main_rating.starcount7 {
  background-position: -69px 0;
}
span.main_rating.starcount6 {
  background-position: -98px -25px;
}
span.main_rating.starcount5 {
  background-position: -98px 0;
}
span.main_rating.starcount4 {
  background-position: -127px -25px;
}
span.main_rating.starcount3 {
  background-position: -127px 0;
}
span.main_rating.starcount2 {
  background-position: -156px -25px;
}
span.main_rating.starcount1 {
  background-position: -156px 0;
}
span.main_rating.starcount0 {
  background-position: -185px -25px;
}
@media only screen and (max-width: 500px) {
  span.main_rating {
    display: none;
  }
}
/* Gallery in premium place page */
.gallery {
  height: 335px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
  background-position: 50% 50%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
}
@media only screen and (max-width: 500px) {
  .gallery {
    height: 200px;
    padding-top: 200px;
    overflow: visible;
    padding-bottom: 120px;
  }
  .gallery h4 {
    display: none;
  }
}
.gallery h4 {
  position: absolute;
  right: 30px;
  bottom: 0;
  overflow: hidden;
  width: 140px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 15px;
  text-align: center;
  color: #3aa7d0;
  cursor: pointer;
  transition: bottom 0.3s;
  -moz-transition: bottom 0.3s;
  /* Firefox 4 */
  -webkit-transition: bottom 0.3s;
  /* Safari and Chrome */
  -o-transition: bottom 0.3s;
  /* Opera */
}
@media only screen and (max-width: 900px) {
  .gallery h4 {
    right: 15px;
  }
}
.gallery ul.photos {
  list-style-type: none;
  margin-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  position: absolute;
  right: 30px;
  overflow: hidden;
  width: 140px;
  background-color: rgba(255, 255, 255, 0.9);
  bottom: -360px;
  transition: bottom 0.3s;
  -moz-transition: bottom 0.3s;
  /* Firefox 4 */
  -webkit-transition: bottom 0.3s;
  /* Safari and Chrome */
  -o-transition: bottom 0.3s;
  /* Opera */
}
.gallery ul.photos li {
  height: 65px;
  margin: 15px 15px;
}
.gallery ul.photos li img {
  width: 110px;
  height: 65px;
  cursor: pointer;
}
.gallery ul.photos li img:hover {
  opacity: 0.6;
}
.gallery ul.photos li.selected {
  background: #fff;
}
.gallery ul.photos li.selected img {
  opacity: 0.3;
  border: solid 2px #ffffff;
}
@media only screen and (max-width: 900px) {
  .gallery ul.photos {
    right: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .gallery ul.photos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: #ffffff;
  }
  .gallery ul.photos li {
    float: left;
    width: 25%;
    margin: 0;
    padding: 3% 3% 2% 3%;
    height: auto;
  }
  .gallery ul.photos li img {
    width: 100%;
    height: auto;
  }
  .gallery ul.photos li.selected {
    border: 0;
  }
}
.gallery:hover h3 {
  bottom: -100px;
}
.gallery:hover ul.photos {
  bottom: 0;
}
/* Basic info - premium & basic */
.basic_info {
  padding: 0 30px 30px 30px;
  /*overflow: hidden;*/
}
.basic_info .photo {
  float: left;
  width: 100px;
  height: 100px;
  overflow: hidden;
}
.basic_info .photo img {
  width: 100%;
}
.basic_info dl {
  width: 100%;
  padding-left: 130px;
  padding-right: 150px;
}
.basic_info dl dt {
  float: left;
  width: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.basic_info dl dd {
  margin-left: 65px;
  /* Governs the gap between dd and dt */
}
.basic_info .voting {
	width: 105px;
	height: 105px;
	position: absolute;
	top: 60px;
	left: -50px;
	border-radius: 53px;
	cursor: pointer;
	font-size: 24px;
	line-height: 24px;
	padding-top: 10px;
	text-align: center;
	z-index: 1000;
}
.wroclaw .basic_info .voting {
	color: white;
}
#dialog {
	display: none;
	height: 200px;
	width: 600px;
	background: url('../images/tick.png') no-repeat 95% 90%;
}
.basic_info .voting .white {
	color: white;
	font-size: 33px;
	line-height: 30px;
}
@media only screen and (max-width: 500px) {
  .basic_info .voting {
	left: 0px;
  }
  #dialog {
	height: 400px;
	width: 400px;
  }
}
@media only screen and (max-width: 1000px) {
  .basic_info dl {
    padding-right: 0;
  }
}
.big_info .voting {
	width: 250px;
	height: 250px;
	border-radius: 125px;
	position: absolute;
	top: 100px;
	left: 100px;
	cursor: pointer;
	font-size: 60px;
	line-height: 60px;
	padding-top: 30px;
	text-align: center;
	z-index: 1000;
}
.big_info .voting .white {
	color: white;
	font-size: 65px;
	line-height: 60px;
}
.basic_info ul {
  width: 140px;
  position: absolute;
  top: 0;
  right: 30px;
  list-style-type: none;
  padding-right: 0;
  margin-left: 0;
  padding-bottom: 0;
}
.basic_info ul li {
  padding-bottom: 7.5px;
  margin: 0;
}
.basic_info ul li a,
.basic_info ul li span {
  width: 100%;
}
.basic_info ul li a.show_map,
.basic_info ul li span.show_map {
  background-image: url('../images/sprite.png');
  background-position: 112px -216px;
}
.basic_info ul li a.send_message,
.basic_info ul li span.send_message {
  background-image: url('../images/sprite.png');
  background-position: 112px -240px;
}
.basic_info ul li a.add_review,
.basic_info ul li span.add_review {
  background-image: url('../images/sprite.png');
  background-position: 112px -265px;
}
@media only screen and (max-width: 1000px) {
  .basic_info ul {
    position: static;
    padding-top: 30px;
    width: auto;
    overflow: hidden;
    clear: both;
  }
  .basic_info ul li {
    width: 140px;
    float: left;
    margin-right: 15px;
  }
}
.ie7 .basic_info {
  overflow: hidden;
}
.ie7 .basic_info dl {
  float: left;
  padding-right: 0;
  padding-left: 30px;
  width: 340px;
}
.reservation_button_container {
  padding: 0 30px;
  margin-top: -10px;
  margin-bottom: 30px;
}
.reservation_button_container .reservation_button {
  margin: 0 auto;
  text-align: center;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  background-color: #ff6633;
  border-color: #e27043;
}
.reservation_button_container .reservation_button:hover {
  background-color: #ff7c48;
}
.place_video {
  padding-bottom: 15px;
}
.place_video h3 {
  margin-bottom: 15px;
}
.place_video iframe {
  width: 100%;
  padding: 0 30px;
  height: 310px;
}
@media only screen and (max-width: 1000px) {
  .place_video iframe {
    height: 250px;
  }
}
@media only screen and (max-width: 400px) {
  .place_video iframe {
    height: 150px;
  }
}
/* "Check out these similar…" ad on free listings
*/
.check_out_these a span.user_stars {
  display: inline-block;
}
.main p.check_out_places {
  text-align: center;
  clear: both;
}
.main p.check_out_places i {
  display: inline-block;
  background: url('../images/small_icons.png') no-repeat -14px 0;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  top: 3px;
}
/* Status Place Closed
*/
span.closed {
  color: #d65210;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
p.closed {
  background: rgba(255, 0, 0, 0.2) url(../images/closed.png) no-repeat 20px 18px;
  padding: 18px 15px 18px 110px;
  line-height: 18px;
  margin: 0 30px 30px 30px;
}
p.inactive {
  background: #ddd;
  padding: 200px 15px 200px 30px;
  line-height: 18px;
  margin: 0 30px 30px 30px;
  text-align: center;
  color: #666;
}
/* Promo box above place
*/
p.promo_box {
  background-color: #FFF4BB;
  border: solid 1px #F8A902;
  line-height: 30px;
  padding: 30px;
  margin-bottom: 15px;
}
p.promo_box i {
  border: solid 10px #FFF4BB;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  background: url('../images/sprite.png') no-repeat -108px -115px;
  width: 29px;
  height: 28px;
}
/* Editor's review
 */
p.signature {
  padding: 0 30px 30px 90px;
}
a.author_link,
a.natural {
  color: #222222;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
/* Share this page - social media buttons on everything exept premium
 */
div.share_page {
  margin: 30px;
  padding: 30px;
  background: #EBF9FF;
  vertical-align: top;
  clear: both;
}
@media only screen and (max-width: 400px) {
  div.share_page {
    line-height: 30px;
    margin: 15px;
    padding: 15px;
  }
}
#fb-root {
  display: none;
}
/* Share this page - social media buttons on PREMIUM
 */
.social_media_buttons {
  text-align: center;
  padding: 0 30px 30px 30px;
  padding-bottom: 30px;
  vertical-align: top;
}
a.fb_but {
  margin: 0 30px 0 0;
  color: #333;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 18px;
  height: 20px;
  padding: 0 5px;
  margin-bottom: 15px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  font-family: "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", "Segoe UI", Verdana, sans-serif;
  display: inline-block;
  vertical-align: top;
  background-color: #F8F8F8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#dedede));
  background-image: -moz-linear-gradient(top, #ffffff, #dedede);
  background-image: -o-linear-gradient(top, #ffffff, #dedede);
  background-image: -ms-linear-gradient(top, #ffffff, #dedede);
  background-image: linear-gradient(top, #ffffff, #dedede);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
  -moz-user-select: none;
  -webkit-user-select: none;
}
a.fb_but i {
  display: block;
  background: url('../images/sprite.png') no-repeat -80px -114px;
  width: 16px;
  height: 16px;
  float: left;
  margin-right: 5px;
  top: 0px;
}
a.fb_but:hover,
a.fb_but:active {
  border-color: #bbb;
  background-color: #F8F8F8;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#d0d0d0));
  background-image: -moz-linear-gradient(top, #fefefe, #dadada);
  background-image: -o-linear-gradient(top, #fefefe, #d0d0d0);
  background-image: -ms-linear-gradient(top, #fefefe, #d0d0d0);
  background-image: linear-gradient(top, #fefefe, #d0d0d0);
}
a.fb_but:active {
  border-color: #bbb;
  background-color: #EFEFEF;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.1);
}
/* User Reviews
 */
.user_reviews h3 {
  margin-bottom: 15px;
}
.user_reviews div.new_review {
  margin-bottom: 15px;
  min-height: 30px;
}
.user_reviews div.new_review .add_review {
  display: none;
  width: 90px;
  background-image: none;
  margin-right: -45px;
  text-align: center;
  padding: 0;
  z-index: 200;
  position: absolute;
  top: 0;
  right: 50%;
}
.user_reviews div.new_review .close_new_review {
  text-indent: -9999px;
  width: 30px;
  margin-right: 30px;
  background-color: #d65210;
  border-color: #ab0000;
  z-index: 200;
  background-image: url(../images/sprite.png);
  background-position: -31px -186px;
  position: absolute;
  left: auto;
  right: 0;
}
.user_reviews div.new_review .close_new_review:hover {
  background-color: #f8580a;
}
.addComm.clicked {
  display: none;
}
.addcomment_placeholder {
  margin-top: 15px;
  height: 30px;
  width: 150px;
  text-align: center;
  padding: 0;
  background-color: #3aa7d0;
  background-image: url(../images/white_loader.gif);
  background-repeat: no-repeat;
  background-position: 70px 7px;
  cursor: pointer;
  float: left;
  clear: both;
  top: -15px;
  border-bottom: solid 2px #238ebf;
}
.surname {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.new_comment,
form.new_comment {
  overflow: hidden;
  padding-right: 60px;
}
.new_comment .reply_fields,
form.new_comment .reply_fields {
  float: left;
  padding-left: 15px;
  width: 100%;
  margin-right: -100px;
  padding-right: 45px;
}
.new_comment label,
form.new_comment label,
.new_comment input,
form.new_comment input,
.new_comment ul.stars_rating,
form.new_comment ul.stars_rating,
.new_comment select,
form.new_comment select,
.new_comment .select_wrapper,
form.new_comment .select_wrapper,
.new_comment textarea,
form.new_comment textarea,
.new_comment .action,
form.new_comment .action {
  float: left;
  clear: both;
  top: -15px;
}
.new_comment label,
form.new_comment label {
  padding-bottom: 1px;
  padding-top: 15px;
}
.new_comment textarea,
form.new_comment textarea {
  width: 100%;
  max-width: 490px;
  min-height: 90px;
}
.new_comment .action,
form.new_comment .action {
  margin-top: 15px;
  width: 150px;
  text-align: center;
  padding: 0;
}
form.new_reply {
  display: block;
  background: #fafafa;
  padding-left: 60px;
  padding-top: 15px;
  padding-bottom: 30px;
}
form.new_reply input,
form.new_reply textarea {
  background-color: #ffffff;
}
label.error,
label.error strong {
  color: #d65210;
}
label.error:before {
  content: "";
  display: block;
  background: red;
  float: left;
  margin: 0;
  padding: 0;
  margin-right: 5px;
  background: url('../images/sprite.png') no-repeat -193px -95px;
  width: 15px;
  height: 15px;
  margin-top: 3px;
}
textarea.error,
input.error {
  border-color: #d65210;
  background-color: #ffffff;
}
.stars_wrapper ul.stars_rating {
  display: none;
}
.select_wrapper_disabled {
  display: block;
  clear: both;
  margin-bottom: 10px;
}
.select_wrapper {
  display: block;
  height: 25px;
  width: 170px;
  background: #fafafa;
}
.select_wrapper:hover {
  background-color: #fcfcfc;
}
.select_wrapper span {
  display: block;
  cursor: pointer;
  height: 25px;
  position: absolute;
}
.select_wrapper span.selector {
  background: url(../images/sprite.png) 0px -161px no-repeat;
  width: 26px;
  right: 0;
}
.select_wrapper span.selection {
  padding: 2px 20px 2px 4px;
  border: solid 1px #c4c4c4;
  width: 170px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.select_wrapper a.action {
  text-align: center;
}
.select_wrapper ul {
  width: 100%;
  height: 0px;
  background-color: #fafafa;
  padding: 0;
  border: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: 24px;
  left: 0;
}
.select_wrapper ul li {
  line-height: 25px;
  padding: 0 4px;
  cursor: pointer;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.select_wrapper ul li:hover {
  color: #000000;
  background-color: #ffffff;
}
.select_wrapper.open span.selector {
  background: url(../images/sprite.png) 0px -188px no-repeat;
}
.select_wrapper.open ul {
  overflow: auto;
  overflow-x: hidden;
  border: solid 1px #c4c4c4;
  height: auto;
  max-height: 195px;
  z-index: 201;
}
.select_wrapper.choose_country {
  width: 170px;
}
.select_wrapper.choose_country span.selection {
  width: 170px;
}
.select_wrapper.choose_country .action {
  width: 100px;
}
.select_wrapper.choose_country ul li[value="NULL"] {
  border-bottom: dashed 1px #CCC;
}
.select_wrapper.choose_country ul li[value="Afghanistan"] {
  border-top: dashed 1px #CCC;
}
ul.stars_rating {
  list-style-type: none;
  margin-left: 0;
  width: 145px;
  height: 25px;
  background: url(../images/sprite.png) -40px -25px;
}
ul.stars_rating.starcount4 {
  background-position: -69px -25px;
}
ul.stars_rating.starcount3 {
  background-position: -98px -25px;
}
ul.stars_rating.starcount2 {
  background-position: -127px -25px;
}
ul.stars_rating.starcount1 {
  background-position: -156px -25px;
}
ul.stars_rating.starcount0 {
  background-position: -185px -25px;
}
ul.stars_rating li {
  display: block;
  height: 25px;
  cursor: pointer;
  position: absolute;
  left: 0;
}
ul.stars_rating:hover {
  background-position: -185px -25px;
}
ul.stars_rating .star1 {
  width: 29px;
}
ul.stars_rating .star2 {
  width: 58px;
}
ul.stars_rating .star3 {
  width: 87px;
}
ul.stars_rating .star4 {
  width: 116px;
}
ul.stars_rating .star5 {
  width: 145px;
}
ul.stars_rating .star1:hover,
ul.stars_rating .star2:hover,
ul.stars_rating .star3:hover,
ul.stars_rating .star4:hover,
ul.stars_rating .star5:hover {
  background: url(../images/sprite.png) -40px -25px;
}
.ie7 ul.stars_rating {
  position: absolute;
  top: 0;
  right: 30px;
}
/* Single review */
.user_review {
  padding-bottom: 15px;
  padding-top: 15px;
}
.user_review p.signature {
  padding: 0 30px 7.5px 90px;
}
.user_review p {
  padding: 0 30px 7.5px 90px;
}
.user_review span.user_stars {
  float: right;
  position: relative;
  top: 2px;
}
.user_review span.timestamp {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.user_review a.reply_to_review {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.user_review:hover,
.user_review.open {
  background: #fafafa;
}
.user_review:hover span.user_stars,
.user_review.open span.user_stars {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.user_review:hover span.timestamp,
.user_review.open span.timestamp {
  position: static;
  overflow: visible;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  float: right;
  color: #a1a1a1;
}
.user_review:hover a.reply_to_review,
.user_review.open a.reply_to_review {
  position: static;
  overflow: visible;
  clip: auto;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  float: right;
  margin-left: 15px;
  margin-right: 4px;
}
.user_review:hover a.reply_to_review:before,
.user_review.open a.reply_to_review:before {
  content: "";
  display: block;
  width: 14px;
  height: 11px;
  float: right;
  position: relative;
  top: 4px;
  left: 4px;
  background: url(../images/sprite.png) -80px -90px;
}
.user_review.open a.reply_to_review {
  color: #666666;
}
.user_review.open a.reply_to_review:hover {
  color: #f8580a;
}
.user_review.open a.reply_to_review:before {
  background-position: -105px -113px;
}
.user_review.reply {
  padding-left: 60px;
}
span.user_stars {
  display: block;
  width: 86px;
  height: 15px;
  background: url(../images/sprite.png) -81px -51px;
}
span.user_stars.starcount9 {
  background-position: -81px -67px;
}
span.user_stars.starcount8 {
  background-position: -98px -51px;
}
span.user_stars.starcount7 {
  background-position: -98px -67px;
}
span.user_stars.starcount6 {
  background-position: -116px -51px;
}
span.user_stars.starcount5 {
  background-position: -116px -67px;
}
span.user_stars.starcount4 {
  background-position: -133px -51px;
}
span.user_stars.starcount3 {
  background-position: -133px -67px;
}
span.user_stars.starcount2 {
  background-position: -150px -51px;
}
span.user_stars.starcount1 {
  background-position: -150px -67px;
}
span.user_stars.starcount0 {
  background-position: -167px -51px;
}
div.avatar {
  background-image: url(../images/avatars.png);
}
div.avatar.custom {
  background-image: none;
}
.abg1 {
  background-position: 0 -45px;
}
.abg2 {
  background-position: -45px -45px;
}
.abg3 {
  background-position: -90px -45px;
}
.abg4 {
  background-position: -135px -45px;
}
.abg5 {
  background-position: -180px -45px;
}
.abg6 {
  background-position: -225px -45px;
}
.abg7 {
  background-position: -270px -45px;
}
.abg8 {
  background-position: -315px -45px;
}
.abg9 {
  background-position: -360px -45px;
}
.abg0 {
  background-position: -405px -45px;
}
div.avatar span {
  background-image: url(../images/avatars.png);
}
div.avatar span.custom {
  background-image: none;
}
.shape1 {
  background-position: 0 2px;
}
.shape2 {
  background-position: -45px 2px;
}
.shape3 {
  background-position: -90px 2px;
}
.shape4 {
  background-position: -135px 2px;
}
.shape5 {
  background-position: -180px 2px;
}
.shape6 {
  background-position: -225px 2px;
}
.shape7 {
  background-position: -270px 2px;
}
.shape8 {
  background-position: -315px 2px;
}
.shape9 {
  background-position: -360px 2px;
}
.shape0 {
  background-position: -405px 2px;
}
/*
Creative commons pictures, attribution:
http://www.flickr.com/photos/digitoxin/7555102852/
http://www.flickr.com/photos/brook/7555091364/
http://www.flickr.com/photos/brook/7555088164/
http://www.flickr.com/photos/antoineve/7555087410/
http://www.flickr.com/photos/jamestownboats/7555104122/

"Public domain"
http://www.publicdomainpictures.net/view-image.php?image=11205&picture=2011
http://www.publicdomainpictures.net/view-image.php?image=23652&picture=droga-kreta
http://www.publicdomainpictures.net/view-image.php?image=23452&picture=noc-w-szanghaju
http://www.publicdomainpictures.net/view-image.php?image=125&picture=ruch-w-nocy
http://www.publicdomainpictures.net/view-image.php?image=23451&picture=szanghaj
http://www.publicdomainpictures.net/view-image.php?image=23423&picture=great-ocean-road

On registration2:
http://www.flickr.com/photos/happy-batatinha/4585315281/ 

Inne (w psd)
http://www.publicdomainpictures.net/view-image.php?image=23497&picture=desert-sunrise-7-1-12e

*/
.browse_places {
  display: block;
  padding: 0 30px 30px 30px;
  text-align: center;
}
.browse_pl {
  display: inline-block;
  text-align: left;
  margin-right: 5px;
  margin-left: 5px;
}
.browse_pl .select_wrapper,
.browse_pl .select_wrapper span.selection {
  width: 130px;
}
@media only screen and (max-width: 1000px) {
  .browse_places {
    text-align: left;
    top: -15px;
  }
  .browse_places:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .browse_pl {
    float: left;
    margin: 15px 15px 0 0;
  }
}
.no_results {
  background-color: #f2f2f2;
  padding: 30px;
  text-align: center;
  display: block;
  width: 100%;
}
.show_map_places {
  position: absolute;
  top: 30px;
  right: 30px;
}
.action.show_map_places {
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
}
p.no_results_list {
  padding: 0 30px 22px 30px;
  color: #a1a1a1;
}
.single_image {
  width: 100%;
  text-align: center;
}
.single_image img {
  max-width: 100%;
}
img.float_left {
  float: left;
  margin: 15px 15px 15px 0;
  max-width: 100%;
}
img.float_right {
  float: right;
  margin: 15px 0 15px 15px;
  max-width: 100%;
}
img.float_right_top {
  float: right;
  margin: 0 0 15px 15px;
  max-width: 100%;
}
.main p.guide_side_pictures {
  padding: 15px;
  width: 180px;
  float: right;
  margin: 15px;
  background: #e6e6e6;
  z-index: 1;
}
.main p.guide_side_pictures img {
  max-width: 100%;
}
.main p.guide_side_pictures span {
  display: block;
  top: -4px;
  line-height: 18px;
  clear: both;
  margin: 0;
  padding: 10px 0;
}
.a_featured {
  width: 100%;
  padding: 0 30px 26px 30px;
  /* It appears this is the sweet spot :P */
}
.a_featured a {
  max-height: 250px;
}
.a_featured div {
  width: 100%;
}
.a_random {
  width: 50%;
  float: left;
  padding: 0 15px 30px 30px;
}
.a_random div {
  width: 100%;
}
.a_random a {
  max-height: 180px;
}
.a_random + .a_random {
  padding: 0 30px 30px 15px;
}
.a_featured,
.a_random {
  overflow: hidden;
}
.a_featured a,
.a_random a {
  overflow: hidden;
  display: block;
}
.a_featured a:hover img,
.a_random a:hover img {
  opacity: 0.8;
}
.a_featured div,
.a_random div {
  position: absolute;
  right: 0;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.7);
  color: #fafafa;
}
.a_featured img,
.a_random img {
  width: 100%;
  height: auto;
}
.a_featured h4,
.a_random h4 {
  /*
		font-size: 18px;
		line-height: 30px;
		padding: @unit/2;
		.ellipsis;
		*/
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  padding: 5px 10px 5px 0;
  color: #222222;
  background: #ffffff;
  position: absolute;
  bottom: 15px;
  left: 0;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.a_featured p,
.a_random p {
  padding: 0 15px 15px 15px;
}
@media only screen and (max-width: 1000px) {
  .a_featured div,
  .a_random div {
    width: 100%;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    bottom: 0;
    right: 0;
  }
  .a_featured p,
  .a_random p {
    display: none;
  }
}
p#browse_by {
  overflow: hidden;
  padding-bottom: 30px;
  line-height: 25px;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  p#browse_by {
    padding-bottom: 15px;
  }
}
p#browse_by a {
  display: inline-block;
  margin-right: 1px;
  padding: 0 15px 0 5px;
  background: #3aa7d0;
  color: #fff;
  /*
		&.random {
			background: @box-color;
			color: @link-color;
			
			&:hover {
				color: @link-color-hover;
				}
			}
		*/
}
@media only screen and (max-width: 500px) {
  p#browse_by a {
    margin-bottom: 10px;
  }
}
p#browse_by a:hover {
  background-color: #4fc1ec;
}
p#browse_by a.selected {
  background-color: #666666;
}
p#browse_by a i {
  display: block;
  width: 20px;
  height: 20px;
  float: left;
  top: 2px;
  margin-right: 5px;
  background-image: url('../images/sprite.png');
}
p#browse_by a.popular i {
  background-position: -129px -90px;
}
p#browse_by a.new i {
  background-position: -170px -90px;
}
p#browse_by a.category i {
  background-position: -150px -90px;
}
p#browse_by a.random i {
  background-position: -107px -90px;
}
.widget {
  margin-top: 30px;
  padding: 15px 30px 15px 70px;
  background-color: #fff;
}
.widget img {
  position: absolute;
  top: -8px;
  left: 6px;
}
.wide_map_image {
  width: 100%;
  overflow: hidden;
  display: block;
  text-align: center;
}
.wide_map_image img {
  left: -305px;
  margin-left: 50%;
}
form.browse_map div.select_wrapper {
  float: left;
  clear: none;
  margin-right: 30px;
}
form.inline_search {
  padding: 0 30px;
  overflow: hidden;
}
form.inline_search input {
  float: left;
}
form.inline_search input[type="submit"] {
  position: absolute;
  right: 33px;
  top: 1px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  text-indent: -999em;
  outline: none;
  padding: 0;
  margin: 0;
  border: 0;
  overflow: hidden;
  background: url(../images/sprite.png) -1px -1px;
}
form.inline_search input[type="submit"]:hover {
  background-position: -1px -26px;
}
.find_on_map_options .inline_search input[type="text"] {
  width: 170px;
}
.listing.l_guide {
  padding-bottom: 15px;
}
.l_guide h4 a i,
.guide_menu i {
  display: block;
  width: 18px;
  line-height: 18px;
  text-align: center;
  float: left;
  border-radius: 9px;
  margin-right: 5px;
  background: #222222;
  color: #fff;
}
.l_guide h4 a a i,
.guide_menu a i {
  background: #3aa7d0;
  color: #fff;
}
.l_guide h4 a a:hover i,
.guide_menu a:hover i {
  background: #4fc1ec;
}
.l_guide h4 a.selected,
.guide_menu.selected {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.guide_menu i {
  margin-bottom: 5px;
}
.l_guide h4 a i {
  background: #3aa7d0;
}
ul.guide_menu {
  list-style-type: none;
  overflow: hidden;
  padding: 0 30px 30px 30px;
  margin: 0;
}
ul.guide_menu li {
  width: 33%;
  float: left;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1000px) {
  ul.guide_menu li {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  ul.guide_menu li {
    width: 100%;
  }
}
.photos_wall {
  margin-left: 30px;
  *zoom: 1;
}
.photos_wall:before,
.photos_wall:after {
  content: "";
  display: table;
}
.photos_wall:after {
  clear: both;
}
.photos_wall a {
  display: block;
  width: 208px;
  padding: 0 5px 0px 0;
  float: left;
}
.photos_wall a img {
  width: 100%;
}
.photos_wall a:hover img {
  opacity: 0.8;
}
.show_map_photos {
  position: absolute;
  top: 30px;
  right: 30px;
}
.action.show_map_photos {
  width: 156px;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
}
.action.eat_a_meal {
  width: 156px;
  padding-right: 5px;
  padding-left: 5px;
  text-align: center;
}

.partner_logos p {
  width: 220px;
  float: left;
  text-align: center;
  height: 160px;
}
.forum_message p {
  padding: 0 0 10px 0;
}
.message_title a {
  font-size: 18px;
}
.forum_reply {
  margin-left: 70px;
}
.forum_reply .bubble {
  margin-bottom: 20px;
}
.bubble {
  margin: 0 30px 40px 100px;
  padding: 12px 12px 0px 12px;
  border: solid 1px #e8e8e8;
  border-radius: 3px;
  background-color: #fcfcfc;
}
.bubble.replycount0 {
  margin-bottom: 20px;
}
.bubble.replycount0 .bubble_re {
  display: none;
}
.bubble_tip {
  background: url(../images/bubble_tip.png) no-repeat;
  display: block;
  width: 19px;
  height: 17px;
  position: absolute;
  top: 20px;
  left: -19px;
}
.bubble_re {
  height: 8px;
  border-style: solid;
  border-width: 0 1px 1px 1px;
  border-radius: 0 0 3px 3px;
  position: absolute;
  left: 0;
}
.bubble_re1 {
  bottom: -9px;
  background: #f8f8f8;
  border-color: #e1e1e1;
  width: 98%;
  margin-left: 1%;
}
.bubble_re2 {
  bottom: -17px;
  background: #f2f2f2;
  border-color: #dddddd;
  width: 96%;
  margin-left: 2%;
}
.reply_left {
  padding-left: 8px;
}
.reply_left:before {
  content: "";
  display: block;
  width: 14px;
  height: 11px;
  float: left;
  position: relative;
  top: 4px;
  left: 4px;
  background: url(../images/sprite.png) -80px -90px;
}
.pdf_screen {
  display: block;
  width: 90%;
  margin: 0 auto -35px auto;
  max-width: 600px;
}
.forecast {
  padding: 0 30px 30px 30px;
  overflow: hidden;
}
.forecast div {
  float: left;
  width: 20%;
  text-align: center;
}
.forecast div h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.forecast div p {
  padding: 0;
}
.forecast div p span {
  display: block;
}
span.w_icon {
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 64px;
  background-image: url(../images/weather_sprite.png);
  background-position: 0 0;
}
span.w_icon.chancetstorms,
span.w_icon.tstorms {
  background-position: -180px -70px;
}
span.w_icon.fog,
span.w_icon.hazy {
  background-position: -240px 0px;
}
span.w_icon.chancesleet,
span.w_icon.sleet {
  background-position: -120px -60px;
}
span.w_icon.chancerain {
  background-position: -180px -7px;
}
span.w_icon.rain {
  background-position: 0px -70px;
}
span.w_icon.chancesnow span.w_icon.flurries,
span.w_icon.chanceflurries,
span.w_icon.snow {
  background-position: -60px -60px;
}
span.w_icon.clear,
span.w_icon.sunny,
span.w_icon.partlysunny,
span.w_icon.mostlysunny {
  background-position: -60px 0px;
}
span.w_icon.cloudy {
  background-position: 0px 0px;
}
span.w_icon.partlycloudy,
span.w_icon.mostlycloudy {
  background-position: -120px 0px;
}
.weather .load_more {
  clear: both;
}
.add_event_box {
  margin: 0 30px 30px 30px;
  border: solid 1px #90ceeb;
  border-radius: 10px;
  background: #f3fafc;
  padding: 15px;
  overflow: hidden;
}
.add_event_box span {
  padding: 5px;
  display: block;
  float: left;
}
.add_event_box .action {
  float: right;
}
@media only screen and (max-width: 480px) {
  .add_event_box span {
    display: none;
  }
  .add_event_box .action {
    float: left;
  }
}
.float_right {
  float: right;
}
.browse_events {
  display: block;
  padding: 0 30px 30px 30px;
  text-align: center;
}
.browse_ev_category,
.browse_ev_from,
.browse_ev_to {
  display: inline-block;
  text-align: left;
}
.browse_ev_category .select_wrapper,
.browse_ev_category .select_wrapper span.selection {
  width: 130px;
}
.browse_ev_from,
.browse_ev_to {
  margin-left: 15px;
}
.browse_ev_from .select_wrapper,
.browse_ev_to .select_wrapper,
.browse_ev_from .select_wrapper span.selection,
.browse_ev_to .select_wrapper span.selection {
  width: 110px;
  z-index: 201;
}
.browse_ev_from input[type="text"],
.browse_ev_to input[type="text"] {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90px;
  height: 25px;
  z-index: 200;
  background: url(../images/sprite.png) -344px -1px;
  padding-left: 25px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1000px) {
  .browse_events {
    text-align: left;
    top: -15px;
  }
  .browse_events:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .browse_ev_category,
  .browse_ev_from,
  .browse_ev_to {
    float: left;
    margin: 15px 15px 0 0;
  }
}
.event_info {
  overflow: hidden;
}
.event_info p {
  width: 100%;
  clear: left;
  float: left;
  margin: 0 0 15px 0;
  padding-bottom: 0;
}
.event_info p i {
  position: absolute;
  top: 0px;
  left: 30px;
  display: block;
  height: 15px;
  width: 15px;
  background-image: url(../images/sprite.png);
}
.event_info p span {
  padding: 0 20px;
}
.event_category i {
  background-position: -351px -54px;
}
.event_date i {
  background-position: -350px -3px;
}
.event_place i {
  background-position: -350px -30px;
}
i.external {
  display: inline-block;
  width: 20px;
  height: 12px;
  background: url('../images/sprite.png') -77px -90px;
}
.listing {
  overflow: hidden;
  padding: 0 30px 30px 30px;
  width: 100%;
  line-height: 18px;
  /*
	&.l_article a p {
		color: @text-color;
		&:hover {
			color: @link-color-hover;
			}
		}
		*/
}
.listing .img-DEACTIVATE {
  display: block;
  height: 75px;
  width: 75px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
}
.listing img {
  float: left;
  margin-right: 15px;
}
.listing h4 {
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.listing h4 a,
.listing a h4 {
  color: #222222;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.listing h4 a:hover,
.listing a h4:hover {
  color: #4fc1ec;
}
.listing .e_date,
.listing .e_address,
.listing .e_category {
  color: #666666;
  padding-left: 15px;
  background-image: url(../images/sprite.png);
}
.listing .e_date {
  background-position: -350px -3px;
}
.listing .e_address {
  float: right;
  background-position: -350px -30px;
  max-width: 180px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.listing .e_category {
  float: right;
  margin-left: 15px;
  background-position: -350px -55px;
}
.listing span.user_stars {
  float: left;
  padding-left: 15px;
}
.listing p {
  padding: 5px 0 0 0;
  clear: right;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.listing.l_article p {
  white-space: normal;
}
@media only screen and (max-width: 1000px) {
  .listing .e_address,
  .listing .e_category {
    display: none;
  }
  .listing span.user_stars {
    display: inline-block;
    float: none;
  }
}
.az {
  padding: 0 30px 15px 30px;
  /*
	h4 {
		.az_category {
			color: @text-color;
			
			&:hover {
				color: @link-color-hover;
				}
			}
		}
	*/
}
.az .az_category {
  float: right;
}
.az p,
.az h4 {
  padding: 0;
  height: 20px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.az span.user_stars {
  float: right;
  display: inline-block;
  margin-left: 15px;
}
.az .user_rating {
  display: inline;
  float: right;
  margin-left: 15px;
}
.sm_top {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 76px;
  height: 25px;
}
.adsense-top {
  margin: 0 30px 10px 30px;
  background: #f0f0f0;
  padding: 5px 5px 0 5px;
  clear: both;
}
.registration_teaser {
  margin-top: 15px;
  margin-bottom: 15px;
  overflow: hidden;
}
.registration_teaser span {
  font-size: 16px;
  float: left;
  margin-bottom: 10px;
  margin-right: 30px;
}
.registration_teaser span i {
  display: block;
  float: left;
  margin-right: 10px;
  background: url('../images/sprite.png') no-repeat -126px -112px;
  width: 23px;
  height: 17px;
}
.add_info label {
  font-size: 16px;
  padding-bottom: 8px;
  margin-top: 15px;
}
.choose_username,
.choose_user_country,
.upload_photo,
.about_yourself {
  padding-left: 56px;
  position: relative;
  *zoom: 1;
}
.choose_username:before,
.choose_user_country:before,
.upload_photo:before,
.about_yourself:before,
.choose_username:after,
.choose_user_country:after,
.upload_photo:after,
.about_yourself:after {
  content: "";
  display: table;
}
.choose_username:after,
.choose_user_country:after,
.upload_photo:after,
.about_yourself:after {
  clear: both;
}
.choose_username i,
.choose_user_country i,
.upload_photo i,
.about_yourself i {
  position: absolute;
  top: 18px;
  left: 0;
  width: 44px;
  height: 44px;
  background-image: url(../images/reg2_sprite.png);
}
.choose_username i {
  background-position: 0 -135px;
}
.choose_user_country i {
  background-position: 0 -45px;
}
.upload_photo i {
  background-position: 0 0;
}
.about_yourself i {
  background-position: 0 -90px;
}
.about_yourself {
  padding-bottom: 15px;
}
.user h1 {
  padding-left: 15px;
}
.user div.avatar {
  top: 18px;
  left: -8px;
}
.edit_link i {
  top: 5px;
  float: left;
  background: url('../images/sprite.png') no-repeat -351px -161px;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}
.cancel_save {
  margin-left: 15px;
}
p.inline_contact {
  overflow: hidden;
}
p.inline_contact .email,
p.inline_contact .phone {
  background: #F8F8F8;
  padding: 10px 10px 10px 10px;
  clear: left;
  float: left;
}
p.inline_contact .email i,
p.inline_contact .phone i {
  display: block;
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 10px;
  background-image: url(../images/sprite.png);
}
p.inline_contact .email i {
  background-position: -215px -90px;
}
p.inline_contact .phone i {
  background-position: -236px -90px;
}
p.inline_contact .email + .phone,
p.inline_contact .phone + .email {
  margin-top: 10px;
}
.top_content_form {
  padding-bottom: 60px;
  margin-bottom: 15px;
}
.top_content_form h1 {
  padding-bottom: 30px;
}
.top_content_form .form_container {
  width: 300px;
  background: #ecf8fd;
  margin-left: 30px;
  padding: 15px;
  border: solid 1px #222;
  padding-bottom: 20px;
}
@media only screen and (max-width: 360px) {
  .top_content_form .form_container {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 302px) {
  .top_content_form .form_container {
    border-left: 0;
    border-right: 0;
  }
}
.top_content_form .form_container h2 {
  text-align: center;
  padding-top: 5px;
  padding-bottom: 20px;
}
.top_content_form .form_container label {
  width: 90px;
  float: left;
  text-align: right;
  line-height: 26px;
  margin-bottom: 10px;
}
.top_content_form .form_container input[type=text],
.top_content_form .form_container textarea {
  width: 160px;
  float: right;
  margin-bottom: 10px;
  margin-right: 10px;
}
.top_content_form .form_container input[type=submit] {
  margin-left: 100px;
}
.top_content_form .form_container p {
  padding: 20px 0 0 0;
  text-align: center;
  color: #666666;
}
.top_content_form .message_sent {
  font-size: 18px;
  padding: 126px 50px;
}
.tours_form {
  background: #000000 url(../images/tours1.jpg) right bottom no-repeat;
}
.tours_form h1 {
  color: #fff;
}
.stag_form {
  background: #000000 url(../images/stag1.jpg) right bottom no-repeat;
}
.stag_form h1 {
  color: #fff;
}
.taxi_form {
  background: #161616 url(../images/taxi1.jpg) right bottom no-repeat;
}
.taxi_form h1 {
  color: #fff;
}
.eat_form {
  /*background: #161616 url(../images/cooking.jpg) right bottom no-repeat;*/
  height: 300px;
}
.eat_form h1 {
  color: #fff;
}
@media only screen and (max-width: 360px) {
  .taxi_form {
    background: #fff;
  }
  .taxi_form h1 {
    color: #222;
  }
}
.taxi_form .message_sent {
  padding: 163px 50px;
}
.pagination {
  text-align: center;
}
.pagination a.action {
  padding: 0 10px 0 8px;
  background: #fff;
  color: #3aa7d0;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-left: -3px;
}
.pagination a.action:hover {
  color: #fff;
  background: #4fc1ec;
}
.pagination .previous {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pagination .previous,
.pagination .next {
  border-bottom: 0;
}
.pagination a.action.selected {
  background-color: #666666;
  border-bottom: 0;
  color: #fff;
}
a.serendipity {
  padding-left: 15px;
  background-image: url(../images/sprite.png);
  background-position: -350px -30px;
}
a.homepage {
  padding-left: 15px;
  background-image: url(../images/sprite.png);
  background-position: -350px -101px;
}
form.inline {
  padding: 0 30px;
  *zoom: 1;
}
form.inline.modal {
  /* Modal, as in "forms that pop up in a lightbox" */
  padding: 0;
}
form.inline:before,
form.inline:after {
  content: "";
  display: table;
}
form.inline:after {
  clear: both;
}
form.inline label,
form.inline input,
form.inline .select_wrapper,
form.inline textarea,
form.inline p {
  float: left;
  clear: both;
}
form.inline input,
form.inline .select_wrapper,
form.inline textarea {
  margin-bottom: 15px;
}
form.inline .date {
  background-image: url(../images/sprite.png);
  background-position: -344px 0px;
  padding-left: 25px;
  width: 95px;
}
form.inline .special {
  width: 240px;
}
form.inline textarea {
  width: 240px;
}
form.inline input[type="radio"] {
  marign-right: 5px;
}
.datepicker {
  cursor: pointer;
}
form.inline.add_page input[type="text"] {
  width: 50%;
}
form.inline.add_page textarea {
  width: 100%;
  height: 400px;
}
form.inline.add_page div.e_dates {
  float: left;
  clear: left;
  margin-right: 15px;
}
form.inline.add_page div.e_dates a {
  display: block;
  padding-top: 22px;
}
form.inline.add_page div.e_dates a.open {
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  background: url('../images/sprite.png') no-repeat -102px -110px;
  width: 15px;
  height: 15px;
  text-indent: -9999px;
}
form.inline.add_page div.e_dates div {
  display: none;
}
form.inline.add_page div.e_dates + div.e_dates {
  clear: right;
}
form.inline.add_page input.date {
  width: 100px;
}
form.inline.add_page fieldset.where {
  clear: both;
  padding-left: 24px;
  padding-bottom: 15px;
}
form.inline.add_page fieldset.where label {
  left: -16px;
  cursor: pointer;
}
form.inline.add_page fieldset.where input[type="radio"] {
  float: left;
  left: -6px;
  cursor: pointer;
}
form.inline.add_page fieldset.where div.write_address {
  display: none;
}
form.inline.add_page h2 {
  padding: 15px 0;
}
form.add_page div.new_comment {
  /* The same code is in a div on "add place" page */
  display: block;
  clear: both;
  margin-left: -30px;
  padding-bottom: 15px;
}
form.add_page div.new_comment textarea {
  height: 120px;
}
form.add_page div.new_comment input,
form.add_page div.new_comment .select_wrapper,
form.add_page div.new_comment textarea {
  margin-bottom: 0;
}
.form_row {
  float: left;
  clear: both;
  width: 100%;
  overflow: hidden;
}
.add_show_on_map {
  line-height: 30px;
  margin-left: 10px;
  cursor: pointer;
}
form.inline.add_photo input[type="text"] {
  width: 50%;
}
form.inline.add_photo textarea {
  width: 100%;
  height: 70px;
}
.inline_clickable_map {
  clear: both;
  width: 100%;
}
.inline_clickable_map #map_add_from {
  width: 610px;
  height: 400px;
}
@media only screen and (max-width: 1000px) {
  .inline_clickable_map #map_add_from {
    width: 300px;
    height: 200px;
  }
}
.other_district_name {
  display: none;
}
/*
.browse_file {

	background: red;
	
	input {
		position: relative;
		text-align: right;
		-moz-opacity:0 ;
		opacity: 0;
		z-index: 2;
		}
	}
*/
#send_message {
  width: 500px;
}
@media only screen and (max-width: 600px) {
  #send_message {
    width: 240px;
  }
}
#send_message form.inline {
  padding: 0;
}
#send_message textarea {
  width: 100%;
  height: 130px;
}
#send_message small {
  color: #e28b8b;
}
.message_sent {
  font-size: 18px;
  padding: 160px;
}
.quick_contact_box .message_sent {
  padding: 120px 5px;
}
.qcb_expanding_message {
  height: 25px;
}
.txt_expanded {
  height: 60px;
}
.tick,
.tick strong {
  color: #57a700;
}
p.tick span {
  display: block;
  float: left;
  margin-right: 15px;
  width: 23px;
  height: 17px;
  background-image: url(../images/sprite.png);
  background-position: -126px -112px;
}
.cross,
.cross strong {
  color: #d65210;
}
p.cross span {
  display: block;
  float: left;
  margin-right: 15px;
  width: 18px;
  height: 17px;
  background-image: url(../images/sprite.png);
  background-position: -154px -112px;
}
.box {
  background-color: #ffffff;
  margin-bottom: 15px;
  border-width: 0 0 0 2px;
  border-style: solid;
}
.freebookers {
  margin-bottom: 15px;
}
.places_reviews p strong {
  padding-right: 90px;
}
.sidebar p,
.sidebar form {
  padding: 0 30px 15px 30px;
  display: block;
}
.sidebar h3 {
  padding: 15px 30px;
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.sidebar .essentials ul {
  margin: 0 30px;
  overflow: hidden;
  padding-bottom: 15px;
}
.sidebar .essentials ul li {
  float: left;
  width: 50%;
  margin-bottom: 7.5px;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.sidebar .essentials ul li:nth-child(even) {
  text-align: right;
}
.sidebar .essentials_list {
  padding: 15px 30px;
}
.sidebar .essentials_list p {
  overflow: hidden;
  padding: 0;
}
.sidebar .essentials_list a {
  margin-top: 3px;
  float: left;
  clear: both;
}
.sidebar .add {
  padding-bottom: 15px;
}
.sidebar .add p {
  line-height: 30px;
}
.sidebar .add p span {
  display: block;
  float: left;
  margin-right: 5px;
}
.sidebar .add p .action {
  float: right;
  /* Positions on the right */
  width: auto;
  padding-right: 10px;
}
.sidebar .add_color {
  padding-bottom: 15px;
  padding: 0;
}
.sidebar .add_color.box {
  border-color: #3388ae;
}
.sidebar .add_color a {
  color: #fff;
  display: block;
  background: #3aa7d0 url(../images/add_it_sprite.png) 215px -97px no-repeat;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  overflow: hidden;
  height: 60px;
}
.sidebar .add_color a p {
  padding: 0 30px 0 30px;
  font-size: 18px;
  line-height: 60px;
  transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.sidebar .add_color a .know {
  top: 0px;
}
.sidebar .add_color a .add_it {
  top: 0px;
}
.sidebar .add_color a:hover {
  background: #3aa7d0 url(../images/add_it_sprite.png) 215px -9px no-repeat;
}
.sidebar .add_color a:hover .know {
  top: -60px;
}
.sidebar .add_color a:hover .add_it {
  top: -60px;
}
.sidebar .similar,
.sidebar .events,
.sidebar .mini_photos,
.sidebar .mini_weather,
.sidebar .mini_guide,
.sidebar .offline,
.sidebar .latest_activity {
  padding-bottom: 15px;
}
.sidebar .reviews {
  padding-bottom: 30px;
}
.sidebar .reviews .list strong {
  padding-right: 90px;
}
.sidebar .twitter {
  padding: 15px;
}
.sidebar .facebook {
  overflow: hidden;
}
.sidebar .form form {
  *zoom: 1;
}
.sidebar .form form:before,
.sidebar .form form:after {
  content: "";
  display: table;
}
.sidebar .form form:after {
  clear: both;
}
.sidebar .form label,
.sidebar .form input,
.sidebar .form .select_wrapper,
.sidebar .form textarea {
  float: left;
  clear: both;
}
.sidebar .form input,
.sidebar .form .select_wrapper,
.sidebar .form textarea {
  margin-bottom: 15px;
}
.sidebar .form .date {
  background-image: url(../images/sprite.png);
  background-position: -344px 0px;
  padding-left: 25px;
  width: 95px;
}
.sidebar .form .special {
  width: 240px;
}
.sidebar .form textarea {
  width: 240px;
}
.sidebar .form .message_longer {
  height: 150px;
}
.sidebar .form .select_wrapper,
.sidebar .form input[type=text] {
  width: 100%;
}
.sidebar .form .select_wrapper .selection,
.sidebar .form input[type=text] .selection {
  width: 100%;
}
.sidebar .form .two-columns {
  float: left;
}
.sidebar .form .two-columns input[type=text],
.sidebar .form .two-columns select,
.sidebar .form .two-columns .select_wrapper,
.sidebar .form .two-columns .select_wrapper .selection,
.sidebar .form .two-columns .date {
  width: 109px;
}
.sidebar .form .second-column {
  margin-left: 20px;
}
.sidebar .quick_contact_box {
  min-height: 415px;
  border-width: 2px;
}
.sidebar .quick_contact_box h3 {
  margin-bottom: 15px;
  color: #fff;
}
.sidebar .quick_contact_box h3 img {
  top: -3px;
  margin-right: 11px;
  float: left;
}
.sidebar .quick_contact_box .departure {
  margin-left: 18px;
}
.sidebar .more_options {
  display: none;
}
.sidebar .bidroom {
  padding: 0 10px;
  margin: 0 0 15px 0;
}
.sidebar .ad {
  padding-bottom: 15px;
}
.sidebar .adsense {
  padding: 15px;
}
.sidebar .maxi_map {
  padding: 15px 0 0 0;
}
.sidebar .maxi_map p {
  padding: 0 15px 10px 15px;
  text-align: center;
}
.sidebar .maxi_map p + p {
  padding: 0 15px 15px 15px;
}
.sidebar .adsense_banner {
  border: 0;
  background: none;
  margin-bottom: 13px;
}
.small_banners {
  background-color: #ffffff;
  overflow: hidden;
  padding: 7px 0 0 7px;
}
.small_banners .firstcolumn,
.small_banners .secondcolumn {
  float: left;
  width: 50%;
}
.small_banners .firstcolumn a,
.small_banners .secondcolumn a {
  display: block;
}
.sidebar_flag_de_icon {
  position: absolute;
  bottom: 0;
  right: 10px;
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 64px;
  background-image: url(../images/sidebar_flag_de.png);
  background-position: 0 0;
}
.list {
  padding: 0 5px 0 5px;
  margin-top: -10px;
}
.list a {
  display: block;
  padding: 7.5px 30px;
}
.list a:hover {
  background: #4fc1ec;
  color: #fff;
}
.list a:hover span {
  color: #fff;
}
.list a:hover .cal_date {
  color: #222222;
}
.list a img {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 7.5px;
}
.list a strong,
.list a span {
  display: block;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.list a span {
  color: #222222;
  height: 20px;
}
.list a .user_stars {
  position: absolute;
  top: 8px;
  right: 30px;
  height: 15px;
}
.list_in_content .list {
  padding-left: 0;
  padding-right: 0;
}
.list_in_content a {
  padding-left: 30px;
  padding-right: 30px;
}
.list_in_content a span {
  white-space: normal;
}
.sidebar .list {
  padding: 7.5px 0;
}
.more,
.sidebar p.more {
  padding: 5px 30px 0 30px;
  text-align: left;
  clear: both;
}
/* Styling of tickers */
.list.ticker {
  height: 162px;
  overflow: hidden;
  padding: 0;
}
.list.ticker a {
  top: -54px;
}
.latest_activity .list.ticker {
  height: 216px;
}
/**/
.mini_photos .mini_gallery {
  padding: 0 15px 5px 30px;
  overflow: hidden;
}
.mini_photos .mini_gallery a:hover {
  opacity: 0.7;
}
.front .mini_photos .mini_gallery {
  padding: 0 35px;
}
.nano_photos {
  padding-top: 10px;
}
.nano_photos .mini_gallery {
  padding: 0 5px 5px 10px;
  overflow: hidden;
}
.nano_photos .mini_gallery a:hover {
  opacity: 0.7;
}
.mini_guide .number {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 7.5px;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  color: #fff;
}
.list a .cal_date,
.cal_date {
  display: block;
  background: #fff;
  border: solid 1px #c60000;
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
}
.list a .cal_date strong,
.cal_date strong {
  display: block;
  background: #c60000;
  color: #fff;
  line-height: 15px;
  font-size: 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.infobox .cal_date {
  float: left;
  width: 75px;
  height: 75px;
  font-size: 35px;
  color: #222;
  line-height: 43px;
}
.infobox .cal_date strong {
  line-height: 25px;
  font-size: 15px;
}
.mini_weather {
  padding: 0 30px;
}
.mini_weather div {
  float: left;
  width: 33%;
  text-align: center;
  margin-bottom: 15px;
}
.mini_weather div h4 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}
.mini_weather div p {
  padding: 0;
}
.mini_weather div p span {
  display: block;
}
.mini_weather .weather_info {
  line-height: 22px;
  text-align: center;
}
.nano {
  overflow: hidden;
}
.nano .w_icon {
  position: absolute;
  top: 10px;
  right: 15px;
}
.nano h3 {
  padding: 15px 15px 0 30px;
  text-align: left;
}
.nano p {
  padding: 5px 15px 15px 30px;
  text-align: left;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* Nano Map */
.nano_map {
  background: #ffffff url(../images/nano_map.jpg) no-repeat right;
}
/* Nano Newsletter */
.nano_newsletter {
  background: #ffffff url(../images/nano_newsletter.png) no-repeat 190px 7px;
}
.nano_newsletter form {
  padding: 15px 30px 0 30px;
  overflow: hidden;
}
.nano_newsletter .email {
  width: 66%;
  float: left;
  height: 30px;
}
.nano_newsletter .action.button {
  width: 33%;
  float: left;
}
.nano_newsletter p,
.nano_newsletter p strong {
  color: #888;
}
/* Nano Guide */
.nano .mini_guide {
  display: none;
  padding-bottom: 15px;
}
.nano_guide span.info {
  display: block;
  height: 59px;
  width: 59px;
  background-image: url(../images/nano_info.png);
  background-repeat: no-repeat;
  background-position: right top;
  position: absolute;
  top: 10px;
  right: 10px;
}
/* Nano app */
.nano_app {
  padding-top: 15px;
}
.nano_app .app_preview {
  display: block;
  width: 177px;
  height: 120px;
  margin: 10px auto 0 auto;
  background: url(../images/nano_app.jpg) no-repeat 0 0;
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  cursor: pointer;
}
.nano_app .app_preview.open {
  height: 393px;
}
/* Nano pdf */
.nano_pdf {
  padding-top: 15px;
}
.nano_pdf .pdf_preview {
  display: block;
  width: 231px;
  height: 120px;
  margin: 5px auto 0 auto;
  background: url(../images/nano_pdf.png) no-repeat 0 0;
}
/* Opening content below (eg. nano guide) */
.open_content_below span.minus {
  display: none;
}
.open_content_below.open span {
  display: none;
}
.open_content_below.open span.minus {
  display: inline;
}
/* List - app and pdf icons */
.list a.app i,
.list a.pdf i {
  display: block;
  float: left;
  width: 40px;
  height: 40px;
  border: solid 4px #ffffff;
  margin-right: 7.5px;
  background: url(../images/sprite.png);
}
.list a.app:hover i,
.list a.pdf:hover i {
  border-color: #4fc1ec;
}
.list a.pdf i {
  background-position: -289px -50px;
}
.list a.app i {
  background-position: -257px -50px;
}
/* Links module */
.sidebar .links {
  padding-bottom: 20px;
}
.sidebar .links p {
  padding-bottom: 10px;
}
.sidebar .links p a {
  margin-right: 8px;
}
footer {
  clear: both;
  float: left;
  width: 100%;
  color: #eee;
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
footer a,
footer a:link,
footer a:visited {
  color: #eee;
}
footer a:hover {
  color: #fff;
}
footer .wrap {
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 30px;
  overflow: hidden;
}
footer nav {
  float: left;
  padding-right: 120px;
}
footer h4 {
  font-size: 18px;
  padding-bottom: 15px;
}
footer ul li {
  padding-bottom: 1px;
}
footer ul.places a:nth-child(2) {
  color: #bbb;
  font-size: 12px;
}
footer ul .f_email,
footer ul .f_phone {
  float: left;
  clear: both;
  line-height: 25px;
}
footer ul .f_email i,
footer ul .f_phone i {
  display: block;
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 8px;
  margin-top: 4px;
  background-image: url(../images/sprite.png);
}
footer ul .f_phone {
  margin-top: 16px;
}
footer ul .f_email i {
  background-position: -215px -113px;
}
footer ul .f_phone i {
  background-position: -234px -112px;
}
footer div.random_image {
  position: absolute;
  width: 240px;
  height: 170px;
  top: 30px;
  right: 30px;
  overflow: hidden;
}
footer div.random_image img {
  width: auto;
  height: 100%;
}
footer .global_footer {
  width: 100%;
  line-height: 30px;
  color: #ddd;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  clear: both;
}
footer .global_footer .wrap {
  padding: 0;
  overflow: hidden;
}
footer .global_footer p {
  width: 50%;
  text-align: right;
  float: right;
  padding: 0 30px;
}
@media only screen and (max-width: 600px) {
  footer .global_footer p {
    width: 100%;
    float: none;
    text-align: left;
    padding: 0 15px;
  }
}
footer .global_footer .copyright {
  text-align: left;
  float: left;
}
@media only screen and (max-width: 1000px) {
  footer nav {
    width: 33%;
    padding-right: 30px;
  }
  footer .random_image {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  footer .wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  footer nav {
    float: left;
    clear: both;
    margin-bottom: 15px;
    width: 100%;
  }
  footer ul li {
    float: left;
    margin-right: 15px;
  }
}
.lt-ie9 footer {
  background: #333;
}
.lt-ie9 footer .wrap {
  background: #222;
}
.lt-ie9 footer .copyright {
  background: #111;
}
.front_page_longform footer {
  margin-top: 0;
}
.header_destinations_wrapper {
  height: 800px;
  width: 100%;
  background-image: url(../images/fp_bg2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.oldie .header_destinations_wrapper {
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.../../amsterdam/bg.jpg', sizingMethod='scale');
  ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../../amsterdam/bg.jpg', sizingMethod='scale')";
}
.destination_choice_wrapper {
  overflow: hidden;
  height: 730px;
}
.destination_choice_wrapper .fp_shadows {
  position: absolute;
  left: 50%;
  margin-left: -576px;
  top: -50px;
  z-index: 0;
}
.destination_choice {
  padding-top: 40px;
  width: 1000px;
  margin: 0 auto;
  padding-top: 60px;
  color: #fff;
}
.destination_choice .intro_text {
  display: block;
  font-size: 60px;
  padding-bottom: 30px;
}
.destination_choice .tagline_text {
  display: block;
  font-size: 40px;
  padding-bottom: 60px;
}
.destination_choice .fp_map {
  width: 550px;
  height: 450px;
  background: #fff;
  float: left;
  padding: 15px;
}
.destination_choice .fp_map #front_page_map_canvas {
  height: 100%;
  width: 100%;
}
.destination_choice .fp_destinations_list {
  width: 450px;
  height: 450px;
  float: left;
}
.destination_choice .fp_destinations_list ul li {
  float: left;
  width: 50%;
  font-size: 22px;
  padding-left: 30px;
  line-height: 32px;
  color: #fff;
}
.destination_choice .fp_destinations_list ul li a {
  color: #fff;
}
.destination_choice .fp_destinations_list ul li a:hover {
  border-bottom: solid 1px #fff;
}
.destination_choice .fp_destinations_list ul li i {
  width: 30px;
  height: 30px;
  display: block;
  background-color: blue;
  float: left;
  background: url(../images/fp_marker.png) 5px 5px no-repeat;
}
.front_longform_content {
  min-width: 1000px;
}
.fp_subheader {
  padding: 0;
  font-size: 50px;
  line-height: 120px;
  color: #fff;
  padding-top: 30px;
  z-index: 2;
}
.fp_description {
  padding: 0;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  z-index: 2;
}
.fp_wrap {
  height: 490px;
  width: 1000px;
  margin: 0 auto;
}
.fp_content {
  height: 490px;
  background: #565656 url(../images/fp_content_bg.jpg) center center no-repeat;
}
.fp_app {
  height: 490px;
  background: #76b1dd url(../images/fp_app_blueprint.jpg) center center no-repeat;
}
.fp_app .app_texture {
  height: 100%;
  overflow: hidden;
  width: 100%;
  background: url(../images/fp_app_texture.png) repeat;
}
.fp_app .fp_app_showcase {
  width: 419px;
  height: 532px;
  background: url(../images/fp_app_showcase.png) no-repeat;
  position: absolute;
  bottom: -64px;
  right: 0;
  z-index: 1;
}
.fp_apps {
  padding-top: 40px;
}
.fp_apps li {
  display: block;
  width: 100px;
  height: 100px;
  margin-right: 60px;
  float: left;
  background: #ffffff url(../images/fp_app_icons.png) 23px 16px no-repeat;
}
.fp_apps li.android {
  background-position: -67px 16px;
}
.fp_apps li.windowsmobile {
  background-position: -163px 16px;
}
.fp_apps li a,
.fp_apps li span {
  display: block;
  background: url(../images/fp_app_icons.png) 0 -85px no-repeat;
  width: 142px;
  height: 51px;
  position: absolute;
  bottom: -30px;
  left: -20px;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
}
.fp_apps li a {
  bottom: -35px;
}
.fp_apps li span {
  width: 145px;
  height: 41px;
  background-position: -145px -90px;
}
.fp_print {
  height: 490px;
  background: url(../images/fp_print_bg.jpg) repeat-x;
}
.fp_print .print_image {
  height: 490px;
  width: 100%;
  background: url(../images/fp_print_image.jpg) center center no-repeat;
}
.fp_print .print_content .fp_subheader,
.fp_print .print_content .fp_description {
  padding-left: 520px;
}
.fp_print .print_content .map {
  display: block;
  width: 424px;
  height: 474px;
  background: url(../images/fp_print_map.png) no-repeat;
  position: absolute;
  bottom: -45px;
  left: 0;
}
.fp_print .print_content .maps {
  display: block;
  width: 476px;
  height: 332px;
  background: url(../images/fp_print_maps.png) no-repeat;
  position: absolute;
  bottom: -115px;
  right: 10px;
}
.fp_pdfs {
  height: 490px;
  background: #eaf3fa url(../images/fp_pdfs_bg.jpg) center center no-repeat;
}
.fp_pdfs .pdfs_content .fp_subheader,
.fp_pdfs .pdfs_content .fp_description {
  padding-left: 520px;
}
.fp_pdfs .pdfs_content .guides {
  display: block;
  width: 380px;
  height: 320px;
  background: url(../images/fp_guides.png) no-repeat;
  position: absolute;
  top: 80px;
  left: 30px;
}
.fp_pdfs .pdfs_content .pdf_image {
  display: block;
  width: 450px;
  height: 175px;
  background: url(../images/fp_pdf_image.png) no-repeat;
  position: absolute;
  bottom: 0;
  right: 20px;
}
.fp_joinus {
  height: 490px;
  background: #ebebeb url(../images/fp_joinus_bg.jpg) center center repeat-x;
}
.fp_joinus .fp_subheader,
.fp_joinus .fp_description {
  color: #4e4e4e;
  padding-top: 0;
}
.fp_joinus .linkto {
  float: right;
  top: -50px;
  right: 120px;
}
.fp_joinus .linkto a {
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  width: 200px;
  z-index: 2;
}
.front_footer_wrapper {
  background-color: #efe;
  overflow: hidden;
  background-image: url(../images/fp_bg2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.one_last_thing {
  padding: 50px 0;
  display: none;
}
.front_page_footer {
  display: none;
}
.module {
  padding: 0 30px;
}
.module h2 {
  padding-left: 0;
  padding-top: 30px;
}
.module p {
  padding-left: 0;
}
.module textarea {
  width: 100%;
  height: 50px;
}
/* Full width page */
.full {
  padding-right: 0;
}
/* Pushing footer lower on pages like login or registration */
.f_push {
  margin-bottom: 20%;
}
/* Clearfix */
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*
jQuery UI CSS Framework 1.8.22

Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license

http://docs.jquery.com/UI/Theming/API
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  zoom: 1;
}
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*
jQuery UI CSS Framework 1.8.22

Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license

http://docs.jquery.com/UI/Theming/API

To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=&fwDefault=normal&fsDefault=13px&cornerRadius=0&bgColorHeader=fafafa&bgTextureHeader=01_flat.png&bgImgOpacityHeader=75&borderColorHeader=fafafa&fcHeader=333333&iconColorHeader=666666&bgColorContent=fafafa&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=c4c4c4&fcContent=222222&iconColorContent=c4c4c4&bgColorDefault=fafafa&bgTextureDefault=01_flat.png&bgImgOpacityDefault=75&borderColorDefault=c4c4c4&fcDefault=555555&iconColorDefault=666666&bgColorHover=ffffff&bgTextureHover=01_flat.png&bgImgOpacityHover=75&borderColorHover=4fc1ec&fcHover=4fc1ec&iconColorHover=4fc1ec&bgColorActive=4fc1ec&bgTextureActive=01_flat.png&bgImgOpacityActive=65&borderColorActive=4fc1ec&fcActive=ffffff&iconColorActive=454545&bgColorHighlight=ffffff&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=55&borderColorHighlight=f2b200&fcHighlight=666666&iconColorHighlight=ffffff&bgColorError=fef1ec&bgTextureError=01_flat.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */
/* Component containers
----------------------------------*/
.ui-widget .ui-widget {
  font-size: 1em;
}
.ui-widget-content {
  border: 1px solid #c4c4c4;
  background: #fafafa url(../images/jqueryui/ui-bg_flat_75_fafafa_40x100.png) 50% 50% repeat-x;
  color: #222222;
}
.ui-widget-content a {
  color: #222222;
}
.ui-widget-header {
  border: 1px solid #fafafa;
  background: #fafafa url(../images/jqueryui/ui-bg_flat_75_fafafa_40x100.png) 50% 50% repeat-x;
  color: #333333;
}
.ui-widget-header a {
  color: #333333;
}
/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid #c4c4c4;
  background: #fafafa url(../images/jqueryui/ui-bg_flat_75_fafafa_40x100.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #4fc1ec;
  background: #ffffff url(../images/jqueryui/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #4fc1ec;
}
.ui-state-hover a,
.ui-state-hover a:hover {
  color: #4fc1ec;
  text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #4fc1ec;
  background: #4fc1ec url(../images/jqueryui/ui-bg_flat_65_4fc1ec_40x100.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}
.ui-widget :active {
  outline: none;
}
/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #eee;
  background: #eee;
  color: #666666;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #666666;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(../images/jqueryui/ui-bg_flat_95_fef1ec_40x100.png) 50% 50% repeat-x;
  color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: alpha(opacity=70);
  font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: alpha(opacity=35);
  background-image: none;
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
  background-image: url(../images/jqueryui/ui-icons_c4c4c4_256x240.png);
}
.ui-widget-content .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_c4c4c4_256x240.png);
}
.ui-widget-header .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_666666_256x240.png);
}
.ui-state-default .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_666666_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_4fc1ec_256x240.png);
}
.ui-state-active .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_454545_256x240.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_ffffff_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(../images/jqueryui/ui-icons_cd0a0a_256x240.png);
}
/* positioning */
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-off {
  background-position: -96px -144px;
}
.ui-icon-radio-on {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  -moz-border-radius-topleft: 0;
  -webkit-border-top-left-radius: 0;
  -khtml-border-top-left-radius: 0;
  border-top-left-radius: 0;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  -moz-border-radius-topright: 0;
  -webkit-border-top-right-radius: 0;
  -khtml-border-top-right-radius: 0;
  border-top-right-radius: 0;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  -moz-border-radius-bottomleft: 0;
  -webkit-border-bottom-left-radius: 0;
  -khtml-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  -moz-border-radius-bottomright: 0;
  -webkit-border-bottom-right-radius: 0;
  -khtml-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
}
/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa url(../images/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: .30;
  filter: alpha(opacity=30);
}
.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(../images/jqueryui/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: .30;
  filter: alpha(opacity=30);
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
/*
jQuery UI Datepicker 1.8.22

Copyright 2012, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license

http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
  width: 17em;
  padding: 4px 6px;
  display: none;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  position: absolute;
  /*must have*/
  z-index: -1;
  /*must have*/
  filter: mask();
  /*must have*/
  top: -4px;
  /*must have*/
  left: -4px;
  /*must have*/
  width: 200px;
  /*must have*/
  height: 200px;
  /*must have*/
}
/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}
/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background-color: #eee;
  /* background-image: url(../images/stripe.png); 
	background-repeat: repeat; */
}
#colorbox {
  background: #fff;
}
#cboxContent {
  background: #fff;
  overflow: visible;
  padding: 30px;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #fff;
}
#cboxLoadingOverlay {
  background: #fff;
}
#cboxLoadingGraphic {
  background: url(../images/colorbox/loading.gif) no-repeat center center;
}
#cboxTitle {
  left: 10px;
  line-height: 30px;
}
#cboxCurrent {
  display: none;
  position: absolute;
  bottom: -25px;
  left: 58px;
  font-weight: bold;
  color: #fff;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  position: absolute;
  background: #fff;
  width: 23px;
  height: 23px;
  text-indent: -9999px;
  background-image: url(../images/sprite.png);
}
#cboxPrevious,
#cboxNext {
  z-index: 250;
  background-color: #3aa7d0;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
  color: #fff;
  line-height: 30px;
  border-bottom: solid 2px #238ebf;
}
#cboxPrevious:hover,
#cboxNext:hover {
  background-color: #4fc1ec;
}
#cboxPrevious {
  left: 0px;
  bottom: 0;
  background-position: -39px -215px;
}
#cboxNext {
  right: 0;
  bottom: 0;
  background-position: -39px -242px;
}
#cboxClose {
  top: 0;
  right: 0;
  height: 30px;
  width: 30px;
  cursor: pointer;
  color: white;
  line-height: 30px;
  padding-left: 7.5px;
  border-bottom: solid 2px #ab0000;
  float: right;
  background-color: #d65210;
  background-position: -31px -186px;
  z-index: 250;
}
#cboxClose:hover {
  background-color: #f8580a;
}
/*    FLEXSLIDER    */
/* FlexSlider Necessary Styles
*********************************/
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides > li:first-child {
  display: block;
  -webkit-backface-visibility: visible;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}
/* FlexSlider Default Theme
*********************************/
.flexslider {
  zoom: 1;
  overflow: hidden;
  position: relative;
}
.flex-viewport {
  max-height: 307px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
  overflow: hidden;
}
.loading .flex-viewport {
  max-height: 307px;
}
.flexslider .slides {
  zoom: 1;
}
.carousel li {
  margin-right: 5px;
}
/* Control Nav */
.flex-control-nav li {
  margin: 0 0 0 10px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 15px;
  height: 15px;
  display: block;
  background: #ffffff;
  cursor: pointer;
  text-indent: -9999px;
  border: solid 5px #ffffff;
}
.flex-control-paging li a:hover {
  background: #3aa7d0;
  border: solid 5px #ffffff;
}
.flex-control-paging li a.flex-active {
  background: #3aa7d0;
  border: solid 3px #ffffff;
  padding: 2px;
}
.flex-direction-nav {
  display: inline;
  float: left;
  position: absolute;
  top: 50%;
  background: green;
  width: 100%;
}
.flex-direction-nav li a {
  height: 80px;
  width: 40px;
  margin-top: -40px;
  position: absolute;
  background-color: #ffffff;
  background-image: url('../images/sprite.png');
  background-repeat: no-repeat;
  background-position: -95px -196px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 22px 13px;
  text-indent: 40px;
}
a.flex-prev {
  left: -15px;
}
a.flex-prev:hover {
  background-position: -95px -232px;
}
.flex-direction-nav li a.flex-next {
  right: 15px;
  background-position: -79px -196px;
  margin-left: -30px;
}
.flex-direction-nav li a.flex-next:hover {
  background-position: -79px -232px;
}

/* LOGIN PAGE STYLES */
.login-form {
	width: 300px;
	float: left;
}
.login-box-right {
	width: 300px;
	height: 160px;
	float: left;
	background-color: #D3F4FF;
	border: #222222;
	padding: 10px;
}
.clear {
	clear: both;
}
.hidden {
	display: none;
}
.infoBox {
	padding: 0px 30px;
}
.polish_opener {
	cursor: pointer;
}
.facebook_button {
	height: 200px;
	width: 300px;
	float: left;
	border-left: #222222 solid 1px;
	padding-top: 131px;
	padding-left: 10px;
	margin-top: 20px;
}
.facebook_button input.action {
	display: inline !important;
	background-image: url(../images/business/facebook.png);
	background-position: 0 0;
	height: 32px;
	padding-left: 35px;
	width: 169px;
}

/* INCLUDES FROM OTHER PLUGINS */
#hb247form {
  padding-left: 30px;
}
