/*

Website Screen Styles
Authored by: Jonathan Poh (Sputnik Agency)
Contact: jonathan.poh@sputnikagency.com


Table of Contents:

	Common
		Typography and Colours
		Layout
		Images
		Lists
		Forms
		Image-replacement
		Miscellaneous
		Handmade by Sputnik		
	Sections
		Header
		Sidebar
		Navigation
		Content
		Footer					
	Page-specific
		Homepage


	
	Colour Palette:
	
		Red 	- #990000
		Black   - #000000
		Dk Grey - #666666
		Lt Grey - #999999

*/


/* Typography and Colours
--------------------------------------------- */



body {
	color: #222;
	background: #FFF;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 62.5%; /* Resets 1em to 10px */
}

h1, h2, h3, h4 {
	margin-top: 0;
	margin-bottom: 0;
	line-height: 1.5;
}

h1 {
	font-size: 2em;
}

h2 {
	font-size: 1.4em;
	text-transform: uppercase;
	color: #333;
	margin-bottom: .5em;
}


h3 {
	font-size: 1.2em;
	color: #333;
	margin-bottom: .5em;
}


h4 {
	font-size: 1em;
}

a:link, 
a:visited {
	color: #900;
	text-decoration: none;
}

a:hover, 
a:active {
	text-decoration: underline;
}

input,
textarea {
}


#outer {
	background-color: transparent;
}


#header {
	color: #000;
	background: transparent;
}

pre,
p,
li,
td {
	font-size:1.2em;
	line-height: 1.5;
}

td {
	vertical-align: top;
}

p {
	margin: 0 0 1em 0;
}

ol,
ul {
	margin-top: 0;
}

ol.abc {
	list-style-type: lower-alpha;
}

.error {
	color: #F00;
	font-weight: bold;
}

.success {
	color: #080;
	font-weight: bold;
}

.smallcaps {
	text-transform: uppercase;
	font-size: 8px;
}

.highlight {
	border: 1px dotted #444;
	background: #ddd;
	padding: 1em;
	margin-bottom: 1em;
}

/* Layout
--------------------------------------------- */

html {
	height: 100%;
	margin: 0;
	margin-bottom: 1px; /* Ensure scrollbars always appear, so page doesn't shift horizontally when moving between pages of different lengths */
	padding: 0;
}
	
body {
	margin: 0 0 50px 0;
	padding: 0;
	width: 100%;
}

#outer {
	margin: 0 auto;
	padding: 0;
	width: 750px;
	border: none;
	clear: both;
}



/* Images
--------------------------------------------- */

img {
	border: none;
	margin: 0;
	padding: 0;
}

img.badge {
	border: 1px solid #666;
}

p img {
	padding: 0;
}

/*	Using 'class="alignright"' on an image will (who would've
thought?!) align the image to the right. And using 'class="centered',
will of course center the image. This is much better than using
align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
}

/* Lists
--------------------------------------------- */

ol,
ul {
	margin-left: 1em;
	padding-left: 0;
}

li {
	list-style: disc inside;
	line-height: 2;
	margin-left: 1em;
	text-indent: -1em;
}


/* Forms
--------------------------------------------- */

fieldset {
	border: none;
	margin: 0;
	padding: 0;
}

legend {
	font-size: 1.8em;
	margin: 0;
	padding: 0 0 0.5em 0;
	font-weight: normal;
}

.submit_button {
	display: inline;
	float: right;
}

.submit_button input {
	width: auto !important;
}

/* Image Replacement
--------------------------------------------- */

/* To replace a HTML text headline with GIF- or PNG-text, 
   assign class="replaced" to the heading tag, and give it a unique ID, eg
   id="h-myheading" and define the image as the background, and set the width
   and height of the image.

   Example:

   [HTML]
   <h1 class="replaced" id="h-heading">This is a Heading</h1>

   [CSS]
	#h-heading {
		background: url(../images/h-heading.gif) no-repeat 100% 100%;
		width: 426px;
		height: 24px;
	}
   

*/

.replaced {
	text-indent: -5000px;
	margin: 0;
	padding: 0;
	display: block;
}

h2.replaced {
	height: 28px;
}


/* Miscellaneous
--------------------------------------------- */

.skiplink {display:none}

.clear {
	clear: both;
}


.alignright {
	float: right;
}

.alignleft {
	float: left
}

hr {
	clear: both;
}

#beachball {
	display: none;
	position: absolute;
	top: 270px;
	background-color: #99f;
	border: 1px solid #339;
	font-size: 1.2em;
	margin: 0 170px;
	padding: 1em;
	width: 550px;
}



/* Handmade by Sputnik
--------------------------------------------- */

#footer p#handmade {
	clear: both;
	float: right;
	margin: 10px 0 0 0;
	padding: 0;
	font-size: 10px;
}

#handmade a:link,
#handmade a:visited {
	color: #999999;
	text-decoration: none;
}

#handmade a:hover,
#handmade a:active {
	color: #333333;
}


/* Header
--------------------------------------------- */

#header {
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid #999;
}

#header h1 {
	margin: 10px 0 0;
	text-align: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
/*	color: #360;*/
	color: #363;
	font-size: 4.8em;
	text-transform: uppercase;
	letter-spacing: .2em;
}

#header h1 a:link,
#header h1 a:visited {
	color: #363;
}

#header h1 a:hover,
#header h1 a:active {
	text-decoration: none;
}


#header img {
	display: block;
	float: left;
}

/* Sidebar
--------------------------------------------- */

#sidebar {
	margin-top: 25px;
	width: 150px;
	float: left;
}

#sidebar dl {
}

#sidebar dt {
	font-size: 1.2em;
}

#sidebar dd {
	font-size: 2em;
	margin: 0 0 1em 0;
	font-weight: bold;
}

div.loggedin {
	padding: 0.5em;
	font-size: 1.2em;
	text-align: right;
	color: #666;
}

div.loggedin a {
	color: #f44;
}


/* Navigation
--------------------------------------------- */

#navigation {
	background: #ddd;
	margin-bottom: 2em;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	padding:15px 0;
}

#navigation ul {
	margin: 0;
}

#navigation li {
	list-style: none;
	margin: 0;
	padding: 0;
	text-indent: 1em;
}

#navigation li a:link,
#navigation li a:visited {
	color: #333;
	font-weight: bold;
	display: block;
	padding: 0.5em;
	text-decoration: none;
}

#navigation li a:hover,
#navigation li a:active {
	background: #666;
	color: #FFF;
}

a:link.provide 
a:visited.provide {
	color: #9C6;
}

a:link.find 
a:visited.find {
	color: #F99;
}


/* Content
--------------------------------------------- */

#content {
	width: 550px;
	float: left;
	margin: 25px;
}



/* Footer
--------------------------------------------- */

#footer {
	border-top: 1px solid #999;
	padding: 0.5em 0;
	clear: both;
}

#footer p {
	margin: 0;
}

/* Social links
--------------------------------------------- */

#social {
	position: fixed;
	top: 0px;
	left: 0px;
	margin: 0;
	padding: 0 10px;
	background-color: #ddd;
	opacity: 0.92;
	border-bottom: 1px solid #999;
	width: 100%;
	text-align: center;
}

#social h3 {
	display: none;
}

#social ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#social ul li {
	padding: 0;
	margin: 0;
	display: inline;
}

#social a#follow_twitter {
	padding: 3px 20px 0 0;
	background: transparent url(/images/icon_twitter.gif) no-repeat right top;
}

#social a#follow_identica {
	padding: 3px 20px 0 0;
	background: transparent url(/images/icon_identica.gif) no-repeat right top;
}

#social a#follow_facebook {
	padding: 3px 20px 0 0;
	background: transparent url(/images/icon_facebook.gif) no-repeat right top;
}

.a2a_menu, .a2a_menu_border {
	position: fixed !important;
}


/* Page-specific: Homepage
--------------------------------------------- */

#contact_link {
	float: none;
	text-indent: -5000px;
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	line-height: 100px;
	height: 100px;
	width: 100px;
	background: transparent url(/images/feedback.png) no-repeat;
}

#contact_link a {
	line-height: 100px;
	height: 100px;
	width: 100px;
	display: block;
}

#homepage_intro {
	margin: 0 auto;
	width: 500px;
}

#homepage_boxes {
	margin-top: 15px;
}

.homepage_box {
	width: 500px;
/*	min-height: 50px;*/
	margin: 10px auto;
	padding: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 0px 0px 10px #888;
	-moz-box-shadow: 0px 0px 10px #888;
	margin-bottom: 30px;
}

.homepage_box h2 {
	text-align: left;
	color: #333;
	font-size: 2em;
	margin-bottom: 0;
}

.homepage_box h2 a:link,
.homepage_box h2 a:visited {
	color: #333;
}

.homepage_box p {
	margin: 0;
}
#for_hosts {
/*	float: left;*/
	background: #9C6;
}

#for_guests {
/*	float: right;*/
	background: #F99;
}

#for_existing {
	background: #ddd;
}

#for_stats {
	background: #ffa;
}

.registration {
	background: #ddd;
	overflow: auto;
	width: 33em;
	margin: 25px auto;
	padding: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	position: relative;
}

.registration p {
	clear: left;
/*	overflow: auto;*/
	margin: 1em 0;
}

.registration label {
	display: block;
	float: left;
	width: 10em;
	position: relative;
/*	height: 20px;*/
}
.registration label.radio {
	display: inline;
	float: none;
	width: auto;
}

.registration input,
.registration textarea {
/*	display: block;
	float: left;*/
	width: auto;
}

.registration .nolabel,
.registration .submit_button {
	margin: 0 0 1em 10em;
	float: left;
/*	overflow: auto;*/
}

.registration .submit_button input  {
	float: none;
}

.registration .nolabel input {
	float: none;
}


#property_list {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 20px;
}

#property_list tbody {
	border-bottom: 1px solid #666;
}

#property_list th.postcode {
	-moz-border-radius-topleft: 15px;
	-webkit-border-top-left-radius: 15px;
}

#property_list th.enquiries {
	-moz-border-radius-topright: 15px;
	-webkit-border-top-right-radius: 15px;
}

#property_list th,
#property_list tr.filter td {
	font-size: 1.3em;
	background: #666;
	color: #fff;
	padding: 0.5em;
}

#property_list tr.odd td {
	background-color: #ddd;
}

#property_list tr.even td {
	background-color: #eee;
}

#property_list td {
	text-align: center;
	padding: 5px;
}

#property_list th,
#property_list td {
	
}

#property_list td p {
	margin: 0;
}

#property_list td.enquiries  {
	text-align: left;
}

#property_list td.postcode p {
	font-size: .9em;
	color: #444;
}
#property_list td.enquiries p {
	font-size: 1em;
}

#property_list .filter .postcode input {
	width: 40px;
}

#property_list tr.paging {
	background-color: #999;
	color: #fff;
}

#property_list tr.paging div.nav {
	float: left;
}

#property_list tr.paging div.info {
	float: right;
}

#property_list tr.paging h4 {
	padding: 0;
	margin: 0;
	display: inline;
}
#property_list tr.paging ul {
	display: inline;
	list-style: none;
	padding: 0;
	margin: 0;
}

#property_list tr.paging p,
#property_list tr.paging ul li {
	padding: 0;
	margin: 0;
	display: inline;
	font-size: 1em;
	line-height: 1em;
}

#property_list tr.paging ul li a {
	padding: 0 5px;
	color: #fff;
}

#property_list tr.paging ul li a:hover {
	background-color: #800 !important;
	text-decoration: none;
}

#property_list tr.paging ul li.current a {
	font-weight: bold;
	background-color: #666;
}



/* Page-specific: Maps
--------------------------------------------- */

#map_list p {
	float: left;
	width: 225px;
	margin-right: 10px;
	text-align: center;
	min-height: 180px;
}

#map_list p img {
	display: block;
	margin: 0 auto;
}

/* Funcationality-specific: Downloadable Documents
--------------------------------------------- */

.downloadable_documents {
	text-align: right;
}

.downloadable_documents h4 {
	display: none;
}

.downloadable_documents ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.downloadable_documents ul li {
	display: inline;
	padding: 0;
	margin: 0;
}

.downloadable_documents ul li a {
	width: 50px;
	height: 50px;
	text-indent: -5000px;
	margin-left: 10px;
	float: right;
	font-size: 1px;
	color: white;
}

.downloadable_documents ul li.pdf a {
	background: transparent url(/images/icon_pdf.gif) no-repeat;
}

.downloadable_documents ul li.doc a {
	background: transparent url(/images/icon_doc.gif) no-repeat;
}

.downloadable_documents ul li.odt a {
	background: transparent url(/images/icon_openoffice.png) no-repeat;
}
