/* Colors
 *    Light Blue: #EBE8F4
 *    Blue: #6392E4
 *    Dark Blue: #416096
 *    Dark Gray: #4A4A4A
 *    Beige: #F5F1D5
 *    Brown: #D8CEAF
 *    Pink: #D30C80
 *    Dark Pink: #870852
 */

html
{
	/* do nothing. */
}

body
{
	margin: 0px 0px 0px 0px;
	/* set default text properties. */
	font-family: Verdana, Tahoma, 'Sans-Serif';
	font-size: 13px;
	color: #4A4A4A;
	line-height: 175%;
}

td
{
	/* set default text properties for browsers that don't properly inherit. */
	font-family: Verdana, Tahoma, 'Sans-Serif';
	font-size: 13px;
	color: #4A4A4A;
	line-height: 175%;
}

p
{
	margin-bottom: 15px;
}

strong
{
	font-weight: bold;
	color: #416096;
}

h2
{
	color: #6392E4;
	font-size: 17px;
	font-weight: normal;
	border-bottom: 1px solid #6392E4;
	clear: both;
}

address
{
	margin: 0px 30px 15px 30px;
}

.leader
{
	position: relative;
	float: left;
	font-size: 45px;
	font-family: Georgia;
	line-height: 75%;
	color: #416096;
	top: 7px;
	left: -10px;
}

.clearDot
{
	visibility: hidden;
}

.terminator
{
	clear: both;
}

/*** Links ********************************************************************/

:link,
:visited
{
	text-decoration: none;
}

a img,
:link img,
:visited img
{
	border: none;
}

a
{
	font-style: normal;
	color: #416096;
}

a:hover
{
	color: #6392E4;
	text-decoration: underline;
}

/*** Forms ********************************************************************/

input
{
	font-family: Verdana, Tahoma, 'Sans-Serif';
	font-size: 11px;
}

select
{
	font-family: Verdana, Tahoma, 'Sans-Serif';
	font-size: 11px;
}

textarea
{
	font-family: Verdana, Tahoma, 'Sans-Serif';
	font-size: 11px;
}

a.button
{
	display: inline-block;
	border: 2px outset;
	text-align: center;
}

a.button:hover
{
	text-decoration: none;
}

a.button:active
{
	border: 2px inset;
}

button,
input.button,
a.button
{
	margin: 0px;
	padding: 3px 7px;
	border-color: #6392E4;
	background-color: #6392E4;
	color: #EBE8F4;
	cursor: pointer;
	/* Explicitly set line height because, in IE, it will be inherited. */
	font-size: 11px;
	font-weight: bold;
	/* In Internet Explorer, line height is inherited in buttons. It is not
	 * inherited in Firefox (or <input type="submit"> in Internet Explorer for
	 * that matter). I'm not sure which is correct. However, this will at least
	 * make the behavior consistent. */
	line-height: normal;
}

/* The * html portion of the selector takes advantage of an Internet Explorer
 * CSS parser bug which causes this style to only apply in Internet Explorer. */

* html button,
* html input.button
{
	/* Remove the magic button padding in Internet Explorer. Internet Explorer
	 * seems to calculate the padding as a percentage of the content width.
	 * We'll set the width to 0 but set the overflow to visible. Another bug in
	 * IE will expand the button to be as large as necessary to contain the
	 * text. The padding approximates the default padding in Firefox. */
	width: 0px;
	overflow-x: visible;
	padding: 0px 5px 0px 5px;
}

label
{
	cursor: pointer;
}


/*** Generic Tabled Form ******************************************************/

.form
{
	margin-top: 10px;
}

.form form table
{
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: 0px;
	border-collapse: collapse;
}

/* We only want the parent table to have a width of 100% */

.form form table tr td table
{
	width: auto;
}

.form form table tr th
{
	background-color: #F5F1D5;
	padding: 0px 5px 0px 5px;
}

.form form table tr td
{
	padding: 2px 5px 2px 5px;
}

.form form table tr td.label
{
	vertical-align: top;
	white-space: nowrap;

}

.form form table tr td div.description
{
	font-size: 11px;
	line-height: 150%;
}

.form form table tr td div.help
{
	display: none;
	margin: 5px 0px;
	padding: 5px;
	background-color: #F5F1D5;
	border: 1px solid #D8CEAF;
	font-size: 11px;
	line-height: 150%;
}

.form form table tr td.helpIcon
{
	vertical-align: top;
	width: 20px;
}

.form form table tr.buttons td
{
	background-color: #D8CEAF;
}

/*** Generic Tabled List ******************************************************/

.list
{
	width: 100%;
	line-height: 100%;
}

.list table
{
	width: 100%;
	clear: both;
	border-collapse: collapse;
	border: 1px solid #D8CEAF;
}

.list table tr th, .list table tr td
{
	text-align: left;
	padding: 0px 5px 0px 5px;
	font-size: 11px;
}

.list table tr th
{
	background-color: #D8CEAF;
	padding: 2px 4px 2px 4px;
}

.list table tr td
{
	padding: 2px 4px 2px 4px;
}

.list table tr.oddRow td
{
	/* do nothing. */
}

.list table tr.evenRow td
{
	background-color: #F5F1D5;
}

.list table tr th.boolean, .list table tr td.boolean
{
	text-align: center;
}

.list table tr th.link, .list table tr td.link
{
	text-align: center;
	width: 50px;
}


.list table tr th.numeric, .list table tr td.numeric
{
	text-align: right;
}

.list table tr th.date, .list table tr td.date
{
	text-align: right;
}

/*** Page *********************************************************************/

.outerContent
{
	/* do nothing. */
}

.innerContent
{
	margin: auto;
	width: 780px;
}

#page
{
	background-image: url(../images/background.jpg);
	background-repeat: no-repeat;
	background-position: top;
}

#header
{
	/* do nothing. */
}

#header .logo
{
	padding: 20px;
}

#header .companyName
{
	vertical-align: middle;
}

#header .navigation
{
	background-image: url(../images/navigationBackground.gif);
	height: 30px;
	clear: both;
}

#header .navigation table
{
	margin: auto;
}

#header .navigation td
{
	padding: 3px 10px 0px 10px;
}

#header .navigation a
{
	color: #EBE8F4;
}

#header .navigation a:hover
{
	text-decoration: none;
}

#header .navigationShadow
{
	text-align: center;
}

#body
{
	clear: both;
}

#body .singleColumn
{
	margin: 10px;
}

#body .singleColumn .title
{
	/* do nothing. */
}

#body .singleColumn .content
{
	margin: 10px 10px 10px 10px;
}

#body .leftColumn
{
	width: 320px;
	margin: 10px;
	float: left;
}

#body .leftColumn .title
{
	/* do nothing. */
}

#body .leftColumn .content
{
	margin: 10px;
}

#body .rightColumn
{
	width: 420px;
	margin: 10px;
	float: left;
}

#footer
{
	clear: both;
}

#footer .navigation
{
	text-align: center;
	margin: 10px;
	font-size: 11px;
}

#footer .outerContent
{
	background-color: #416096;
}

#footer .outerContent a
{
	color: #F5F1D5;
}

#footer .outerContent td
{
	padding: 10px;
	vertical-align: bottom;
	color: #F5F1D5;
	font-size: 11px;
	line-height: 150%;
}

#footer td.contact
{
	text-align: left;
}

#footer table tr td.credit
{
	text-align: right;
}

#avon
{
	float: right;
}

.disclaimer
{
	font-size: 11px;
	line-height: 1.25;
}

.disclaimer p
{
	margin: 10px 0px;
}

/*** Breakout Box *************************************************************/

.breakout
{
	margin: 0px 10px 10px 10px;
	float: right;
	width: 250px;
}

.breakout .title
{
	font-weight: bold;
}

.breakout.wide
{
	width: 350px;
}

/*** Panel ********************************************************************/

.panel
{
	background: url(../images/panel-tl.png) no-repeat top left;
}

.panel-top
{
	background: url(../images/panel-tr.png) no-repeat top right;
}

.panel-bottom
{
	background: url(../images/panel-bl.png) no-repeat bottom left;
}

.panel-bottom div
{
	background: url(../images/panel-br.png) no-repeat bottom right;
}

.panel-content
{
	background: url(../images/panel-r.png) top right repeat-y;
}

.panel-top div,
.panel-top,
.panel-bottom div,
.panel-bottom
{
	width: 100%;
	height: 10px;
	font-size: 1px;
}

.panel-content,
.panel-bottom
{
	/* margin-top: -19px; */
}

.panel-content
{
	padding: 0 10px;
}

.panel-content p
{
	margin-top: 10px;
	margin-bottom: 10px;
}


/*** Featured Properties ******************************************************/

.featured-properties
{
	clear: both;
}

.featured-property
{
	margin-left: 10px;
	margin-bottom: 10px;
	left: -10px;
	position: relative;
	float: left;
	width: 360px;
	font-size: 11px;
	line-height: 150%;
}

.featured-property .title
{
	font-weight: bold;
}

.featured-property .picture
{
	float: left;
	margin: 15px 10px 0px 0px;
}

.featured-property .picture img
{
	border: 1px solid #4A4A4A;
}

.featured-property a
{
	font-weight: bold;
}

/*** Staff ********************************************************************/

.staff
{
	padding: 10px;
	background: #F5F1D5;
	margin-left: -10px;
	margin-right: -10px;
	border: 1px solid #D8CEAF;
}

.staff .title
{
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
	padding: 5px 10px 5px 10px;
	border-bottom: 1px solid #D8CEAF;
	background-color: #ffffff;
	color: #416096;
	font-size: 17px;
	font-weight: normal;
}

.staff .member
{
	margin: 10px;
	clear: both;
	page-break-inside: avoid;
}

.staff .member img
{
	margin: 10px;
	float: left;
}

/**** Contact Form ************************************************************/
 
.valuationForm
{
	margin: 10px;
	padding: 10px;
	width: 80%;
	background-color: #F5F1D5;
	border: 1px solid #D8CEAF;
}

.valuationForm table tr td
{
	text-align: left;
}

.contactForm
{
	float: right;
	margin: 10px;
	padding: 10px;
	width: 370px;
	background-color: #F5F1D5;
	border: 1px solid #D8CEAF;
}

.contactForm table tr td
{
	white-space: nowrap;
}

.contactForm input.text
{
	width: 200px;
}

.contactForm textarea
{
	width: 200px;
	height: 100px;
}

.contactForm input.button
{
	width: 100px;
}

/*** Rentals ******************************************************************/

.rentals
{
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: 0px;
}

.rentals .listing
{
	margin: 0px 0px 20px 0px;
	padding: 0px;
	border: 0px;
	clear: both;
}

.rentals .listing .title
{
	font-weight: bold;
	color: #416096;
	background-color: #F5F1D5;
	border: 1px solid #D8CEAF;
	padding: 0px 10px 0px 10px; 
}

.rentals .listing .image
{
	width: 100px;
	float: right;
	margin: 0px;
	padding: 10px;
	text-align: center;
}

.rentals .listing .image img
{
	border: 1px solid #D8CEAF;
}

.rentals .listing .properties
{
	width: 600px;
	margin: 10px;
	font-size: 11px;
}

.rentals .listing .properties table
{
	width: 100%;
	border-collapse: collapse;
}

.rentals .listing .properties table tr td
{
	width: 50%;
	font-size: 11px;
	vertical-align: top;
}

.rentals .listing .options
{
	margin-left: 10px;
	clear: both;
}

.rentals .listing .options button
{
	width: 100px;
	margin-right: 5px;
}

.rental
{
	/* do nothing. */
}

.rental .listing
{
	margin-bottom: 10px;
	padding: 10px;
	background-color: #F5F1D5;
	border: 1px solid #D8CEAF;
}

.rental .listing .title
{
	margin-top: -10px;
	margin-left: -10px;
	margin-right: -10px;
	padding: 5px 10px 5px 10px;
	border-bottom: 1px solid #D8CEAF;
	background-color: #ffffff;
	color: #416096;
	font-size: 17px;
	font-weight: normal;
}

.rental .listing .description
{
	/* do nothing. */
}

.rental .listing table.pictures
{
	float: right;
}

.rental .listing table.pictures tr td
{
	text-align: center;
	vertical-align: middle;
}

.rental .listing table.pictures tr td img 
{
	border: 1px solid #D8CEAF;
}

a.rental.town.button
{
	width: 20em;
	margin-top: 10px; 
	margin-left: 10px; 
}

a.rental.details.button
{
	margin-top: 20px;
	margin-left: 10px;	
}


/*** Rental Search Form *******************************************************/

#rentalSearch
{
	margin-left: 15px;
}

#rentalSearch form table
{
	/* override the width:100% we usually use so because help icons will need
	 * to be close to the the form elements. */
	width: auto;
}

#rentalSearch form table tr td.label
{
	border-bottom: 1px solid #F5F1D5;
	border-right: 1px solid #F5F1D5;
	width: 100px;
}

#rentalSearch form table tr td.control
{
	border-bottom: 1px solid #F5F1D5;
	width: 320px;
	/* This prevents a 1px shift in the content that can occur in Internet
	 * Explorer when hiding and showing block level content (such as the inline
	 * help) within the cell. */
	vertical-align: top;
}

#rentalSearch form table tr td.helpIcon
{
	border-bottom: 1px solid #F5F1D5;
	width: 20px;
}

#rentalSearch form table tr.buttons td
{
	background-color: transparent;
}


/*** Search Results ***********************************************************/

.results
{
	width: 100%;
	margin-top: 10px;
}

.results .navigation
{
	margin-bottom: 10px;
	font-size: 11px;
}

.results .navigation .location
{
	float: left;
}

.results .navigation .buttons
{
	float: right;
}

/*** Schedule *****************************************************************/

.schedule .image
{
	float: right;
	padding: 0px 20px 10px 20px;
}


/*** Admin ********************************************************************/

div.options
{
	text-align: right;
}


/*** Schedule Legend **********************************************************/

div.legend
{
	margin-bottom: 10px;
}

div.legend span.item
{
	/* do nothing. */
}

div.legend span.item span.identifier
{
	display: -moz-inline-box; /* Firefox */
	display: inline-block;
	width: 20px;
	height: 20px;
}

div.legend span.item span.label
{
	margin-right: 10px;
}


/*** Print ********************************************************************/

h1
{
	font-size: 20px;
	font-weight: normal;
}

.print
{
	margin: 10px;
}

.print .list table
{
	border-width: 0px;
}

.print .list th
{
	background-color: #fff;
}

.print .list tr.section td
{
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}

.print .list tr.evenRow td
{
	background-color: #eee;
}


/*** PikaChoose ***************************************************************/

#pikachoose
{
	padding-left: 0;
	margin: 0 auto;
}

.pika_main
{
	height: 255px;
	width: 252px;
	margin: 0 auto;
	text-align: center;
}

#pikachoose li
{
	margin: 0px 3px 3px 0px;
	float: left;
	border: 1px solid black;
}

#pikachoose li img
{
	position: relative;
	cursor: pointer;
}

.pika_main img
{
	border: 1px solid #000000;
}

.pika_main
{
	position: relative;
	margin: 0 auto;
}

.pikachoose li
{
	float: left;
	position: relative;
	overflow: hidden;
	list-style: none;
}

.pika_play
{
	position: absolute;
	top: -20px;
	right: 0px;
	z-index: 1;
}

.pika_play a
{
	position: relative;
	margin-left: auto;
	cursor: pointer;
}

.pika_play img
{
	border: none !important;
}

.pika_caption
{
	width: 100%;
	height: 30px;
	text-align: center;
}

.pika_navigation a
{
	font-size: 12px;
	color: white;
	text-decoration: none;
}

.pika_navigation a:hover
{
	text-decoration: underline;
}

.pika_navigation
{
	padding-top: 10px;
	clear: both;
	text-align: center;
}