/*
 * Varberg och Falkenbergs Fastihetsbyrå
 */


/* =============================================================================
   Boilerplate CSS normalization
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

html { font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
body { margin: 0; font-size: 13px; line-height: 1.231; }
body, button, input, select, textarea { font-family: sans-serif; color: #222; }

::-moz-selection { background: #9c0; color: #fff; text-shadow: none; }
::selection { background: #9c0; color: #fff; text-shadow: none; }

a { color: #00e; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

svg:not(:root) { overflow: hidden; }

figure { margin: 0; }

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; }

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

button, input { line-height: normal; }

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

textarea { overflow: auto; vertical-align: top; resize: vertical; }

input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }


/* =============================================================================
   Basics
   ========================================================================== */

html, body {
	height: 100%;
}

html {
	background: #000 url(../img/background.jpg) top center no-repeat;
	min-width: 360px;
}

a img {
	border: 0;
}

a {
	outline: 0;
}

.nobr {
	white-space: nowrap;
}


/* =============================================================================
   Header
   ========================================================================== */

header {
	height: 80px;

	-webkit-transition: height 150ms ease-out;
	-moz-transition: height 150ms ease-out;
	transition: height 150ms ease-out;

	vertical-align: top;
}

.js header {
	text-align: center;
}

.no-js header {
	text-align: right;
}

header nav {
	position: relative;
}

header h1 {
	display: block;
	margin-top: 0;
	line-height: 14px;
}

header h1 a {
	display: inline-block;

	background: rgba(0, 0, 0, 0.9) url("../img/logo.png") center center no-repeat;

	height: 88px;
	width: 300px;

	overflow: hidden;
	text-indent: -999em;
	text-align: left;

	margin-bottom: 8px;

	position: relative;
	z-index: 10;

	box-shadow: rgba(0,0,0,0.3) 0 2px 3px;
	border-radius: 0 0 3px 3px;

	-webkit-transition: width 150ms ease-out;
	-moz-transition: width 150ms ease-out;
	transition: width 150ms ease-out;
}

.no-js header h1 a {
	margin-right: 16px;
}

.ie7 header h1 a {
	zoom: 1;
	display: block;
}

.no-rgba header h1 a {
	background: #000 url("../img/logo.png") center center no-repeat;
}


/* =============================================================================
   Navigation
   ========================================================================== */

header {
	position: relative;
}

header nav {
	position: absolute;
	top: 25px;
	left: 0;
	right: 0;
}

.js header nav {
	position: absolute;
	top: 24px;
	width: 300px;
	margin: 0 auto;
}

.no-js header nav {
	text-align: left;
	width: auto;
}

header nav li {
	display: inline;
	margin: 0 3px;

	-webkit-transition: margin 150ms ease-out;
	-moz-transition: margin 150ms ease-out;
	transition: margin 150ms ease-out;
}

/*.oldie header nav li {
	margin: 0;
}*/

header nav li a {
	display: inline-block;

	color: #fff;
	text-decoration: none;
	font-size: 15px;

	padding: 2px 9px 5px;

	text-shadow: #000 0 2px 1px;
	border-radius: 3px;

	-webkit-transition-property: padding, font-size;
	-webkit-transition-duration: 150ms;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-property: padding, font-size;
	-moz-transition-duration: 150ms;
	-moz-transition-timing-function: ease-out;
	transition-property: padding, font-size;
	transition-duration: 150ms;
	transition-timing-function: ease-out;
}

header nav li.selected a, header nav li.selected a:active {
	color: #fff;
	background: #9c0;
	text-shadow: rgba(0,0,0,0.2) 0 -1px 0;

	box-shadow: #000 0 2px 1px;
}

	header nav li a:active {
		color: #ddd;
		background: #444;
		background: rgba(255,255,255,0.14);
		box-shadow: rgba(0,0,0,0.3) 0 2px 1px;
	}

header nav #nav_left,
header nav #nav_right {
	position: absolute;
	white-space: nowrap;
}

header nav #nav_left {
	text-align: right;
	left: -246px;

	-webkit-transition: left 150ms ease-out;
	-moz-transition: left 150ms ease-out;
	transition: left 150ms ease-out;
}
header nav #nav_right {
	text-align: left;
	right: -266px;

	-webkit-transition: right 150ms ease-out;
	-moz-transition: right 150ms ease-out;
	transition: right 150ms ease-out;
}

.ie8 header nav #nav_left {
	left: -240px;
}
.ie8 header nav #nav_right {
	right: -260px;
}

.ie7 header nav #nav_left {
	left: -256px;
}
.ie7 header nav #nav_right {
	right: -280px;
}

.submenu {
	margin: 8px 0 30px;
}

	.submenu ul {
		text-align: center;
		padding: 0;
	}

	.submenu li {
		display: inline;

		-webkit-transition: margin 150ms ease-out;
		-moz-transition: margin 150ms ease-out;
		transition: margin 150ms ease-out;
	}

	.submenu a {
		display: inline-block;

		color: #444;
		text-decoration: none;
		font-size: 15px;

		padding: 2px 9px 5px;
		border-radius: 3px;

		-webkit-transition-property: padding, font-size;
		-webkit-transition-duration: 150ms;
		-webkit-transition-timing-function: ease-out;
		-moz-transition-property: padding, font-size;
		-moz-transition-duration: 150ms;
		-moz-transition-timing-function: ease-out;
		transition-property: padding, font-size;
		transition-duration: 150ms;
		transition-timing-function: ease-out;
	}

	.submenu li.selected a {
		color: #fff;
		background: #aaa;

		text-shadow: #888 0 -1px 0;
	}

		.submenu a:active {
			color: #555;
			text-shadow: #fff 0 1px 0;
			background: #eee;
		}


/* =============================================================================
   Footer
   ========================================================================== */

footer {
	height: 56px;

	text-align: center;

	color: #fff;

	font-family: helvetica, arial, sans-serif;
	font-size: 11px;
	line-height: 18px;

	margin: 0 auto;
	padding: 16px 0;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer .email {
	float: left;
	text-align: left;

	padding-top: 3em;
}

footer a.email {
	color: #9c0;
	font-weight: bold;
	text-decoration: none;
}

footer .info {
	float: right;
	text-align: right;
}

footer.vcard .fn.org {
	font-weight: bold;
}

footer.vcard .country-name, footer.vcard .tel .type {
	display: none;
}

footer .fb-like {
	float: left;
}


/* =============================================================================
   Page
   ========================================================================== */

#container {
	margin: 0 auto;
	width: 86%;
	max-width: 1400px;
	min-height: 200px;
	position: relative;
	overflow: hidden;

	-webkit-transition: width 150ms ease-out;
	-moz-transition: width 150ms ease-out;
	transition: width 150ms ease-out;
}

#page {
	background: #fff;

	min-height: 420px;
	padding: 3% 4% 6%;
	margin: 0;

	position: relative;
	z-index: 5;

	overflow: hidden;

	border-radius: 4px;
}

#page.frontpage {
	display: none;
}

	.banner-image {
		position: relative;
		margin: 0 0 -1px 0;
		width: 100%;

		max-height: 572px;

		overflow: hidden;
	}

	.banner-image img {
		-webkit-user-select: none;
		-moz-user-select: none;
		user-select: none;
		-webkit-user-drag: none;
		-moz-user-drag: none;
		user-drag: none;

		-webkit-border-radius: 4px 4px 0 0;
		-moz-border-radius: 4px 4px 0 0;
		border-radius: 4px 4px 0 0;

		width: 100%;
	}

	.banner-image .content {
		position: absolute;
		top: 8%;
		left: 4.4%;

		color: #000;

		text-shadow: #fff 0 1px 2px, rgba(255,255,255, 0.6) 0 1px 0;

		max-width: 600px;
	}

	.banner-image h2 {
		margin: 0 0 0.5em;
		padding: 0;

		font-size: 22px;
		font-family: 'ff-tisa-web-pro-1', 'ff-tisa-web-pro-2', "adobe-text-pro-1", "adobe-text-pro-2", georgia, serif;
		font-weight: normal;
		line-height: 31px;
		text-align: left;
	}

	.banner-image .quick-nav select {
		display: inline-block;
	}

.text.narrow {
	width: 80%;
	max-width: 880px;
	margin: 0 auto;
}

.incoming {
	background: #fff;

	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-radius: 0 0 4px 4px;

	padding: 1em 0;

	position: relative;
}

.incoming h2 {
	margin: 0.6em 0 0 4.4%;
	font-size: 16px;
}

.incoming p {
	font-family: helvetica, arial, sans-serif;
}

.incoming .container {
	height: auto;
	margin: 0 4.4%;

	position: relative;
}

.incoming .container:before, .incoming .container:after { content: ""; display: table; }
.incoming .container:after { clear: both; }
.incoming .container { *zoom: 1; }

.incoming .page {
	width: 100%;
	position: relative;
}

	.incoming ul {
		padding: 0;
	}

	.incoming li,
	.incoming figure {
		display: inline;
		clear: none;
	}

	.incoming figure a {
		display: block;
		float: left;
		width: 23%;
		margin-right: 2.66%;

		color: #222;
		text-decoration: none;
	}

		.ie7 .incoming figure a {
			margin-right: 2.5%;
		}

	.incoming li.child_4 figure a {
		margin-right: 0;
	}

	.incoming figure a:active img {
		opacity: 0.75;
	}

	.incoming figure img {
		width: 100%;
	}

	.incoming h3 {
		margin-top: 9px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.incoming p.city {
		text-transform: uppercase;
		color: #999;
		font-weight: bold;
		font-size: 10px;
		line-height: 13px;
		margin: 0;
	}

	.incoming p.details {
		font-size: 12px;
		line-height: 17px;
		margin: 4px 0 0;
	}

		.incoming p.details .group {
			white-space: nowrap;
			margin-right: 5px;
		}

.incoming .control {
	display: block;
	margin-top: 10px;
	font-size: 11px;

	padding: 0 20px 0 20px;
	height: 17px;

	font-family: helvetica, arial, sans-serif;
	font-size: 10px;
}

.no-js .incoming .control {
	display: none;
}

.incoming .control a {
	text-indent: -999em;
	width: 24px;

	background-position: center center;
	background-repeat: no-repeat;

	-webkit-transition: background-color 150ms ease-out;
}

.incoming .control a:hover {
	background-color: #666;
}

.incoming .control a#newer_link {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;

	background-image: url(../img/arrow_gray_left.png);
}

.incoming .control a#older_link {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;

	background-image: url(../img/arrow_gray_right.png);
}

.error #page {
	text-align: center;
	min-height: 0;
	padding: 14% 4% 16%;

	background: #f5f5f5 url(../img/error_background.png) top left repeat-x;

	color: #555;
	text-shadow: #fff 0 1px 0;
}

	.error #page h2 {
		font-size: 32px;
	}


/* =============================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5 {
	font-family: helvetica, arial, sans-serif;
	margin-bottom: 0;
	padding-bottom: 0;
	margin-top: 8px;
}

h2 {	font-size: 40px;		}
h3 {	font-size: 16px;		}
h4 {	font-size: 13px;		}

p, li {
	font-family: 'ff-tisa-web-pro-1', 'ff-tisa-web-pro-2', "adobe-text-pro-1", "adobe-text-pro-2", georgia, serif;
	font-size: 14px;
	line-height: 20px;
}

p {
	margin: 0.7em 0;
}

.text ul {
	margin-top: 7px;
}

.text ul li {
	margin-bottom: 0.5em;
}

.text table {
	border: 0;
	border-spacing: 0;
}

	.text table tr td, .text table tr th {
		font-size: 15px;
		line-height: 20px;
		vertical-align: top;
		padding: 3px 10px 3px 0;
	}

	.text table tr th {
		text-align: left;
		font-weight: bold;
		font-family: helvetica, arial, sans-serif;
		font-size: 13px;
	}

.text .abt_people {
	margin-top: 24px;
	padding: 0;
	background: transparent;
}

	.text .abt_people .person {
		float: left;
		width: 49%;
		clear: none;
	}

		.text .abt_people .person img.portrait {
			float: left;
			margin: 0;

			height: 120px;
			width: 80px;

			-ms-interpolation-mode: bicubic;
		}

		.text .abt_people .person .details {
			margin-left: 94px;
		}

			.text .abt_people .person div.details p {
				margin: 0 !important;
				padding: 0 !important;
				font-family: helvetica, arial, sans-serif !important;
				font-size: 12px !important;
				line-height: 17px !important;
			}
			.text .abt_people .person div.details p.name {
				font-size: 15px !important;
				font-weight: bold;
				margin-bottom: 2px !important;
			}
			.text .abt_people .person div.details p.title {
				font-size: 11px !important;
				margin-bottom: 4px !important;
				text-transform: uppercase;
			}
			.text .abt_people .person div.details a {
				color: #000;
				text-decoration: none;
			}


/* =============================================================================
   Form Controls
   ========================================================================== */

form textarea {
	width: 98%;
}

.input {
	clear: both;
	vertical-align: middle;

	height: 30px;

	margin-top: 3px;
	padding-top: 3px;
	border-top: 1px solid #ccc;
}

.input label {
	display: block;
	float: left;
	width: 90px;

	padding: 7px 0 0 0;

	font-family: helvetica, arial, sans-serif;
	font-size: 12px;
}

.input input[type="text"], .input input[type="password"] {
	width: 400px;
}

.input select, .input input[type="checkbox"], .input input[type="radio"] {
	margin-top: 4px;
}

.input input[type="text"], .input input[type="password"] {
	margin-top: 3px;
}

input[type="text"], input[type="password"], textarea, select {
	border: 1px solid #999;
	border-top: 1px solid #737373;

	margin: 0;

	font-family: helvetica, arial, sans-serif;
	font-size: 13px;
	line-height: 18px;
}

input[type="text"], input[type="password"], textarea {
	padding: 2px 3px;
}

input[type="text"]:disabled, input[type="password"]:disabled, textarea:disabled, select:disabled {
	color: #999;
	border: 1px solid #ccc;
	border-top: 1px solid #aaa;
	background: #fcfcfc;
}

.input.text {
	margin-right: 0 !important;
}

.submit input[type=submit]
{
	font-size: 15px;
	float: right;
}

.sort_fields {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 12px;
	text-align: right;
}

	.sort_fields label, .sort_fields select {
		font-family: helvetica, arial, sans-serif;
		font-size: 10px;
	}


/* =============================================================================
   Object List
   ========================================================================== */

.object_list {
	margin: 0; /*margin: 24px 0 0 0;*/
	padding: 0;
	list-style: none;
}
.object_list:before, .object_list:after { content: ""; display: table; }
.object_list:after { clear: both; }
.object_list { *zoom: 1; }

	div.object_list {
		margin-top: 30px;
	}

	.object_list figure {
		float: left;
		width: 48%;
		margin-bottom: 3%;
	}

	.object_list figure:nth-child(odd) {
		margin-right: 4%;
	}

		.object_list figure > a {
			display: block;
			margin-bottom: 2px;
		}

	.object_list img.thumb {
		width: 100%;
		height: auto !important;

		-webkit-border-radius: 2px;
		-moz-border-radius: 2px;
		border-radius: 2px;

		display: block;
	}

	.object_list figcaption {
		margin: 10px 0;
	}

		.object_list figcaption h3 {
			font-size: 22px;
			line-height: 24px;
			padding: 0;
			margin: 0;
		}

			.object_list figcaption h3 a {
				color: #000;
				text-decoration: none;
			}

			.object_list figcaption h3 img.new {
				margin-left: 4px;
			}

			.object_list figcaption .new-badge, .object_list figcaption .bidding-badge {
				background: #9c0;
				color: #fff;
				margin-left: 4px;
				padding: 0 1px 1px;
				font-size: 11px;
				border: 1px solid #7DB100;
				text-shadow: #588600 0 1px 1px;

				-webkit-border-radius: 3px;
				-moz-border-radius: 3px;
				border-radius: 3px;

				position: relative;
				top: -3px;

				cursor: default;
				white-space: nowrap;
			}

		.object_list figcaption p {
			font-family: helvetica, arial, sans-serif !important;
			font-size: 11px !important;
			line-height: 16px !important;

			margin: 0.5em 0 !important;
		}

		.object_list figcaption p.city {
			text-transform: uppercase;
			color: #999;
			font-weight: bold;
			font-size: 10px !important;
			margin-top: 0 !important;
		}

		.object_list figcaption p.details {
			font-size: 12px !important;
		}

.sold-label {
	color: #9c0;

	font-style: italic;
	font-weight: bold;
	font-size: 11px;

	line-height: 13px;

	background: url(../img/sold.png) 0 4px no-repeat;
	padding-left: 8px;
}



hr {
	border: 0;
	border-top: 1px solid #ccc;
}

p.empty {
	color: #bbb;
	font-family: helvetica, arial, sans-serif !important;
	font-size: 19px !important;

	padding: 20% 0;
	text-align: center;
}


#sfd_frame {
	width: 100%;
	height: 440px;
	border: 0;
	margin: 5px 0 -60px -19px;
}

.tblObjlist td {
	font-family: helvetica, arial, sans-serif;
	font-size: 12px;
	line-height: 14px;
}

.tblObjlist .Brod {
	font-size: 11px;
}

.tblObjlist .UnderRub {
	display: none;
}

.tblObjlist, .tblObjlist table {
	border-spacing: 0;
	float: none;
}


/* =============================================================================
   Object Page
   ========================================================================== */

.tab_page {
	display: block;
}

.header h2 {
	font-size: 34px;
	margin: 0;
}

.header p.city {
	color: #666;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 12px !important;
	font-family: helvetica, arial, sans-serif !important;
	margin: 3px 0 0 0 !important;
}

#map_lookup_type, #map_location {
	display: none;
}

.object_menu_container {
	height: 36px;
	width: 109%;
	border-bottom: 1px solid #e5e5e5;
	margin: -1.3em -4.5% 1em -4.5%;

	-webkit-transition: margin 150ms ease-out;
	-moz-transition: margin 150ms ease-out;
	transition: margin 150ms ease-out;
}

.print {
	position: absolute;
	top: 32px;
	right: 4.5%;

	color: #000;

	font-family: helvetica, arial, sans-serif;
	font-size: 9px;
	font-weight: bold;
	text-decoration: none;

	background: #fff url(../img/print.png) 5px 3px no-repeat;

	border: 1px solid #ddd;
	padding: 3px 5px 3px 15px;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
	.print:active {
		color: #fff;
		background-color: #444;
		border: 1px solid #222;
		border-bottom: 1px solid #000;

		text-shadow: #111 0 1px;
	}

.object_menu {
	height: 26px;
	padding: 0;
	margin: 10px 4.5% 0 0;

	float: right;
}

	.object_menu li {
		list-style: none;
		display: block;
		margin: 0;
		float: left;
	}
		.object_menu li a {
			float: left;

			height: 22px;
			margin-right: 2px;
			padding: 3px 8px 0 8px;

			color: #222;
			text-decoration: none;
			font-family: helvetica, arial, sans-serif;
			font-size: 12px;
			font-weight: bold;

			background: url(../img/submenu_inactive.png) top left repeat-x;

			border-top: 1px solid #e5e5e5;
			border-left: 1px solid #cecece;
			border-right: 1px solid #cecece;

			-webkit-border-radius: 3px 3px 0 0;
			-moz-border-radius: 3px 3px 0 0;
			border-radius: 3px 3px 0 0;

			text-shadow: 0 1px 0 #fff;
		}
			.object_menu li a:active {
				color: #000;
				background: url(../img/submenu_inactive.png) bottom left repeat-x;
				border-top: 1px solid #aaa;
				border-left: 1px solid #bbb;
				border-right: 1px solid #bbb;
				border-bottom: 1px solid #ccc;
			}
		.object_menu li.active a {
			height: 23px;
			background: #fff;
			color: #000;

			cursor: default;
		}
			.object_menu li.active a:active {
				border-top: 1px solid #e5e5e5;
				border-left: 1px solid #cecece;
				border-right: 1px solid #cecece;
				border-bottom: 0;
			}
		.object_menu li.inactive a {
			color: #999;
			cursor: default;
		}
			.object_menu li.inactive a:active {
				color: #999;
				background: url(../img/submenu_inactive.png) top left repeat-x;
				border-top: 1px solid #e5e5e5;
				border-left: 1px solid #cecece;
				border-right: 1px solid #cecece;
				border-bottom: 0;
			}

img.header_image {
	width: 109%;
	height: auto !important;
	margin-top: -11px;
	margin-left: -4.5%;
	margin-right: -4.5%;
}

.tab_page .content {
	max-width: 880px;
	margin: 0 auto;
}

#page .fb-like {
	width: 400px;
	margin: 0 auto;
	display: block !important;
}

table.info {
	border-spacing: 0;
	margin: 10px 0 32px;
	display: block;
}

table.info tbody {
	width: 100%;
}

table.info tr {
	display: block;
	float: left;
	width: 48%;

	margin: 0;
	border-bottom: 1px solid #eee;
}

	table.info tr:nth-child(odd) {
		margin-right: 4%;
	}

	table.info th, table.info td {
		font-family: helvetica, arial, sans-serif;
		font-size: 15px !important;
		text-align: left;
		display: block;
		padding: 6px 0 !important;
	}

	table.info th {
		float: left;
		width: 80px;
	}

	table.info td {
		margin-left: 90px;
	}
		table.info td p {
			margin: 0 !important;
			padding: 0 !important;
		}

p.short_link {
	margin-top: 28px;
	text-align: center;
}

	p.short_link, p.short_link input {
		color: #999;
		font-size: 11px;
		font-family: helvetica, arial, sans-serif;
	}

	p.short_link input {
		-webkit-appearance: none;
		border: 0;
		padding: 0;
	}

	p.short_link input:focus {
		outline: 0;
	}

#page .badges {
	position: relative;
}

#page .badges .bidding {
	color: #fff;
	background: #9c0;

	border-top: 1px solid #7DB100;
	border-bottom: 1px solid #7DB100;

	box-shadow: rgba(0,0,0,0.25) 0 2px 8px;
	text-shadow: #588600 0 1px 1px;
	text-decoration: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	width: 180px;
	padding: 6px 10px 7px;

	position: absolute;
	top: -26px;
	right: 0;
}

	#page .badges a.bidding:active {
		background: #7DB100;

		border-top: 1px solid #5d8a00;
		border-bottom: 1px solid #5d8a00;
	}

	#page .badges .bidding * {
		margin: 0;
		padding: 0;
	}

	#page .badges .bidding h4, #page .bidding p {
		font-family: helvetica, arial, sans-serif;
	}

	#page .badges .bidding h4 {
		font-size: 16px;
	}
	#page .badges .bidding p {
		font-size: 13px;
	}

#e_info h3 {
	margin-top: 2em;
}

#e_budgivning {

}

	#e_budgivning h3 {
		margin-top: 22px;
	}

	#e_budgivning p {
		font-family: helvetica, arial, sans-serif;
		font-size: 13px !important;
		line-height: 17px !important;
		margin: 0.4em 0;
		padding-right: 60px;
	}

	#e_budgivning a {
		color: #000;
		text-decoration: none;
	}

	#e_budgivning table {
		width: 100%;
		margin: 14px 0;
	}

		#e_budgivning table th, #e_budgivning table td {
			border-bottom: 1px solid #eee;
			font-family: helvetica, arial, sans-serif;
			font-size: 13px !important;
			padding-left: 0 !important;
		}

		#e_budgivning table th {
			border-bottom: 1px solid #eaefdc;
		}

		#e_budgivning table tr.current td {
			background: #f4f9e5;
			border-bottom: 1px solid #eaefdc;
		}

			#e_budgivning table tr.current td.bid {
				font-weight: bold;
			}

			#e_budgivning table tr.current td.symbol {
				background: #f4f9e5 url(../img/star.png) 7px 8px no-repeat;
			}

		#e_budgivning table td.symbol {
			width: 20px;
			padding-right: 0 !important;
		}

h3.object_description {
	margin-top: 24px !important;
	font-size: 28px;
}

/*div.visning {
	border-top: 2px solid #9c0;
	border-bottom: 2px solid #9c0;

	margin: 0 0 18px 0;
	padding: 4px 0 5px 0;

	font-family: helvetica, arial, sans-serif;
	font-size: 13px;
}
	div.visning strong {
		color: #fff;
		background: #9c0;
		display: block;
		float: left;

		margin: -4px 8px -5px 0;
		padding: 4px 8px 5px 8px;
	} */

table.fullinfo {
	border-spacing: 0;
	margin: 8px 0 20px 0;
	border-bottom: 1px solid #eee;
	width: 100%;
}
	table.fullinfo th, table.fullinfo td {
		vertical-align: top;
		border-top: 1px solid #eee;
		padding: 0;
		line-height: 13px;
	}
	table.fullinfo tr th {
		font-family: helvetica, arial, sans-serif;
		font-size: 11px !important;
		text-align: left;
		padding: 8px 8px 0 0 !important;
		width: 120px;
	}
	table.fullinfo td {
		font-family: 'ff-tisa-web-pro-1', 'ff-tisa-web-pro-2', "adobe-text-pro-1", "adobe-text-pro-2", georgia, serif;
		font-size: 14px;
		line-height: 19px;
	}
		table.fullinfo td p {
			margin: 0.3em 0 !important;
		}

.people {
	padding: 0 !important;
}

	.people .person {
		clear: both !important;
		float: none !important;
		width: 49% !important;
		display: inline-block;
		padding-bottom: 0;
	}
		.people .person h3 {
			margin-top: 12px;
		}
		.people .person img {
			float: left;
			height: auto;
			width: 80px;
			margin-top: 6px;
		}
		.people .person div.details {
			margin: 6px 0 0 92px !important;
		}
			.people .person div.details p {
				margin: 0 !important;
				padding: 0 !important;
				font-family: helvetica, arial, sans-serif !important;
				font-size: 12px !important;
				line-height: 17px !important;
			}
			.people .person div.details p.name {
				font-size: 15px !important;
				font-weight: bold;
				margin-bottom: 2px !important;
			}
			.people .person div.details p.title {
				font-size: 11px !important;
				margin-bottom: 4px !important;
				text-transform: uppercase;
			}
			.people .person div.details a {
				color: #000;
				text-decoration: none;
			}

ul.pdfs {
	list-style: none;
	padding: 0;
	margin-left: 0;
}

	ul.pdfs li {
		list-style: none;
		margin: 0 14px 0 0 !important;
		display: inline;
	}

ul.links {
	list-style: none;
	padding: 0;
	margin-left: 0;
}

ul.links:before, ul.links:after { content: ""; display: table; }
ul.links:after { clear: both; }
ul.links { zoom: 1; }

	ul.links li {
		list-style: none;
		margin: 0 !important;
		display: block;
	}

	ul.links a.link {
		float: left;
		display: block;

		color: #fff;
		background: #9c0;
		padding: 1px 8px 1px 8px;
		margin-right: 10px;

		font-size: 16px !important;
		line-height: 22px !important;

		border: 1px solid #8b0;
		border-bottom: 1px solid #7a0;
		text-shadow: #7a0 0 -1px 0;

		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;

		-webkit-box-shadow: inset rgba(255,255,255,0.2) 0 1px 0, rgba(0,0,0,0.06) 0 1px 0, rgba(0,0,0,0.06) 0 2px 0;
		-moz-box-shadow: inset rgba(255,255,255,0.2) 0 1px 0, rgba(0,0,0,0.06) 0 1px 0, rgba(0,0,0,0.06) 0 2px 0;
		box-shadow: inset rgba(255,255,255,0.2) 0 1px 0, rgba(0,0,0,0.06) 0 1px 0, rgba(0,0,0,0.06) 0 2px 0;

		font-family: helvetica, arial, sans-serif;
		font-size: 12px;
		text-decoration: none;

		-webkit-user-select: none;
		-moz-user-select: none;
		user-select: none;
	}

		ul.links a.link:active {
			color: #f7ffdf;
			background: #8b0;
			border-color: #7a0;
			border-top: 1px solid #580;
			border-bottom: 1px solid #690;
			text-shadow: #580 0 -1px 0;
			-webkit-box-shadow: inset rgba(255,255,255,0.2) 0 -4px 6px, inset #7a0 0 5px 10px, rgba(0,0,0,0.06) 0 1px 0, rgba(0,0,0,0.06) 0 2px 0;
			-moz-box-shadow: inset rgba(255,255,255,0.2) 0 -4px 6px, inset #7a0 0 5px 10px, rgba(0,0,0,0.06) 0 1px 0, rgba(0,0,0,0.06) 0 2px 0;
			box-shadow: inset rgba(255,255,255,0.2) 0 -4px 6px, inset #7a0 0 5px 10px, rgba(0,0,0,0.06) 0 1px 0, rgba(0,0,0,0.06) 0 2px 0;
		}

	.no-boxshadow ul.links a.link {
		padding-bottom: 2px;
	}

	.no-boxshadow ul.links a.link:active {
			border-color: #7a0;
			border-bottom: 1px solid #690;
	}

.showings {
	background: #fafafa;
	padding: 1px 0 1px 8px;
	margin: 0 0 20px 0;

	border: 1px solid #eee;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;

	-webkit-box-shadow: inset #f1f1f1 0 0 20px;
	-moz-box-shadow: inset #f1f1f1 0 0 20px;
	box-shadow: inset #f1f1f1 0 0 20px;

	overflow: hidden;
}

	.showings h4 {
		font-size: 12px;
		float: left;
		background: url(../img/showing.png) 0 1px no-repeat;
		padding-left: 12px;
		margin-top: 6px;
	}

	.showings ul {
		margin: 0 0 -2px 75px !important;
		padding: 0 !important;
	}

		.showings ul li {
			font-family: helvetica, arial, sans-serif !important;
			font-size: 12px !important;
			margin: 0 !important;
			padding: 3px 6px;

			border-bottom: 1px solid #eee;
			list-style: none;
			display: block;
		}

ul.showings {
	list-style: none;
	padding: 0;
	margin: 0 0 14px 0;
}

	ul.showings li {
		background: url(../img/showing.png) 2px 4px no-repeat;

		display: block;
		padding: 0 0 0 12px;
		margin: 0 0 4px !important;

		font-family: helvetica, arial, sans-serif !important;
		font-size: 13px !important;
	}

a.pdf {
	background: url(../img/pdf.png) top left no-repeat;
	padding-left: 18px;

	color: #000;

	font-family: helvetica, arial, sans-serif;
	font-size: 12px;
	text-decoration: none;
}

#e_bilder {
	margin-top: -11px;
}

figure.image {
	display: block;
	margin: 2px -4.5% 0;
}

	figure.image img {
		width: 100%;
	}

	figure.image figcaption {
		display: block;
		padding: 0 4.5% 1%;
	}

	figure.image #image_animation_wrapper {
		position: relative;
	}

	figure.image #image_animation_wrapper img {
		margin: 0 !important;
		position: absolute;
		top: 0;
	}

	figure.image figcaption {
		margin: 5px 0 20px 0;
		display: block;
	}

	figure.image figcaption p {
		font-family: helvetica, arial, sans-serif !important;
		font-size: 12px !important;
		display: block;
		margin: 0 !important;
	}

#map_canvas {
	margin: -11px 0 -5.6% -4.4%;

	width: 108.8%;
	height: 620px;
}


/* =============================================================================
   Media Queries for smaller versions
   ========================================================================== */

@media screen and (max-width: 520px) {
	header h1 a {
		width: 100%;

		border-radius: 0 0 4px 4px;
	}

/*	header {
		height: 264px !important;
		padding-bottom: 8px;
	}

	header nav li {
		margin: 1px 0;
	}

	header nav li a {
		display: block;
		text-align: center;
	}*/

	header nav li {
		margin: 0;
	}

	header nav li a, .submenu a {
		font-size: 14px;
		padding: 4px 4px;
	}

	.incoming figure a {
		width: 100% !important;
		margin: 0 0 16px 0 !important;
	}

	.object_menu_container {
		margin-top: 0;
	}
}

@media screen and (max-width: 620px) {

	header nav li a, .submenu a {
		font-size: 14px;
	}

	.people .person {
		width: 100% !important;
		display: block;
		padding-bottom: 0;
	}

	.banner-image h2 {
		font-size: 14px !important;
		line-height: 19px !important;
	}
}

@media screen and (max-width: 850px) {
	.object_list figure {
		float: none;
		width: 100%;
		margin-right: 0 !important;
	}

	.incoming figure a {
		width: 48%;
		margin-right: 3%;
		margin-bottom: 14px;
	}

	.incoming li.child_2 figure a {
		margin-right: 0;
	}

	#container {
		width: 96%;
	}

	.text.narrow {
		width: 100%;
	}

	header {
		height: 134px;
	}

	header nav {
		position: static;
	}

	.js header nav {
		position: static;
		top: 0;
		width: auto;
		margin:-left: auto;
		margin-right: 8px auto 0;
	}

	.no-js header nav {
		text-align: center;
	}

	.no-js header {
		text-align: center;
	}

	.no-js header h1 a {
		margin-right: 0;
	}

	#nav_left, #nav_right {
		display: inline !important;
		width: auto !important;
		left: auto !important;
		right: auto !important;
		position: static !important;
	}

	.banner-image .content {
		top: 6%;
		width: 73%;
	}

	.banner-image h2 {
		font-size: 19px;
		line-height: 26px;
	}

	footer, footer .info, footer .email {
		height: auto;
		text-align: center;
		float: none;
	}

	footer .email {
		display: block;
		padding-top: 0;
		margin-top: 1em;
	}

	footer .fb-like {
		margin: 1em auto;
		float: none;
	}
}

@media screen and (min-width: 851px) and (max-width: 1010px) {
	header nav li {
		margin: 0;
	}

	header nav li a, .submenu a {
		font-size: 14px;
	}

	header nav #nav_left {
		left: -206px;
		top: 1px;
	}
	header nav #nav_right {
		right: -222px;
		top: 1px;
	}
}


/* =============================================================================
   Administration
   ========================================================================== */

#admin_panel {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 12;
	padding-top: 2px;
}

#admin_panel a {
	color: #fff;
	text-decoration: none;
}

.admin, .message {
	font-family: helvetica, arial, sans-serif;
	font-size: 11px;
}

.admin {
	float: right;
	padding-top: 6px;
	color: #fff;
}

.admin a {
	color: #fff;
	background: #9c0;
	border: 1px solid #85B200;

	padding: 2px 3px;
	margin-left: 3px;

	font-weight: bold;
	text-decoration: none;

	text-shadow: #729900 0 1px 0;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.admin a:active {
	color: #fff !important;
	background: #85B200;
}

.admin_new_page {
	padding: 2px 13px 2px 13px;
	margin: 0 6px 4px 6px;
	background-color: #9c0;
	border: 1px solid #85B200;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.admin_new_page, .admin_new_page a {
	font-family: helvetica, arial, sans-serif;
	font-weight: bold;
	font-size: 11px;

	text-shadow: #729900 0 1px 0;
}

#menu_modules ul#menu a.admin {
	text-shadow: none;

	float: none;
	position: absolute;
	top: 0;
	right: 0;

	font-family: helvetica, arial, sans-serif;
	font-weight: bold;
	font-size: 9px;

	text-shadow: #729900 0 1px 0;

	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;

	margin: 5px 6px 0 0 !important;
	padding: 0 2px 4px 2px !important;
	height: 13px !important;

	background: #9c0;
	border: 1px solid #85B200;
}

#menu_modules ul#menu a.admin:active {
	color: #fff;
	background: #85B200;
}

#menu_modules ul#menu a.admin.red {
	right: 14px;
}

#menu_modules ul#menu a.admin.rem {
	background: #c00;
	border: 1px solid #800;
	text-shadow: #800 0 1px 0;
}

#menu_modules ul#menu a.admin.rem:active {
	background: #900;
}

.message {
	color: #fff;
	background: #333;

	font-weight: bold;
	text-align: center;
	text-shadow: #222 0 1px 0;

	padding: 6px 12px;
	width: 476px;

	position: absolute;
	top: -2px;
	z-index: 6;

	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.frontpage .message {
	top: 0;
}


/* =============================================================================
   Utilities
   ========================================================================== */

.clear {
	clear: both;
}


/* =============================================================================
   Javascript Stuff
   ========================================================================== */

.popup {
	width: 400px;
	height: 280px;
	background: #fff;

	border: 1px solid #333;

	position: absolute;
	top: 0;
	left: 0;
	z-index: 4;
}

.popup_inside {
	margin: 25px 40px; 
}

#darken {
	color: #fff;
	background: rgba(0,0,0,0.8);

	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	height: 100%;
	width: 100%;

	z-index: 2;
}


/* =============================================================================
   Print
   ========================================================================== */

@media print {
	body {
		margin: 0;
		width: 21cm;
	}

	h1 {
		font-size: 14pt;
		text-align: right;

		width: 100% !important;
	}

		h1 a {
			color: #000;
			text-decoration: none;
			width: 100% !important;
		}

		header h1 a span {
			display: inline;
		}


	#container {
		margin: 0;
		width: 100% !important;
		position: relative;
	}

	#page {
		background: #fff url("../img/page_fill.png") top left repeat-y;

		padding: 1cm;
		margin: 0 auto;
		width: 19cm;

		position: relative;
	}


	#page_top, #page_bottom {
		width: auto;
		height: 6px;

		position: absolute;
		left: 0;

		background-position: top left;
		background-repeat: no-repeat;
	}

	#page .header {
		margin-bottom: 1.5em;
	}

	#page .object_menu_container {
		display: none;
	}

	#page .object_menu_container .print {
		display: none;
	}

	ul.showings li {
		color: #9c0;
		background: transparent;
		border-top: 1px solid #7DB100;
		border-bottom: 1px solid #7DB100;

		text-shadow: none;
		-webkit-border-radius: none;
		-moz-border-radius: none;
	}


	.people .person img {
		display: none;
	}


	.people .person div.details {
		margin: 6px 0 0 0 !important;
	}


}


/* =============================================================================
   Cake (Mmm... Delicious!)
   ========================================================================== */

.cake-sql-log {
	color: #fff;
	font-family: consolas, courier, monospace;
	font-size: 12px;
	line-height: 18px;
	padding: 10px 50px;
}
