/*----------------------------------------------------------------------------
 * 
 * common.css: global reset styles and helper classes used EVERYWHERE
 *
 *---------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------
 * Reset styles
 *---------------------------------------------------------------------------*/

* {
	margin: 0px;
	padding: 0px;
}

html, body {
	min-height: 100%;
	height: 100%;
	font-family: arial, helvetica, sans-serif;
	font-size: 0.9em;
}

html>body, html>body #container {
    height: auto;
}

body { 
	text-align: left;
}

p {
	margin: 0 0 1em 0;
}

img, iframe { 
    border: none;
}

a, a:link {}
a:visited {}
a:hover {}
a:active {}

h1, h2, h3, h4, h5, h6 {
	font-family: "trebuchet ms", arial, helvetica, sans-serif;
	font-weight: bold;
	font-size: 100%;
	clear: left;
}

em {
	font-style: italic;
}
	
input, textarea, select {
	margin: 0;
	padding: 1px;
	font-size: 100%;
	font-family: inherit;
}
	
select { padding: 0; }

strong, b { font-weight: bold; }


/*----------------------------------------------------------------------------
 * Global helper classes
 *---------------------------------------------------------------------------*/

ul.inline {
	list-style-type: none;
	margin: 0;
}

ul.inline li {
	display: inline;
	margin-right: 1em;
}

.hidden {
	display: none;
}

.clear {
    clear: both;
    display: block;
}
    
.clear_left {
    clear: left;
    display: block;
}
    
.clear_right {
    clear: right;
    display: block;
}
    
.float_left {
    float: left;
}
    
.float_right {
    float: right;
}

.text_left {
    text-align: left;
}
    
.text_center {
    text-align: center;
}
    
.text_right {
    text-align: right;
}

br.clear {
    height: 1px;
}

.print {
	display: none;
	}


/*----------------------------------------------------------------------------
 * Pagination
 *
 * Should this be here? Probably not.  It could perhaps be in a pagination.css
 * file, or we could create a folder of pagination stylesheets for import.
 *
 * Credits: Dynamic Drive CSS Library
 * URL: http://www.dynamicdrive.com/style/csslibrary/item/css-pagination-links/ 
 *---------------------------------------------------------------------------*/

.pagination {
    padding: 0;
    margin: 0;
}

.pagination ul {
    margin: 0; padding: 0;
    text-align: left; /*Set to "right" to right align pagination interface*/
    font-size: 0.9em;
}

.pagination li {
    list-style-type: none;
    display: inline;
    padding-bottom: 0;
}

.pagination a, .pagination a:visited {
    padding: 2px 5px;
    background: #e7e7e7;
    text-decoration: none; 
    color: #666;
}

.pagination a:hover, .pagination a:active {
    color: #000;
    background: #ccc;
}

.pagination li.currentpage {
    font-weight: bold;
    padding: 2px 5px;
    background-color: #999;
    color: #fff;
}

.pagination li.disablepage {
    padding: 2px 5px;
    background: transparent;
    color: #ccc;
}

.pagination li.nextpage {
    font-weight: bold;
}

/* IE 6 and below. Adjust non linked LIs slightly to account for bugs */
* html .pagination li.currentpage, * html .pagination li.disablepage { 
    margin-right: 5px;
    padding-right: 0;
}

.pagination.bottom {
	margin-bottom: 1em;
}


/*----------------------------------------------------------------------------
 * Terms
 *---------------------------------------------------------------------------*/

div#terms_container_1 {
	border: 1px solid #ccc;
}

div#terms_container_2 {
	margin: 2px;
	padding: 10px;
	width: auto;
	height: 260px;
	overflow: auto;
}

.terms_content {
	font-family: monospace;
	font-size: 1.1em;
	text-align: left;
	line-height: 1.25em;
	color: #666;
	margin-bottom: 1em;
}

.terms_content * {
	font-family: monospace;
}

#content .terms_content a {
	color: #666;
}

.terms_content h1, h2, h3, h4, h5 {
	margin-bottom: 0.5em;
}

.terms_content p {
	margin-bottom: 1em;
}

.terms_content h2 {
	font-size: 1.5em;
	line-height: 1.1em;
	margin: 0 0 0.5em 0;
}

.terms_content h3 {
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 1em 0 0.5em 0;
}

.terms_content dt {
	width: 4em;
	float: left;
	clear: left;
}

.terms_content dd {
	margin: 0 0 1em 4.5em;	
}

.terms_content ul, ol {
	margin-top: 0.75em;
	margin-bottom: 1em;
	margin-left: 5em;
}

.terms_content li {
	margin-bottom: 0.5em;
}

.terms_content ul {
	list-style: disc;
}

.terms_content ol {
	list-style: lower-roman;
}

/*----------------------------------------------------------------------------
 * Light view forms
 *---------------------------------------------------------------------------*/
body.lightview {
  background-image: none;
  background-color: #fff;
}
/*----------------------------------------------------------------------------
 * Custom button styling
 *---------------------------------------------------------------------------*/

.button { display: block; position: relative; background: #ffae00; padding: 5px; float: right; color: #fff; text-decoration: none; cursor: pointer; line-height: normal; font-weight: bold;}
.button:hover { background:#00a12d; }
.button * { font-style: normal; background-image: url("/global/images/btn2.png"); background-repeat: no-repeat; display: block; position: relative; }
.button i { background-position: top left; position: absolute; margin-bottom: -5px; top: 0; left: 0; width: 5px; height: 5px; }
.button span { background-position: bottom left; left: -5px; padding: 0 0 5px 10px; margin-bottom: -5px; }
.button span i { background-position: bottom right; margin-bottom: 0; position: absolute; left: 100%; width: 10px; height: 100%; top: 0; }
.button span span { background-position: top right; position: absolute; right: -10px; margin-left: 10px; top: -5px; height: 0; }
* html .button span, * html .btn i { float: left; width: auto; background-image: none; cursor: pointer; }
.button[class] { background-image: url("/global/images/patterns/button_shade.png"); background-position: bottom; }
form .button { float: left; }


/*----------------------------------------------------------------------------
 * 
 * common/layout.css: cross-theme stylesheet for layout styles applicable to all portals.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core layout components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 
.vc_outer {
	overflow: hidden;
	position: relative;
} 

.vc_outer[class] {
	display: table;
	position: static;
	*display: auto;
	*position: relative;
} /* Needed for IE8 breaks IE7 in XHTML strict mode!!! */

.vc_middle {position: absolute; top: 50%; *left: 50%;} 
.vc_middle[class] {
	display: table-cell;
	vertical-align: middle;
	position: static;
	*display: table-cell;
	*vertical-align: auto;
	*position: absolute;       
} /* Needed for IE8 breaks IE7 in XHTML strict mode!!! */
 
.vc_inner {
	position: relative;
	top: -50%;
	*left: -50%;
}

#sub_nav_bar .tools #back_to_search {
	float: left;
	display: none;
}

#sub_nav_bar .tools #back_to_search.show {
	display: inline;
}


/*----------------------------------------------------------------------------
 * Lightview
 *---------------------------------------------------------------------------*/
 
body .lv_Container #doc3 {
 	background-color: #fff;
 }


/*----------------------------------------------------------------------------
 * general
 *---------------------------------------------------------------------------*/

body {
	padding: 0px;
	margin: 0px;
	font-size: 0.9em;
	color: #333;
	text-align: left;
}
  
#content_container {
	position: absolute;
	left: 0px;
	right: 0px;
	padding: 0 5px 5px 5px;
}

.hidden {
    display: none;
}
.clear {
    clear: both;
}

.text_center {
    text-align: center;
}

body, td {
	font-family: arial, sans-serif;
}
	
.content {
	padding: 5px;
}	

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
}

a {
	color: #2550aa;
}
input.title {
  color: #999;
}


/*----------------------------------------------------------------------------
 * admin header
 *---------------------------------------------------------------------------*/

#admin {
	position: absolute;
	left:0px;
	right:0px;
	line-height: 13px;
	top: 0px;
	margin-bottom: -13px;
	padding-right: 500px;
}


/*----------------------------------------------------------------------------
 * header
 *---------------------------------------------------------------------------*/

#header_container {
    position: relative;
    padding: 5px 5px 0px 5px;
}

#account_info {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 1.1em;
}

#header {
  position: relative;
}

#header_css {
	font-size: 1.3em;
}

#header_logo {
    position: absolute;
    z-index: 2;  /*Put it infront of the navigation */
}

#header h1 {
	float: left;
}

#navigation {
  position: absolute;
  bottom: -1px;
  z-index: 1;  /*Put it behind the logo */
}

#navigation ul {
  margin: 0px;
  list-style: none inside none;
}

#navigation ul li {
	float: left;
}

#navigation ul li a {
	display: block;
	text-decoration: none;
}

#navigation ul li a span{
	display:block;
}

#navigation ul li a span span {
	display: block;
	text-align: center;
}


/*----------------------------------------------------------------------------
 * content container
 *---------------------------------------------------------------------------*/


/*----------------------------------------------------------------------------
 * list
 *---------------------------------------------------------------------------*/
#map_and_list_container {

}


/*----------------------------------------------------------------------------
 * list
 *---------------------------------------------------------------------------*/

#listing {
	position: relative;
}

.listing .list_item  {
	border-top: 1px dotted #ccc;
	margin: 2px 5px 0px 5px;
	padding: 2px 0px 0px 0px;
}

.listing .list_item.first {
	border-top: 1px dotted #fff;
}

 
/*----------------------------------------------------------------------------
 * sub nav bar
 *---------------------------------------------------------------------------*/
 
#sub_nav_bar {
	margin-bottom: 2px;
}

#sub_nav_bar_css_r {
	height: 35px;
	width:100%;
}

#sub_nav_bar .content {
	line-height: 25px;
	padding-left: 15px;
}

#sub_nav_bar .tools {
	float: left;
}

#sub_nav_bar .tools a {
	float: left;
	margin-right: 15px;
   color: #fff;
   text-decoration: none;
}

#sub_nav_bar .buttons {
	float: right;
}

.auto_complete {
	color: #666;
	z-index: 999999;
   position: absolute;
}

#sub_nav_bar #save_search {
	float: left;
}

#sub_nav_bar #save_search img {
	vertical-align: middle;
}

#sub_nav_bar #save_search a {
	margin-right: 0.5em;
}


/*----------------------------------------------------------------------------
 * search form
 *---------------------------------------------------------------------------*/

#sub_nav_bar .search_form {
	float: right;
}

#sub_nav_bar .search_form dt {
 	display: none;
}

#sub_nav_bar .search_form select {
	margin-right: 0.5em;
	font-size: 1.1em;
}

#sub_nav_bar .search_form input {
	padding: 2px;
}

#sub_nav_bar .search_form .buttons {
	clear: none;
	float: left;
}

#sub_nav_bar .search_form form {
 	float: left;
}

#sub_nav_bar .search_form dl {
 	float: left;
}

#sub_nav_bar .search_form fieldset {
	border-width: 0px;
	float: left;
}

.btn {
	background-color: #008800;
	background-image: url('/global/images/dynamic/gradient/22cc22/008800/1/25/v.png');
	background-repeat: repeat-x;
	padding: 3px;
	border: 1px solid #008800;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	text-align: center;
}

#sub_nav_bar .btn {
	width: 6.2em;
}

#sub_nav_bar #search_query {
	width: 14em;
	margin-right: 0.5em;
	float: left;
}


/*----------------------------------------------------------------------------
 * info bar
 *---------------------------------------------------------------------------*/

#info_bar {
	margin-bottom: 2px;
}

#info_bar .content {
	line-height: 25px;
	padding-left: 15px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

#info_bar.warning .content {
	background-color: #f87;
	color: #511;
}
#info_bar h1 {
  display: inline;
  padding:0px;
  margin:0px;
  font-size:1em;
  border-bottom: 0px;
}

/*----------------------------------------------------------------------------
 * Google bubble
 *---------------------------------------------------------------------------*/

#gmap {
	height: 400px;
	float: right;
	width: 49.5%;
	border: 1px solid #9a9a9a;
	margin-top: 3px;
}

#google_bubble {
	  position: absolute;
     width: 320px;
}

#google_bubble_content {
  width: 300px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #999;   
   position: relative;
   display: table;
}

#google_bubble.top #google_bubble_content { 
	margin-bottom: 9px;
}

#google_bubble_s {
	width: 19px;
	height: 10px;
  font-size: 0px;
}
#google_bubble.top #google_bubble_s {
	background-image: url('/images/bubble_s_b.gif');
	position: absolute;
	bottom: 0px;
}

#google_bubble.bottom #google_bubble_content { 
	margin-top: 9px;
}

#google_bubble.bottom #google_bubble_s {
	background-image: url('/images/bubble_s_t.gif');
	top: 0px;
	position: absolute;
}

#google_bubble div.tools {
  text-align: right;
}

#google_bubble div.tools a {
  color: #666;
}

/*----------------------------------------------------------------------------
 * Main content
 *---------------------------------------------------------------------------*/

#doc3 {
	padding: 12px;
	background: #ddd;
}
.plain #doc3 {
	padding: 0px;
	background: #fff;
}

.content_block {
	border: 1px solid #ccc;
	padding: 5px 10px;
	background-color: #fff;
	margin-bottom: 10px;
}
 
h1, h2 {
	font-size: 1.5em;
	border-bottom: 1px solid #e7e7e7;
	margin-bottom: 10px;
	padding-bottom: 2px;
} 
.title_tools {
	float: right;
	font-size: 1em;
}

/*----------------------------------------------------------------------------
 * forms
 *---------------------------------------------------------------------------*/

#main .dl_form dt {
	clear: both;
   float: left;
	width: 200px;
	font-weight: bold;
}

#main .dl_form dd,
#main .yui-g .dl_form dd {
	border-bottom: 1px dotted #ccc;
}
#main .yui-b .dl_form dd{
	border-bottom: 0px solid black;
}
#main .dl_form dd,
#main .dl_form dt {
	line-height: 2em;
	padding-bottom: 3px;
	margin-bottom: 3px;
}


/*----------------------------------------------------------------------------
 * Auto-Complete
 *---------------------------------------------------------------------------*/
div.auto_complete {
  width: 350px;
  background: #fff;
}
div.auto_complete ul {
  border:1px solid #888;
  margin:0;
  padding:0;
  width:100%;
  list-style-type:none;
}
div.auto_complete ul li {
  margin:0;
  padding:3px;
}
div.auto_complete ul li.selected {
  background-color: #ffb;
}
div.auto_complete ul strong.highlight {
  color: #800; 
  margin:0;
  padding:0;
}

/*----------------------------------------------------------------------------
 * 
 * common/content.css: cross-theme stylesheet for content styles applicable to all portals.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core content components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 
 /*----------------------------------------------------------------------------
 * Error explanations
 *---------------------------------------------------------------------------*/



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

form h3.tab {
	margin-top: 1.25em;
	padding-bottom: 0.25em;
	font-size: 1.25em;
	border-bottom: 1px dotted #999;
}

form .required {
	color: red;
	margin-right: 0.2em;
}

/*----------------------------------------------------------------------------
 * Messages
 *---------------------------------------------------------------------------*/

#messages {
	background-color:#FFFBCF;
	border:1px solid #DDDDDD;
	margin:1em 5em;
	padding:0.5em 1em;
	text-align:left;
    }

#messages p {
	background-position:left 50%;
	background-repeat:no-repeat;
	font-weight:bold;
	margin:0.5em 0;
	padding-left:30px;
    }

#messages p.error {
	background-image: url(/global/images/icons_medium/error.png);
    color: red;
    }

#messages p.notice {
    color: green;
    }

p.warning, p.notice, p.error {
	padding: 6px 0px;
}
    
/*----------------------------------------------------------------------------
 * Error Explanation
 *---------------------------------------------------------------------------*/
    
#error_explanation {
  margin: 0 0 1em;
  padding: 0.5em;
  border: 1px solid #ccc;
}

#error_explanation ul {
  margin: 0 2em;
}    

#error_explanation ul li {
  list-style-type: disc;
  color: red;
}

#error_explanation h3 {
  font-weight: bold;
}

.field-with-errors input {
  background-color: #fcc;
}

#lightview_login_failure_text {
	color: #FF0000;
}

/*----------------------------------------------------------------------------
 * Help:- NB. This has been copied from /global/admin/common/stylesheets.css
 *---------------------------------------------------------------------------*/

#help {
	position: fixed;
	bottom: 20px;
	right: 24px;
	width: 50%;
	z-index: 99999;
	background: url(/global/images/patterns/shadow_alpha.png) no-repeat bottom right;
}

#help a {
	color: #000000;
}

#help_content_container {
	position: relative;
	margin: -6px 6px 6px -6px;
	background: #ffffff;
}

#help_content {
	border: 2px solid #f60;
	background: #fffbcf;
	overflow: auto;
	padding: 10px;
}

.help_actions {
	color: #777777;
	float: right;
	font-size: 0.85em;
}

.help_actions.bottom {
	float: none;
	text-align: center;
}

.help_actions a {
	color: #555555;
}

.help_actions a:hover {
	color: #333333;
}

#main #help h2, #help h3, #help h4 {
	margin-top: 0.5em;
    color: #333333;
	border: none;
}
    
#main #help h2 {
	margin: 0 0 0.5em 0;
    font-size: 1.2em;
	float: left;
	background-color: transparent;
	padding: 0;
	border-bottom: none;
	font-family:"trebuchet ms",arial,helvetica,sans-serif;
	font-weight: bold;
}
    
#help h3 {
    font-size: 1.1em;
}

#help blockquote {
    margin: 1em 0;
    padding: 0.5em 1em;
    background: #eee;
    overflow: auto;
}

#send_feedback {
	color: #666;
	font-size: 0.85em;
	margin-bottom: 0;
}

#send_feedback a {
	color: #666;
}

/*----------------------------------------------------------------------------
 * 
 * common/controllers.css: cross-theme stylesheet for content styles applicable to all portals.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core controller components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 

/*----------------------------------------------------------------------------
 * Search: results
 *---------------------------------------------------------------------------*/

.search_header {
	margin-bottom: 0.5em;
	}
	
.search_footer {
	margin-top: 0.5em;
	}
	
.search_details {
	float: left;
	}

.search_details .search_actions {
	margin: 0.25em 0 0.75em 0;
	}
	
#search_header .pagination,
#search_footer .pagination {
	float: right;
	margin: 0 0 1em 2em;
	}
	
body.sales #back_to_top,
body.lettings #back_to_top {
	float: right;
	}
	
	
	
/*----------------------------------------------------------------------------
 * Search: results
 *---------------------------------------------------------------------------*/

body.contact select {
	width: 90%;
	}
	
body.contact textarea {
	width: 90%;
	height: 10em;
	}

/*----------------------------------------------------------------------------
 * Property: display
 *---------------------------------------------------------------------------*/

#property_description.limited {
  height: 10em;
  position: relative;
  overflow: hidden;
}

#property_description_expander {
  position: absolute;
  bottom: -1px;
  width: 100%;
}

#property_description_expander .faded{
  background-color: #fff;
}

#property_description_expander .fade{
  height: 15px;
  font-size:0px;
  width: 100%;
  background-repeat: repeat-x;
  background-position: top;
  background-image: url(/global/images/transparent_to_white.png);
}

/*----------------------------------------------------------------------------
 * Map view
 *---------------------------------------------------------------------------*/

.loading_banner .spinner {
	background-image: url('/global/images/ajax_spinner_fff.gif');
	background-position: top center;
	background-repeat: no-repeat;
   display: block;
   margin-top: -15px;
}
  
#map_and_list_container .loading_banner h1 {
	position: absolute;
	top: 25%;
	width: 250px;
	text-align: center;
	font-size: 2em;
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 5px;
  border: 5px solid #666;
  color: #666;
}

/*----------------------------------------------------------------------------
 * Disambiguation
 *---------------------------------------------------------------------------*/

#disambiguations #gmap {
	float: left;
	width: 300px;
	height: 300px;
	margin-right: 20px;
}

#disambiguation_list {
	float: left;
}

/*----------------------------------------------------------------------------
 * Property listing
 *---------------------------------------------------------------------------*/
#agent_summary  #gmap {
  float: left;
  width: 300px;
  height: 300px;
  margin-right: 20px;
}
#listing {
	height: 400px;
	width: 49.5%;
	float: left;
	border: 1px solid #9a9a9a;
	overflow: auto;
	margin-top: 3px;
}

#list_loading_container {
	background-color: #eee;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 400px;
	width: 49.5%;
}


/*----------------------------------------------------------------------------
 * Property item
 *---------------------------------------------------------------------------*/

#google_bubble img,
#list_container .property .photo {
	float: left;
	margin-right: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}

.list_item .property {
	padding: 4px 7px;
}

#list_container .property_details {
	/*
	 * this was an attempt to prevent descriptions 
	 * from wrapping under the main photo 
	display: inline-block;
	display: table-cell; */
}

#list_container .property .spacer {
	float: right;
	height: 82px;
	width: 0px;
}

#list_container .property .price {
	color: #161;
	float: right;
	padding-top: 3px;
	font-size: 1.5em;
	font-weight: bold;
}

#list_container .property .display_address {
	font-size: 1.3em;
	font-weight: bold;
	padding-top: 3px;
	padding-bottom: 2px;
	display: block;
}

#list_container .property .features {
	font-weight: bold;
	display: block;
}
#list_container .property .small_photos {
	display: block;
	height: 55px;
	margin-top: 2px;
}


#list_container .property .short_description {
	display: block;
}

#list_container .property .desc_and_links {
	float: left;
	display:table-cell;
}

* html #list_container .property .desc_and_links {
	display: inline-block;
}

#list_container #actions {
	clear: right;
	float: right;
	margin: 4px 0 0 0;
}

ul#actions li {
	display: inline;
	color: #666;
	font-size: 0.9em;
	clear: right;
	margin-left: 0.5em;
	padding-left: 0.5em;
	border-left: 1px solid #999;
}

ul#actions li a {
	color: #666;
	text-decoration: none;
}

#actions ul li a:hover {
	text-decoration: underline;
}

ul#actions li.agency {
	border-left: none;
}

#actions li.remove {
	display: none;
}

#actions li.loading {
	display: none;
}

.loading #actions li.loading {
	display: inline;
	color: #999;
}

.favourite #actions li.add {
	display: none;
}

.favourite #actions li.remove {
	display: inline;
}

.loading #actions li.add, 
.loading #actions li.remove {
	display: none;
}

/*----------------------------------------------------------------------------
 * Pagination - extends from /global/stylesheets/common.css
 *---------------------------------------------------------------------------*/

.pagination {
	padding: 0px 7px;
	margin-top: 5px;
}

.pagination #pagination_summary {
	margin-bottom: 10px;
	font-size: 1.1em;
}

.pagination a {
	border-bottom: 1px dotted #999999;
	color: black;
	margin-right: 3px;
}

.pagination #pagination_text_container {
	margin-top: 10px;
	color:#888888; 
	font-size: 0.9em;
}

/*----------------------------------------------------------------------------
 * Property special items (favourite current...)
 *---------------------------------------------------------------------------*/

#list_container .favourite .property {
	border: 1px solid #fff;
	background-color: #fff3f3;
}

#list_container .current .property {
	border: 1px solid #fff;
	background-color: #eef4cc; /*dfe7be*/
}

#list_container .property {
	border: 1px solid #fff;
}

#home_property_list .show_all .list_item,
#home_property_list .list_item.favourite {
	display: block;
}
#home_property_list .list_item {
	display: none;
}

#google_bubble img {
	width: 120px;
	height: 90px;
}


/*----------------------------------------------------------------------------
 * Property details page
 *---------------------------------------------------------------------------*/

.heading_tools {
	float: right;
	margin-top: 0.2em;
}

.heading_tools li {
	border-right: 1px solid white;
	display: inline;
	margin-left: 1.2em;
	padding-right: 1.2em;
}

.heading_tools li.last {
	border-right: none;
	padding-right: 0px;
}

#property_assets {
	margin-bottom: 10px;
}

#default_photo_container .vc_outer,
#default_floorplan_container .vc_outer,
#default_epc_container .vc_outer {
	height: 240px;
   width: 320px;
}
#default_photo_container,
#default_floorplan_container,
#default_epc_container {
	border: 1px solid #ccc;
	height: 270px;
   width: 320px;
	float: left;
	margin-right: 9px;
	padding: 3px;
   display: inline;
}
.heading_tools .current a{
  font-weight: bold;
}

#thumbnail_holder {
	overflow: auto;
	height: 272px;
	padding: 1px;
}

#thumbnail_holder .vc_outer {
  width: 80px;
  height: 60px;
}	

.thumbnail_floorplan,
.thumbnail_epc,
.thumbnail_photo {
  float: left;
  width: 80px;
  height: 60px;
  margin-right: 8px;
	padding: 3px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.gallery_tools {
	float: right;
	margin-top: -0.5em;
	margin-right: 0.5em;
	font-weight: bold;
}

#gallery_caption {
	float: left;
	margin-top: -0.5em;
	margin-left: 0.5em;
	font-weight: bold;
}

.features li {
	list-style-type: disc;
}

.telephone {
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 0.5em;
}

#contact_agent {
	padding-bottom: 10px;
}

#full_description {
	line-height: 1.25em;
}

#actions ul,
#contact_agent ul {
	margin: 0;
}

#actions ul li,
#contact_agent ul li {
	margin-bottom: 0.75em;
	background: 0 50% no-repeat;
	padding-left: 28px;
}

#contact_agent ul li a:hover {
	text-decoration: underline;
}

#actions ul li.add {
	background-image: url(/images/icons/save.png);
}

#actions ul li.remove {
	background-image: url(/images/icons/save.png);
}

#actions ul li.enquire {
	background-image: url(/images/icons/enquire.png);
}

#actions ul li.send,
#contact_agent ul li.send {
	background-image: url(/images/icons/send.png);
}

#actions ul li.share {
	background-image: url(/images/icons/share.png);
}

#actions ul li.print_page {
	background-image: url(/images/icons/print.png);
}

#sidebar_map_container div {
	text-align: center;
	padding-bottom: 8px;
}

#sidebar_gmap {
	margin: 0;
	width: 235px;
	height: 235px;
}

#gpano_container p {
	margin-top: 0.2em;
	font-size: 0.9em;
	color: #999;
}

#gpano {
	border:1px solid #9A9A9A;	
}


/*----------------------------------------------------------------------------
 * yui tweaks
 *---------------------------------------------------------------------------*/
#doc3 {
	margin: auto 0px;
}

.yui-t4 #yui-main .yui-b {
	margin-right: 270px;
}

.yui-t4 .yui-b {
	width: 260px;
}

.yui-t2 #yui-main .yui-b {
	margin-left: 270px;
}

.yui-t2 .yui-b {
	width: 260px;
}

#request_details_form .hideable_help {
  display: inline;
  margin-left: 1em;
}


/*----------------------------------------------------------------------------
 * Home page (should this be on page specific css
 *---------------------------------------------------------------------------*/

.search_form_header {
  padding-top: 1.5em;
}

#search_form, 
.search_form_header {
  font-size: 1.3em;
  width: 800px;
  margin: auto;
}
#search_form dd, #search_form dt {
  line-height: 2.2em;
}
#search_form label {
  font-weight: bold;
}
  
.important_search_controls {
  font-size: 1.5em;
}
.important_search_controls input {
  float: left;
  margin-right:1em;
}

#search_form dt {
/* #search_form dl.no_caption dt { */
  display: none;
}

#search_form .dl_form dd {
    border-width: 0px;
    padding: 2px;
}

div.auto_complete ul li {
  font-size: 0.7em;
  line-height: 1em;
}

/*----------------------------------------------------------------------------
 * Profile page
 *---------------------------------------------------------------------------*/

.section_navigation {
	margin-bottom: 1em;
}

.section_navigation ul {
	margin: 0;
}

.section_navigation ul li {
	display: inline;
	float: left;
}

.section_navigation a {
	border-right:1px solid #FFFFFF;
	display:inline;
	float:left;
	font-size:1.1em;
	line-height:2em;
	margin:0;
	padding:0 0.5em;
	text-decoration:underline;
}

.section_navigation ul li.current a {
	font-weight:bold;
}

#profile_content #favourite_properties .item {
	margin-top:10px;
}

#profile_content #favourite_properties .item .photo {
	clear:left;
	display:inline;
	float:left;
	margin:5px 20px 0 0;
	width:160px;
}

#profile_content #favourite_properties .item_container {
	border-bottom:1px solid #CCCCCC;
	padding-left: 20px;
}

#profile_content #favourite_properties ul.property_summary {
	clear:right;
	display:inline;
	float:left;
	font-size:0.85em;
	font-weight:bold;
	margin:0 0 5px;
}

#profile_content #favourite_properties .property_description {
	margin-left: 180px;
}

#profile_content #favourite_properties ul.actions {
	margin:0 0 10px 180px;
}

#profile_content #favourite_properties ul.actions li {
	float: left;
	margin:1em 1em 1em 0;
}

#profile_content #favourite_properties .property_information {
	display:inline;
	float:left;
	margin-top:7px;
	overflow:hidden;
	width:270px;
}

#profile_content #favourite_lettings {
	margin-top: 20px;
}

/*----------------------------------------------------------------------------
 * Search form in side bar
 *---------------------------------------------------------------------------*/

.yui-g #search_query{
	width: 215px;
}

.yui-g #search_container fieldset {
	margin-top: 5px;
}

.yui-g  #search_container .buttons {
	margin-top: 10px;
}

.yui-b #search_container dl dt {
	line-height: 1em;
}

.yui-b #search_container .buttons {
	margin-bottom: 10px;
	float: right;
}

#town_list_container ul {
	margin: 0;
}

#town_list_container {
	float: left;
	width: 49.5%;
}

/*----------------------------------------------------------------------------
 * Map in sidebar
 *---------------------------------------------------------------------------*/

.yui-b #sidebar_map_container #gmap {
	width: 99%;
	height: 250px;
}

.yui-b #sidebar_map_container div {
	padding-bottom: 0px;
}

.yui-b #sidebar_map_container {
	margin-bottom: 10px;
}

.yui-b a#more_link {
	float: right;
}

/*----------------------------------------------------------------------------
 * Property listing
 *---------------------------------------------------------------------------*/

.list_container h3 {
	margin-bottom: 1px;
}

.list_container h3 a {
	color:#FFFFFF;
}

.list_container a {
	font-size: 1em;
}

.list_container .item_container {
	margin-top: 1em;
}

#actions_container {
	padding: 5px 5px;
	background-color: #EEEEEE;
	margin-bottom: 10px;
}

#actions_container #photo_actions {
	
}

#actions_container #photo_actions .photo_button {
	background-color: #EEEEEE;
	float: left;
	margin-right: 2px;
	padding: 0;
	display: block;
	padding: 0 5px;
	width: 0px;
  white-space: nowrap;
}
#actions_container #photo_actions>.photo_button {
	width: auto;
}

#actions_container #photo_actions .photo_button.slideshow {
	width: auto;
	height: 25px;
	line-height: 25px;
}

#actions_container #photo_actions .photo_button a#previous {
	background: left 50% no-repeat url("/images/go_previous.png");
	display: block;
	padding-left: 25px;
	outline: none;
	line-height: 25px;
	height: 25px;
	color:#555555;
}

#actions_container #photo_actions .photo_button a#next {
	background: right 50% no-repeat url("/images/go_next.png");
	outline: none;
	display: block;
	line-height: 25px;
	padding-right: 25px;
	height: 25px;
	color:#555555;
}

#actions_container #photo_actions .photo_button a#slideshow {
	background: left 50% no-repeat url("/images/photo_image.png");
	outline: none;
	display: block;
	padding-left: 25px;
	line-height: 25px;
	height: 25px;
	color:#555555;
}

#actions_container #photo_actions .photo_button a:hover {
	text-decoration: underline;
}

#actions_container #primary_actions {
	width: 320px;
	margin-right: 9px;
	float: left;
}


/*----------------------------------------------------------------------------
 * Agent directory listing
 *---------------------------------------------------------------------------*/
#agent_listing .agent {
  margin-bottom: 15px;
}

#agent_listing h3 {
  margin-bottom: 10px;
}

#agent_listing .logo {
  display: block;
  margin-right: 10px;
  width: 250px;
  height: 80px;
  float: left;
}

#agent_listing .more {
  float: right;
}

/*----------------------------------------------------------------------------
 * County town listing
 *---------------------------------------------------------------------------*/

ul.counties ul {
	margin: 0;
}

ul.counties ul li {
	margin: 0 0 0 10px;
	padding: 0 0 0 15px;
	background:transparent url(http://es.homesandproperty.co.uk/handp/media/arrow_5.gif) no-repeat scroll left top;
}

/*----------------------------------------------------------------------------
 * 
 * common/layout.css: cross-theme stylesheet for layout styles applicable to all site types eg portal & agency.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core layout components.
 *
 *---------------------------------------------------------------------------*/
 
 .png_fix { behavior: url(/global/stylesheets/iepngfix.htc) }
 
 
 /*----------------------------------------------------------------------------
 * Administration toolbar
 *---------------------------------------------------------------------------*/
 
#admin_container {
    font-size: 0.85em;
    }

#admin_container p {
    display: block;
    padding: 0.5em;
    background: #ccc;
    position: absolute;
    top: 0; left: 0;
    border-bottom: 1px solid #bbb;
    border-right: 1px solid #bbb;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    }

body #admin_container a {
    color: #fff;
    }
    
#admin {
    padding: 0.5em 0 0 0.5em;
    margin: 0;
    background: #ccc;
    color: #fff;
    border-bottom: 1px solid #bbb;
    }

#admin.hover {
    background: #aaa;
    border-bottom-color: #999;
    }

body #admin_container a:hover {
    color: black;
    }
    
#admin ul {
    margin: 0 0 0.5em 0;
    }

#admin li.sep {
	padding-right: 1.2em;
	border-right: 1px solid #999;
	}
	
#admin h3 {
    margin: 0 1em 0.5em 0;
    float: left;
    }

	
 /*----------------------------------------------------------------------------
 * Administration toolbar
 *---------------------------------------------------------------------------*/
 
 #slideshow div#slideshow_overlay {
    opacity: 0.6;
    filter: alpha(opacity=60);
	-moz-opacity: 0.6;
    bottom: 0px;
    top: auto;
    left: 0px;
    font-family: trebuchet, "trebuchet MS", helvetica, sans-serif;
    position: absolute;
    z-index: 999;
    color: black;
    background: #fff; 
    width: 100%; 
    font-size: 1.3em; 
    font-weight: bold;
    padding: 0.25em 0;
    margin: 0;
    }

#slideshow_overlay p {
	margin: 0 0.5em;
	}


	

/*----------------------------------------------------------------------------
 * 
 * common/content.css: cross-theme stylesheet for content styles applicable to all sites.
 * 
 * This stylesheet should be incorporated by all themes to provide styling
 * for core content components (e.g. login, registration).
 *
 *---------------------------------------------------------------------------*/
 
 
/*----------------------------------------------------------------------------
 * General
 *---------------------------------------------------------------------------*/

ul {
    margin: 0 0 1em 2em;
    }

h2, h3, h4, h5, h6 {
	line-height: 1.25em;
	}
	

/*----------------------------------------------------------------------------
 * Icons
 *---------------------------------------------------------------------------*/

td.icon_with_filename a.pdf {
    display: block;
    padding: 58px 17px 6px 20px;
    background: 50% 6px url(/global/images/icons_misc/document_pdf_48x48.png) no-repeat;
    font-size: 0.8em;
	color: #666;
    text-decoration: none;
    color: #666;
	}


/*----------------------------------------------------------------------------
 * Maps
 *---------------------------------------------------------------------------*/
 
#gmap {
	height: 300px;
	}
 
#gmap .bubble {
	padding: 0;
	color: #333;
	font-size: 0.9em;
	}

html body #gmap .bubble h3 {
	color: #666;
	margin: 0 1em 0.25em 0; 
	padding: 0;
	border: none;
	font-size: 1.1em;
	}
	
#gmap .bubble p.thumbnail {
	float: left;
	margin: 0 10px 0 0;
	}

#gmap .bubble p.thumbnail img {
	width: 80px; height: 60px;
	border: none;
	}
	
#gmap .bubble ul {
	float: left;
	list-style: none;
	margin: 0;
	}
	
#gmap .bubble ul li {
	margin: 0 0 0.25em 0;
	}
	
#gmap .bubble ul li.more {
	font-size: 0.9em;
	color: #666;
	margin-top: 0.75em;
	}

#gmap .bubble p.short_description {
	clear: left;
}


/*----------------------------------------------------------------------------
 * Forms
 *---------------------------------------------------------------------------*/
 
dd ul {
 	margin: 0;
	list-style-type: none;
	}


/*----------------------------------------------------------------------------
 * Trees
 *---------------------------------------------------------------------------*/

ul.tree li input {
	line-height: 1.5em;
}


/*----------------------------------------------------------------------------
 * Photos
 *---------------------------------------------------------------------------*/

div.media_block {
    margin-bottom: 20px;
}

div.media_block p {
 	margin: 0 0 0.1em;
    font-size: 0.9em;
}
	



/*
 * CSS for Standard tree layout
 * Copyright (C) 2005 SilverStripe Limited
 * Feel free to use this on your websites, but please leave this message in the fies
 * http://www.silverstripe.com/blog
 */
 
ul.tree{
	width: auto;
	padding-left : 0px;
	margin-left : 0px;
}

ul.tree img{
 	border : none;
}
 

ul.tree, ul.tree ul {
	padding-left: 0;
}

ul.tree ul {
	margin-left: 16px;
		
}
ul.tree li.closed ul {
	display: none;
}


ul.tree li {
	list-style: none;
	background: url(i-repeater.gif) 0 0 repeat-y;
	display: block;
	width: auto;
	/* background-color:#FFFFFF; */
}



ul.tree li.last {
	list-style: none;
	background-image: none;
}



/* Span-A: I/L/I glpyhs */
ul.tree span.a {
	background: url(t.gif) 0 50% no-repeat;
	display: block;
}
ul.tree span.a.last {
	background: url(l.gif) 0 50% no-repeat;
}

/* Span-B: Plus/Minus icon */
ul.tree span.b {
    width: 12px;
    padding-left: 12px;
}
ul.tree span.a.children span.b {
	background: url(minus.gif) 0 50% no-repeat;
	cursor: pointer;
}
ul.tree li.closed span.a.children span.b {
	background: url(plus.gif) 0 50% no-repeat;
	cursor: pointer;
}

/* Span-C: Spacing and extending tree line below the icon */
ul.tree span.c {
	margin-left: 6px;
}
ul.tree span.a.children span.c {
	background: url(i-bottom.gif) 0 50% no-repeat;
}
ul.tree span.a.spanClosed span.c {
	background-image: none;
}


/* Anchor tag: Page icon */
ul.tree a  {
	white-space: nowrap;
	overflow: hidden;
	
	padding: 10px 0px 10px 18px;
	line-height: 16px;

	background: url(page-file.png) 0 50% no-repeat;
}
ul.tree span.a.children a {
	background-image: url(page-openfoldericon.png);
}
ul.tree span.a.children.spanClosed a {
	background-image: url(page-foldericon.png);
}

/* Unformatted tree */
ul.tree.unformatted li {
	background-image: none;
	padding-left: 16px;
}
ul.tree.unformatted li li {
	background-image: none;
	padding-left: 0px;
}

/*
 * Divs, by default store vertically aligned data
 */

ul.tree li div {
	float: right;
	clear: right;
	height: 1em;
	margin-top: -26px;
}
/* As inside DIVs should be treated normally */
ul.tree div a  {
	padding: 0;
	background-image: none;
	min-height: auto;
	height: auto;
}

ul.tree li A:link, ul.tree li A:hover, ul.tree li A:visited {
	color : #111111;
}


ul.tree li .over{
	background-color : pink;
}


/* lightview.css
   http://www.nickstakenburg.com/projects/lightview
*/

#lightview {
	position: absolute;
	top: 50%;
	left: 50%;
	height: 150px;
	width: 150px;
	margin: -75px 0 0 -75px;
	padding: 0;
	text-align: left;
}

/* The container that holds everything */
.lv_Container {
	position: relative;
	width: 100%;
	height: 100%;
	background: none;
	padding: 0;
	margin: 0;
}

.lv_Button {
	cursor: pointer;
	text-decoration: none;
	border: none;
	background: none;
	margin: 0;
	padding: 0;
}

/* The buttons on the side when you view a gallery */
.lv_Sides {
	position: absolute;
	top: 50%;
	left: 0;
	clear: both;
	width: 100%;
	padding: 0;
	margin: 0;
}
.lv_Sides * { padding: 0; margin: 0; }
.lv_Sides li {
	list-style-type: none;
	position: relative;
}

.lv_PrevSide { float: left; }
.lv_NextSide { float: right; }
.lv_Sides .lv_Wrapper {
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.lv_Sides .lv_Button {
	float: left;
	background: none;
}

/* The frames above and below the center, that hold the corners.
   It's recommended not to change anything here, a lot is done in
   javascript to build further upon this based on your settings.
*/
.lv_Frames {
	width: 100%;
	height: 100%;
	position: relative;
	padding: 0;
	margin: 0;
}
.lv_Frames li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.lv_Frame {
	width: 100%;
	display: block;
}
.lv_Frame * { padding: 0; margin: 0; }
.lv_FrameTop {
	position: absolute;
	left: 0;
	width: 100%;
	display: block;
}
.lv_FrameBottom {
	position: relative;
	float: left;
	clear: both;
}

.lv_Liquid {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	clear: both;
}
.lv_Liquid .lv_Filler {
	position: absolute;
	height: 100%;
	width: 2px;
	top: 0;
	left: 50%;
}

.lv_Half {
	display: block;
	height: 100%;
	clear: both;
	line-height: 0px;
}
.lv_Half li { list-style-type: none; }
.lv_Corner {
	float: left;
	position: relative;
}
.lv_CornerTr, .lv_CornerBr { float: right; }

.lv_Fill {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.lv_Half .lv_CornerWrapper {
	float: left;
	position: relative;
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.lv_HalfRight .lv_CornerWrapper { float: right; }

.lv_Corner { position: relative; }
.lv_Corner canvas { position: relative; }
.lv_HalfLeft .lv_Corner { float: left; }
.lv_HalfRight .lv_Corner {
	position: relative;
	float: right;
}

/* To position content correctly in the center with correct
   rounded corner display we need a few wrappers.
   This is to get it right on all browsers.
*/
.lv_Center {
	position: relative;
	clear: both;
	height: 100%;
	overflow: hidden;
	background: none;
	padding: 0;
	margin: 0;
}
.lv_WrapUp {
	position: absolute;
	left: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.lv_WrapDown {
	position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}
.lv_WrapCenter {
	position: relative;
	padding: 0;
	margin: 0;
}

/* The loading indicator */
.lv_Loading {
	position: absolute;
	top: 50%;
	left: 50%;
}
.lv_Loading .lv_Button {
	float: left;
	height: 100%;
	width: 100%;
}

.lv_MediaWrapper {
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	clear: both;
	padding: 0;
	margin: 0;
}
.lv_MediaWrapper img {
	position: relative;
	float: left;
	padding: 0;
	margin: 0;
}

/* The overlays on top of images that toggle the previous/next buttons */
.lv_PrevNext {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
.lv_PrevNext * { padding: 0; margin: 0; }
.lv_PrevNext .lv_Button {
	position: relative;
	height: 100%;
}
.lv_PrevButton { float: left; }
.lv_NextButton { float: right; }

/* The bar that holds title, caption, imagenumber, slideshow and closebutton */
.lv_MenuBar {
	clear: both;
	position: relative;
	width: 100%;
	font: 11px Arial, Helvetica, sans-serif;
	color: #7a7a7a;
	padding: 0;
	margin: 0;
	text-align: left;
}
.lv_MenuBar * { padding: 0; margin: 0;}


.lv_Close {
    position: relative;
	float: right;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.lv_Data {
	position: relative;
	float: left;
	padding-bottom: 3px;
	line-height: 13px;
	overflow: hidden;
}

/* simulates padding-left inside .lv_Data 
.lv_DataText div, .lv_ImgNumber div { margin-left: 3px; } */

.lv_Data li {
	list-style-type: none;
	float: left;
	margin-top: 3px;
}
.lv_DataText { width: 100%; }
.lv_DataText .lv_Title {
	font-weight: bold;
	margin-bottom: 2px;
}
.lv_DataText .lv_Caption { clear: both; }
.lv_Data .lv_ImgNumber {
	color: #a7a7a7;
	margin-right: 5px;
	margin-top: 5px;
}

.lv_Data .lv_innerPrevNext, 
.lv_Data .lv_Slideshow {
	position: relative;
	border-left: 1px solid #d7d7d7;
	padding: 0 5px;
	margin-top: 5px;
	vertical-align: middle;
}
.lv_Data .lv_Slideshow { padding-right: 0px; }

.lv_Data .lv_innerPrevNext .lv_Button, 
.lv_Data .lv_Slideshow .lv_Button { /* play and stop */
	float: left;
	background-position: center left;
	background-repeat: no-repeat;
}

/* the boxes that hold media or external content */
.lv_contentTop,
.lv_contentBottom {
	position: relative;
	float: left;
	margin: 0;
	padding: 0;
	clear: both;
}

#lightview iframe {
	float: left;
	border: 0;
	clear: both;
	padding: 0;
	margin: 0;
	background: none;
}

/* The container that hold buttons above the view, currently only topclose */
.lv_topButtons {
	position: absolute;
	left: 0;
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.lv_topcloseButtonImage { cursor: pointer; }


/* The error/warning/download message that will appear when
   a required plugin is not installed.
*/
#lightviewError p { padding: 0 0 10px 0; }
#lightviewError div {
	padding: 6px;
	font: 11px Arial, Helvetica, sans-serif;
}
#lightviewError .message {
	background: #fcb5b5;
	color: #dd1f1f;
	margin-bottom: 3px;
}
#lightviewError .type { font-weight: bold; }
#lightviewError .pluginspage {
	background: #b5fcbd;
	color: #21be30;
}
#lightviewError a,
#lightviewError a:hover,
#lightviewError a:visited {
	color: #21be30;
	text-decoration: none;
	background: none;
	font-weight: bold;
	border-bottom: 1px solid #7de689;
}
#lightviewError p {
	margin-left: 0;
	padding: 0;
}

#lv_overlay {
  position: absolute; /* Opera will use fixed */
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/* navbar
   Adds a bar below the view that takes over the default Controller
*/
#lightviewController {
	position: fixed;
	bottom: 0;
	top: 0;
	left: 50%;
	margin: 0;
	padding: 0;
	color: #d2d2d2;
	font: 11px Arial, Helvetica, sans-serif;
}
* html body #lightviewController { /* IE6 */
	position: absolute;
	top: auto;
	margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) + (Lightview.controllerOffset || 0)) + 'px');	
}
#lightviewController ul {
	display: block;
	height: 100%;
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}
.lv_controllerTop, .lv_controllerMiddle, .lv_controllerBottom {
	list-style-type: none;
	float: left;
	display: block;
	position: relative;
	clear: both;
	overflow: hidden;
	margin: 0;
	padding: 0;
}
.lv_controllerCenter  { width: auto; float: left; }
.lv_controllerCornerWrapper {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}
.lv_controllerCornerWrapperTopLeft,
.lv_controllerCornerWrapperBottomLeft { top: 0; left: -100%;}
.lv_controllerCornerWrapperTopRight,
.lv_controllerCornerWrapperBottomRight { top: 0; left: 100%;}

#lightviewController .lv_CornerWrapper {
	width: 100%;
}
#lightviewController .lv_Corner { float: left; }
#lightviewController .lv_Corner {
	float: right;
	position: relative;
}
#lightviewController .lv_CornerTr, #lightviewController .lv_CornerBr { float: left; }
.lv_controllerBetweenCorners {
	position: relative;
	height: 100%;
	overflow: hidden;
}

.lv_controllerMiddle {
	position: relative;
	height: 100%;
	float: left;
}
.lv_controllerCenter { float: left; width: auto;}
.lv_controllerCenter li {
	list-style-type: none;
	float: left;
	display: inline;
	position: relative;
	clear: none;
}
.lv_controllerSetNumber {
	float: left;
	text-align: center;
}

#lightviewController .lv_Button {
	float: left;
	position: relative;
	height: 100%;
	clear: none;
}
.lv_controllerSetNumber {
	position: relative;
	height: 100%;
	padding-right: 3px;
}
.lv_controllerPrev, 
.lv_controllerNext, 
.lv_controllerSlideshow, 
.lv_controllerClose {
	float: left;
	position: relative;
	height: 100%;
	padding-left: 3px;
}

.lv_controllerPrev { border-left: 1px solid #3c3c3c; }
#lightviewController .lv_controllerNext { padding-right: 3px; border-right: 1px solid #3c3c3c; }

* html #lightview { /* IE6 */
	position: absolute;
	margin-top: expression( (-1 * this.offsetHeight / 2 + (document.documentElement ? document.documentElement.scrollTop : 0) - (Lightview.controllerHeight || 0)) + 'px');
	margin-left: expression( -1 * this.offsetWidth / 2 + (document.documentElement ? document.documentElement.scrollLeft : 0) + 'px');
}

/* Always cover 100% of the screen in IE6 */
html #lv_overlay {
	position: absolute;
	height: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollHeight, document.documentElement.scrollHeight, document.body.offsetHeight, document.documentElement.clientHeight].max() : document.documentElement.scrollHeight) + 'px' );
	width: expression(((window.Enumerable && window.Enumerable.max) ? [document.body.scrollWidth, document.documentElement.scrollWidth, document.body.offsetWidth, document.documentElement.clientHeight].max() : document.documentElement.scrollWidth) + 'px' );
}