/** ----------------------------------------------------------
 *
 * Contains the main layout of the page and the individual styles.
 * Acts as the main stylesheet for theme.
 *
 *		Include your notes or table of contents below....
 *		Include color hex's or values of your grid
 *
 *		1. OOCSS GRID
 *		2. MAIN LAYOUT
 *		3. HEADER
 *			- Brand
 *			- Search Form
 *		4. Navigation
 *			- Primary Navigation
 *			- tablet Navigation
 *			- Secondary Navigation
 *			- Secondary Nav 2-5 Levels deep
 *		5. Mixed
 *		6. Footer
 *		7. Page Specific Layout
 *			- Homepage
 *			- Search Results
 *		8. Device and Responsive Layout
 *			- Breakpoint 960px
 *			- Breakpoint 640px
 *				- Search Form
 *				- Main Content
 *		9. Print Styles
 *			- Simple Theme custom print styles
 *
 * @author Your Name <email@silverstripe.com>
 * ------------------------------------------------------- */

/* OOCSS Grid
* https://github.com/stubbornella/oocss/wiki/grids
*/

.line, /* line - Groups units on one horizontal line. Note: for mobile layout units may be stacked to avoid horizontal scrolling. */
.lastUnit {
	overflow:hidden;
	*overflow:visible;
	*zoom:1;
	padding:0 10px;
}
.unit { /* unit - Base class which divides a line into sections (columns). */
	float:left;
	padding:0px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box; /* box-sizing:border-box; creates a box-model where
	padding and border are NOT added onto the width - they are included in the width,
	so a 200px wide element with 20px padding will be 200px, NOT 240px wide */
}
.unitRightv { /* Use this class if you want to offset a column eg: |--content(.unit)--|--content(.unit)--|--no-content--|--no-content--|--content(.unitRighttv)--| */
	float:right;
}

/* sizeXofY - Extends unit. Indicates the fractional width of the unit, for example size3of4 would take up three quarters, or 75%, of the horizontal space.
The following fractions are supported: 1, 1/2, 1/3, 2/3, 1/4, 3/4, 1/5, 2/5, 3/5, 4/5 */
/* It is possible to add more columns if you wish you will just have to add the fractions that are missing eg: .size1of6 {width:16.66666%;} */

.size1of1 {
	float:none;
}
.size1of2 {
	width:50%;
}
.size1of3 {
	width:33.33333%;
}
.size2of3 {
	width:66.66666%;
}
.size1of4 {
	width:25%;
}
.size3of4 {
	width:75%;
}
.size1of5 {
	width:20%;
}
.size2of5 {
	width:40%;
}
.size3of5 {
	width:60%;
}
.size4of5 {
	width:80%;
}
.lastUnit { /* lastUnit - Extends unit. Applied to the last child of every line. */
	float:none;
	width:auto;
	_position:relative; /* Bug fix for IE6 - Internet Explorer 6 and below wouldn't fail on properties that were prefixed with non-alphanumeric characters.
	meaning that anything prefixed with _ wouldn't be picked up by any other browsers */
	_left:-3px;
	_margin-right:-3px;
}

/* MAIN LAYOUT */
body {
    margin: 0;
    background: #ededed;
    min-width: 240px;
    -webkit-text-size-adjust: none; /* The text size is not adjusted for Safari on iPhone */
    font-family: arial !important;
}
	.ie7 body,
	.ie8 body {
	    min-width: 860px; /* media queries are not supported in ie7/8 without a polyfill */
	}
	.main {
	    background: #ededed;
	    padding: 30px 0 60px;
	    min-height: 300px;
	}
	.inner {
	    max-width: 1500px;
	    margin: 0 auto;
	    padding: 0 30px;
	}
	.ie6 .inner {
	    width: 960px;
	}
	.no-sidebar .content-container {
	    float: left;
	    width:100%; /* makes content container full width when there is no sidebar */
	}
	.sidebar { /* this is the sidebar element */
	    margin-top: 12px;
	    padding: 0px 20px;
	    padding-left: 0px;


	}
	.no-sidebar .sidebar {
		display: none;
	}


/* HEADER */

.header {
    background: #fff;
    min-height: 150px;
}
	.header .inner {
	    padding-top: 0px;
	    position: relative;
	   height: 100px;
	}

	/* Brand */
	header .brand, header .brand:hover {
	    float: left;
	    color: #000;
	    display: inline-block;
	}

.brand  img {width: 320px; margin: 30px 0px; margin-top: 40px;}




		.brand h1 {
		    margin: 0;
		    padding: 0;
		    font-size: 48px;
		    font-family: "HelveticaNeueLTPro-Bd", "Helvetica Neue LT Pro Bold", "HelveticaNeueBold", "HelveticaNeue-Bold", "Helvetica Neue Bold", "Helvetica Neue LT Pro", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		    color: #000;
		    font-weight: 600;
		    font-stretch: normal; /* default value. No font stretching */
		    line-height: 1em;
		}
		.brand p {
		    color: #888;
		    margin-bottom: 22px;
		}
		.brand:hover { text-decoration: none; }

	/* Search form & social */
	.callIcon {display: none;font-size: 24px; color: #9EC154; margin: 0px 5px;}
	.callIcon a {color: #9EC154;}
	.social-bar {
    	position: absolute;
    	right: 0;
    	top: 55px;
	}


	.social-bar i {font-size: 24px; color: #999; margin: 0px 5px;}

	.social-bar i:hover {color: #666;}




	.search-bar {
		position: absolute;
		right: 0px;
		top: 100px;
	}






	.search-bar .field {
		margin: 0;
		padding: 0;
	}
	.search-bar form input.text {
	    width: 155px;
	    padding: 5px 34px 5px 15px;
	    color: #fff;
	    margin: 0;
	    border: none;
	    -moz-border-radius: 14px;
	    border-radius: 14px;
	    background: #888;
	}

	.search-bar form input.action { /* positions the search button icon over the top of the search input */
	    font-size: 14px;
	    position: absolute;
	    right: 5px;
	    top: 0;
	    cursor: pointer;
	    border: none;
	    padding: 5px;
	    background: none;
	    font-family: 'WebSymbolsRegular';
	    color: #fff;
		border-radius: 0;
		margin: 0;
	}
	.search-bar form input.active,
	.search-bar form input.action:hover {
	    color: #fff;
	}
	.search-bar form input:focus,
	.header textarea:focus {
	    outline: none; /* removes default browser outlining on focus */
	}
	.search-dropdown-icon {
	    display: none; /* hides search-dropdown-icon when site is at full width - media queries set it to display:block when at mobile/tablet width */
	}

/* NAVIGATION */

	/* Primary navigation */
	.header .inner .unit {
		position: relative; /* used to position the main navigation */

		height: 140px;
	}
	.header .primary ul {
		position:absolute;
		top:0;
		right:0; /* positions the main navigation */
	}
	.header .primary li {
	    float: left;
	    padding-bottom: 5px;
	    margin: 0 10px;
	    margin-right: 0px;
	    position: relative;
	    white-space: nowrap; /* forces text to never wrap onto a second line */
	}
	.header .primary li a {
	    color: #888;
	    font-size: 15px;
	    font-family: Helvetica, Arial, sans-serif;
	    padding: 6px 8px;
	    padding-right: 0px;
	    font-weight: bold;
	    display: block;

	    text-align: center  !important;
	    text-decoration: none;
	}
	.header .primary li a {
		border-left: 1px solid #ddd;
	}
	.header .primary li:first-child a {
		border-left: none;
	}
	.header .primary li a:hover {
	    color: #333;
	    text-decoration: none;
	}


	.header .primary li.section a,
	.header .primary li.current a {
	    color: #333;
	}



	.header .primary li.login {
	    float: left;
	    padding-bottom: 5px;
	    margin: 0 10px;
	    margin-right: 0px;
	    position: relative;
	    white-space: nowrap; /* forces text to never wrap onto a second line */
	}
	.header .primary li.login a {
	    color: #9EC154;
	    font-size: 15px;
	    font-family: Helvetica, Arial, sans-serif;
	    padding: 6px 8px;
	    padding-right: 0px;
	    font-weight: bold;
	    display: block;

	    text-align: center  !important;
	    text-decoration: none;
	}
	.header .primary li.login a {
		border-left: 1px solid #ddd;
	}
	.header .primary li:first-child a {
		border-left: none;
	}
	.header .primary li.login a:hover {
	    color: #9EC154;
	    text-decoration: underline;
	}


	.header .primary li.logout a {
		color: #900;
	}


	.header .primary li.section a,
	.header .primary li.current a {
	    color: #333;
	}











	.header .subprimary {margin-left: 0px; }

	/* Lower navigation */
	.header .subprimary ul {

		bottom:0;

		right:0; /* positions the main navigation */

	}





	.header .subprimary li {
	    float: left;
	    padding-bottom: 5px;
	    margin: 0 0px;


	    position: relative;
	    margin-bottom: 5px;
	    white-space: nowrap; /* forces text to never wrap onto a second line */
	}
	.header .subprimary li a {
	    color: #9EC154;
	    font-size: 15px;


	    font-family: Helvetica, Arial, sans-serif;
	    padding: 6px 12px;
	    font-weight: bold;
	    text-decoration: uppercase;
	}
	.header .subprimary li a {
		border-left: 1px solid #9EC154;
	}
	.header .subprimary li a:hover {
		text-decoration: none;
	}
	.header .subprimary li:first-child a {
		border-left: none;
	}
	.header .subprimary li, .header .subprimary li {
		border-bottom: #fff 4px solid;
	}
	.header .subprimary li:hover {
		border-bottom: #888 4px solid;
	}
	.header .subprimary li.current {
		border-bottom: #9EC154 4px solid;
	}

	/* Tablet Navigation */
	/* When navigation and logo overlap tablet-nav is initialized */
	.tablet-nav .brand p {
	    margin-bottom: 0;
	}
	.tablet-nav .header .inner {
	    padding-top: 20px;
	}
	.tablet-nav .header .primary ul {
	    float: left;
	    clear: both;
	    position: relative;
	    margin: 20px 0 0 -13px;
	    white-space: nowrap;
	    right: auto; /* resets the right property value that is set for the desktop site */
	}
		.tablet-nav .header .primary ul li {
		    white-space: nowrap;
		}
			.tablet-nav .header .primary ul li a { /* there is no hover on touch devices so no transition on hover is necessary */
			    -moz-transition: none;
			    -webkit-transition: none;
			    transition: none;
			}
	.tablet-nav .footer .right {
	    float: left;
	    width: 100%;
	}

	/* Secondary navigation */
	.main .secondary h3 {
	    font-size: 20px;
	    color: #AAA;
	    margin: 0 0 8px 0;
	    font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif;
	    font-weight: normal;
	}
	.main .secondary {
	    border-bottom: 1px solid #ccc;
	    margin-top: 38px;
	}
		.main .secondary ul {
		    padding: 0;
		    margin: 0;
		}
		.main .secondary li {
		    border-top: 1px solid #ccc;
		    position: relative;
		    font-weight: bold;
		    list-style-type: none;
		    margin-bottom: 0;
		}
			.main .secondary li .arrow {
			    color: #9EC154;
			    padding-right: 5px;
			    display: block;
			    font-size: 15px;
			    line-height: 20px;
			    position: absolute;
			    left: 5px;
			    top: 9px;
			    -moz-transition: 0.2s; /* this transition moves the arrow from left:2px to left:6px */
			    -webkit-transition: 0.2s;
			    transition: 0.2s;
			}
		.main .secondary li a:hover .arrow {
		    left: 9px; /* this sets the final position for the arrow transition */
		}
		.main .secondary li a { /* side nav link styling */
		    padding: 10px 0;
		    display: block;


		    font-size: 15px;
		    color: #333;
		    line-height: 17px;
		    border-bottom: none;

		}
		.main .secondary li .text {
		    padding-left: 20px;
		    display: block;
		}
		.main .secondary li.current a.current {
			color: #9EC154;
			background-color: #fff;
		}
		.main .secondary li.section,
		.main .secondary li.current {
		    background-color: #F3F3F3;
		}
			.main .secondary li.section a,
			.main .secondary li.current a {
			    color: #000;
			}


		/* Secondary navigation 2-5 levels deep */
		.main .secondary ul ul {
			display: none;
		}
		.secondary ul li.current ul,
		.secondary ul li.section ul { /* Only show child pages from selected parent */
			display: block;
		}
		.secondary li.current ul ul {
			display: none;
		}
		.main .secondary ul ul li a { padding-left: 10px; } /* Indent all sidebar navigation levels*/
			.main .secondary ul ul li a .arrow { left: 12px; }
			.main .secondary ul ul li a:hover .arrow { left: 16px; }

		.main .secondary ul ul ul li a { padding-left: 20px; }
			.main .secondary ul ul ul li a .arrow { left: 22px; }
			.main .secondary ul ul ul li a:hover .arrow { left: 26px; }

		.main .secondary ul ul ul ul li a { padding-left: 30px; }
			.main .secondary ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary ul ul ul ul ul li a { padding-left: 40px; }
			.main .secondary ul ul ul ul ul li a .arrow { left: 32px; }
			.main .secondary ul ul ul ul ul li a:hover .arrow { left: 36px; }

		.main .secondary li a:hover,
		.main .secondary li.section a:hover,
		.main .secondary li.current a:hover {
			color: #9EC154;
			text-decoration: none;
		}




/* MIXED */
header:after,
.main:after,
#Root:after,
.search-bar:after,
header .inner:after,
footer:after { /* clearfix */
    height: 0;
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
}
.search-bar form input.action,
.header .primary li a,
.footer a { /* adds color transition when links/inputs on hover */
    -moz-transition: color 0.2s;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}
.footer a.brand { color: #fff; margin-left: 0; }
.footer a.brand:hover { color: rgba(255,255,255,0.8); }



body h1 span.amp {
    font-family: Baskerville,"Goudy Old Style","Palatino","Book Antiqua",Georgia;
    font-style: italic;
}


/* FOOTER */
.footer {
    color: #fff;
    background: #032742;
    padding: 20px 0;

    line-height: 20px;
}
	.footer a {
	    color: #fff;
	    text-decoration: none;
	}
	.footer a:hover {
	    color: rgba(255,255,255,0.8);
	    text-decoration: none;
	}
	.footer .left {
	    float: left;
	    color: #fff;
	    display: block;
	    margin-bottom: 10px;
	}
	.footer .right {
	    float: right;
	    display: block;
	    margin-bottom: 10px;
	}
	.footer span {
	    padding: 0 3px;
	    color: #bbb;
	}
	.footer .primary,
	.footer .primary ul {
	    display: inline;
	    margin: 0;
	    padding: 0;
	}
		.footer .primary li {
		    display: inline;
		}
	.ie6 .footer .primary li,
	.ie7 .footer .primary li { /* this is a bugfix for ie6/7 */
	    display: inline;
	    zoom: 1;
	    margin-right: 10px;
	}
	.footer .primary li:after { /* adds '/' to separate the footer navigation items */
	    padding: 0 3px 0 5px;
	    content: '/';
	    color: #fff;
	}
	.footer .primary li:last-child:after {
	    content: ''; /* makes sure last nav item doesn't have a '/' following it */
	}
	.footer .arrow {
	    padding: 0 8px 0 5px;
	    color: #9EC154;
	    font-size: 13px;
	}
	.footer .primary .nav-open-button {
	    display: none; /* the footer includes the primary nav include - this makes sure the nav open close button doesn't show up */
	}

/* PAGE SPECIFIC LAYOUT */

	/* Homepage */
		/* currently no Hompage specific styles - feel free to add your own */

	/* Search Page */
	.searchFormHolder {
		background: #666;
		padding: 10px 20px !important;
		margin-top: 0px;
		margin-bottom: 30px;
		color: #fff;

		-webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
	}




	.searchFormHolder h2 {
		color: #fff;
		margin: 10px 0;
	}
	.searchFormHolder form {
		width: 100%;
		max-width: unset;
	}
	.searchFormHolder select, .searchFormHolder input {
		color: #000;
		width: 100px;

	}
	.searchFormHolder .fieldgroup-field {
		float: left;
		margin-left: 0px;
		margin-right: 10px;
	}

	/* Search Results */
	.typography .searchResults h1 {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: none;
	}
	.searchResults p.searchQuery {
	    margin-bottom: 10px;
	    font-size: 15px;
	    font-weight: bold;
	}
	.searchResults ul#SearchResults {
	    padding: 0;
	    border-bottom: 1px solid #e5e5e5;
	    margin:0;
	}
		.searchResults ul#SearchResults li {
		    border-top: 1px solid #e5e5e5;
		    padding: 20px 0;
		    list-style-type: none;
		}
		.searchResults ul#SearchResults p {
		    margin-bottom: 10px;
		}
		.searchResults #PageNumbers a {
		    padding: 0 5px;
		}
		.searchResults #PageNumbers .pagination {
		   	border-bottom: 1px solid #e5e5e5;
		    padding: 20px 0;
		    display:table; /* displays the pagination as a table so that elements stay inline and the middle column adjusts its size to accomodate and the right arrow stays to the right */
		    width:100%;
		}
		.searchResults #PageNumbers .pagination span{
			display:table-cell; /* each element in the pagination div displays as a table cell */
		}
		.searchResults #PageNumbers p {
		    text-align: center;
		    padding:20px 0;
		}
		.searchResults #PageNumbers .next,
		.searchResults #PageNumbers .prev {
		    font-size: 14px;
		    padding: 0 20px;
		    display:table-cell; /* each element in the pagination div displays as a table cell */
		    vertical-align: middle;
		    border-bottom:0 !important;
		}
		.searchResults #PageNumbers .next {
		    margin-left: 15px;
		}
		.searchResults #PageNumbers .prev {
		    margin-right: 15px;
		}

/* DEVICE & RESPONSIVE LAYOUT */
.header .nav-open-button {
    display: none; /* removes the nav toggle button for desktop site */
}
#media-query-trigger {
    /* instead of detecting the width of the window in simple/javascript/script.js it detects the visibility of this element (which is set using media queries)
    instead to trigger the hiding/showing of nav and search in mobile mode */
    display: none;
    visibility: hidden;
}

/* BREAKPOINT 960px */

@media only screen and (max-width: 960px) {
	.content img {
	    max-width: 97%;
	    height: auto;
	}
	.header .primary ul {
	    margin-left: -12px;
	    -webkit-padding-start: 0px; /* removes default webkit padding on ul items */
	}
}

/* BREAKPOINT 640px */

/* when changing the breakpoint below, change it ito the same value in the script.js file as well */
@media only screen and (max-width: 640px) {
	body {
	    max-width: 640px;
	}
	#media-query-trigger {
	    visibility: visible;
	}

	/* Navigation*/

	.tablet-nav .header .brand {
	    float: none;
	    display: inline-block;
	    margin-left: 22px;
	    margin-bottom: 22px;
	}
		.brand h1 {
		    font-size: 40px;
		}
		.brand h1 {
		    padding-right: 100px; /* padding stops .brand text from overlapping the search and nav buttons */
		}
	.tablet-nav .header {
	    padding: 0px;
	}
		.tablet-nav .header .inner {
		    padding: 20px 0 0 0;
		    min-height: 0;
		}
		.tablet-nav .header .primary .nav-open-button { /* styling and positioning of the nav toggle button */
		    z-index: 100;
		    width: 20px;
		    height: 20px;
		    position: absolute;
		    right: 20px;
		    top: 35px;
		    display: block;
		    cursor: pointer;
		    font-family: 'WebSymbolsRegular';
		    font-size: 20px;
		    color: #ededed;
		}
		.tablet-nav .header .primary ul {
		    z-index: 10;
		    position: relative;
		    display: none; /* initially hiding the navigation */
		    float: left;
		    margin: 0;
		    padding: 0;
		    white-space: normal;
		    width: 100%;
		}
			.tablet-nav .header .primary ul li {
			    width: 100%;
			    margin: 0;
			    padding: 0;
			    float: none; /* displays list items vertically */
			    background: none;
			    position: relative;
			    text-shadow: 0 1px #fff;
			}
			.tablet-nav .header .primary ul li:after { /* creates the arrow for the primary nav links */
			    content: '\003e';
			    display: block;
			    position: absolute;
			    right: 20px;
			    top: 0px;
			    font-family: 'WebSymbolsRegular';
			    font-size: 14px;
			    color: #999;
			    text-align: center;
			    vertical-align: middle;
			    line-height: 38px;
			}
			.tablet-nav .header .primary ul li a,
			.tablet-nav .header .primary ul li.current a,
			.tablet-nav .header .primary ul li.section a { /* styling the  top level nav links */
			    padding: 10px 0 10px 22px;
			    font-weight: bold;
			    border-bottom: 1px solid #bbb;
			    color: #434343;
			    background: #e7e7e7;
			}
			.tablet-nav .header .primary ul li.current a,
			.tablet-nav .header .primary ul li.section a {
				background: #CCCCCC; /* makes background on current top level page slightly darker */
			}
			.tablet-nav .header .primary ul li a:hover {
			    color: inherit;
			}
			.tablet-nav .header .primary li.section:after,
			.tablet-nav .header .primary li.current:after {
			    display: none; /* hides the link arrow on current top level page */
			}
			.tablet-nav .tablet-nav .header nav.primary ul li {
				padding: 0;
			}

	/* Search Form */
	.search-bar { /* adds new styling to mobile search bar */
	    width: 100%;
	    position: relative;
	    top: 0;
	    right: 0;
	    display: none; /* hides searchbar initially */
	    padding: 20px 0;
	    margin: 0;
	    background-color: #E7E7E7;
	}
	.search-dropdown-icon { /* styling for search toggle button */
	    display: block;
	    cursor: pointer;
	    width: 20px;
	    height: 20px;
	    position: absolute;
	    right: 60px;
	    top: 34px;
	    font-family: 'WebSymbolsRegular';
	    font-size: 20px;
	    color: #ededed;
	    text-align: center;
	    line-height: 20px;
	}
	.search-bar form {
	    margin: 0;
	    width: 100%;
	}
		.search-bar form fieldset {
		    padding: 0 18px;
		    left: 0;
		    right: 0;
		    position: relative;
		}
	.search-bar div.field {
	    margin-bottom: 0;
	}
	.search-bar form input.text {
	    width: 89%; /* makes search input full width - allowing for space either side */
	    max-width: 89%;
	    padding: 8px 10% 8px 1%;
	    text-indent: 15px;
	    position: relative;
	    display: block;
	    right: 0;
	    left: 0;
	    border: 1px solid #e5e5e5;
	    background: #fff;
	    font-size: 17px;
	    -moz-border-radius: 20px; /* increase border radius due to increased padding */
		border-radius: 20px;
	}
	.search-bar form input.action {
	    right: 5%;
	    top: 2px;
	    font-size: 18px;
	}

	/* Main Content */
	.main {
	    padding: 20px 0 45px; /* decrease padding so that more content can fit on screen */
	}
	.content-container,
	.sidebar {
	    width: 100%; /* sidenav is now shown above the page content */
	    margin-bottom: 30px;
	}
		.typography h1 { /* decrease size of page heading due to smaller screen */
		    font-size: 30px;
			line-height:35px;
		    margin-bottom: 15px;
		    padding-bottom: 10px;
		}
		.typography p {
		    font-size: 14px;
		    line-height: 23px;
		}
	p.intro {
	    font-size: 19px;
	    line-height: 27px;
	}
	.main .inner {
	    padding: 0 22px;
	}
	/* Secondry Nav */
	.secondary li a {
	    line-height: 24px;
	}
	.secondary li .arrow {
	    line-height: 26px;
	}
	/* Footer */
	.footer .right {
	    float: left;
	    width: 100%;
	}
}

/* Print Styles */

/* Based on HTML5 boilerplate print styles */
@media print {
	* {
	    background: transparent !important;
	    color: black !important;
	    box-shadow: none !important;
	    text-shadow: none !important;
	    filter: none !important;
	    -ms-filter: none !important;
	}
	a,
	a:visited {
	    text-decoration: underline
	}
	a[href]:after {
        content: " (" attr(href) ")";
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

	thead {
	    display: table-header-group
	}
	tr,
	img {
	    page-break-inside: avoid
	}
	img {
	    max-width: 100% !important
	}
	pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    /* Simple theme custom print styles */
	.header,
	.footer,
    .nav-open-button,
    .search-bar,
    .search-dropdown-icon,
    nav.primary {
	    display: none;
	}
}

/* #breadcrumb, tooltip, chzn
================================================= */
.breadcrumb {
  padding: 0;
  margin-bottom: -40px;
  text-align: left;
  background-color: transparent;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb > li + li:before {
  color: #fff;
  padding: 0px;
}
.tooltip-inner {
  white-space: nowrap;
  background-color: #fff;
  color: #74777c;
  border: 1px solid #e3e3e3;
  font-family: 'Open Sans', sans-serif;
}
.tooltip.in {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.tooltip.top .tooltip-arrow {
  border-top-color: #e3e3e3;
}
.tooltip.top .tooltip-arrow:after {
  content: "";
  position: absolute;
  left: -5px;
  border-color: transparent;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 5px 5px 0;
  border-top-color: #fff;
  margin-top: -6px;
  right: 0;
  top: 50%;
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: #e3e3e3;
}
.tooltip.bottom .tooltip-arrow:after {
  content: "";
  position: absolute;
  border-color: transparent;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 5px 5px;
  border-bottom-color: #fff;
  left: 50%;
  margin-left: -5px;
  top: 1px;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #e3e3e3;
}
.tooltip.right .tooltip-arrow:after {
  content: "";
  position: absolute;
  border-color: transparent;
  height: 0;
  width: 0;
  border-style: solid;
  border-right-color: #fff;
  border-width: 5px 5px 5px 0;
  left: 1px;
  margin-top: -5px;
  top: 50%;
}
.tooltip.left .tooltip-arrow {
  border-left-color: #e3e3e3;
}
.tooltip.left .tooltip-arrow:after {
  content: "";
  position: absolute;
  left: -6px;
  border-color: transparent;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #fff;
  margin-top: -5px;
  right: 0;
  top: 50%;
}
/* @group Base */
.chzn-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100% !important;
  margin-bottom: 15px;
  zoom: 1;
  /* *display: inline;*/

  -webkit-user-select: none;
  -moz-user-select: none;
}
.chzn-container .chzn-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #E2E3E5;
  color: #74777c;
}
.chzn-container.chzn-with-drop .chzn-drop {
  left: 0;
}
.chzn-container a {
  cursor: pointer;
}
/* @end */
/* @group Single chzn */
.chzn-container-single .chzn-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 15px;
  height: 41px;
  background-color: #fff;
  background-clip: padding-box;
  color: #74777c;
  text-decoration: none;
  white-space: nowrap;
  line-height: 41px;
  border: 1px solid #E4E4E4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.chzn-container-single .chzn-default {
  color: #74777c;
}
.chzn-container-single .chzn-single span {
  display: block;
  overflow: hidden;
  margin-right: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chzn-container-single .chzn-single-with-deselect span {
  margin-right: 60px;
}
.chzn-container-single .chzn-single abbr {
  position: absolute;
  top: 13px;
  right: 48px;
  display: block;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.chzn-container-single .chzn-single abbr:before {
  content: "\f00d";
}
.chzn-container-single .chzn-single abbr:hover {
  transform: scale(1.2);
}
.chzn-container-single .chzn-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 38px;
  height: 100%;
}
.chzn-container-single .chzn-single div:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1px;
  height: 80%;
  margin-top: 10%;
  border-left: 1px solid #E4E4E4;
}
.chzn-container-single .chzn-single div b {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  text-align: center;
}
.chzn-container-single .chzn-single div b:before {
  content: "\f078";
}
.chzn-container-single .chzn-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.chzn-container-single .chzn-search input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid rgba(116, 119, 124, 0.5);
  background-color: #fff;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.chzn-container-single .chzn-search:before {
  content: "\f002";
  position: absolute;
  top: 9px;
  right: 10px;
  color: #74777c;
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.chzn-container-single .chzn-drop {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-clip: padding-box;
}
.chzn-container-single.chzn-container-single-nosearch .chzn-search {
  position: absolute;
  left: -9999px;
}
/* @end */
/* @group Results */
.chzn-container .chzn-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 4px 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.chzn-container .chzn-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.chzn-container .chzn-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.chzn-container .chzn-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.chzn-container .chzn-results li.highlighted {
  background-color: rgba(32, 40, 51, 0.9);
  color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.chzn-container .chzn-results li.no-results {
  display: list-item;
  background: #f4f4f4;
}
.chzn-container .chzn-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default;
}
.chzn-container .chzn-results li.group-option {
  padding-left: 15px;
}
.chzn-container .chzn-results li em {
  font-style: normal;
  text-decoration: underline;
}
/* @end */
/* @group Multi chzn */
.chzn-container-multi .chzn-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  margin-bottom: 25px;
  width: 100%;
  height: auto !important;
  border-bottom: 1px solid #e3e3e3;
  background-color: transparent;
  cursor: text;
}
.chzn-container-multi .chzn-choices li {
  float: left;
  list-style: none;
}
.chzn-container-multi .chzn-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.chzn-container-multi .chzn-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 5px;
  height: auto;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: #74777c;
  font-size: 100%;
  font-family: 'Open Sans', sans-serif;
  line-height: normal;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.chzn-container-multi .chzn-choices li.search-field .default {
  color: #74777c;
}
.chzn-container-multi .chzn-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 0px 28px 0 14px;
  border: 1px solid #efbb29;
  background-color: #ffde6a;
  color: rgba(32, 40, 51, 0.92);
  line-height: 30px;
  cursor: default;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 8px;
  right: 12px;
  display: block;
  width: 12px;
  height: 12px;
  color: #d5a110;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:before {
  content: "\f00d";
}
.chzn-container-multi .chzn-choices li.search-choice .search-choice-close:hover {
  text-decoration: none;
  transform: scale(1.2);
}
.chzn-container-multi .chzn-choices li.search-choice-disabled {
  color: #adb2b6;
}
.chzn-container-multi .chzn-choices li.search-choice-focus {
  background: #d4d4d4;
}
.chzn-container-multi .chzn-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.chzn-container-multi .chzn-drop {
  margin-top: -30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.chzn-container-multi .chzn-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
/* @end */
/* @group Active  */
.chzn-container-active .chzn-single {
  -webkit-transition: border-color 0.3s ease-out;
  -moz-transition: border-color 0.3s ease-out;
  -ms-transition: border-color 0.3s ease-out;
  -o-transition: border-color 0.3s ease-out;
  transition: border-color 0.3s ease-out;
}
.chzn-container-active.chzn-with-drop .chzn-single {
  border-color: #adb2b6;
}
.chzn-container-active.chzn-with-drop .chzn-single div {
  border-left: none;
  background: transparent;
}
.chzn-container-active.chzn-with-drop .chzn-single div b {
  background-position: -18px 2px;
}
/* @end */
/* @group Disabled Support */
.chzn-disabled {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  cursor: default;
}
.chzn-disabled .chzn-single {
  cursor: default;
}
.chzn-disabled .chzn-choices .search-choice .search-choice-close {
  cursor: default;
}
/* @end */
/* @group Right to Left */
.chzn-rtl {
  text-align: right;
}
.chzn-rtl .chzn-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.chzn-rtl .chzn-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.chzn-rtl .chzn-single-with-deselect span {
  margin-left: 38px;
}
.chzn-rtl .chzn-single div {
  right: auto;
  left: 3px;
}
.chzn-rtl .chzn-single abbr {
  right: auto;
  left: 26px;
}
.chzn-rtl .chzn-choices li {
  float: right;
}
.chzn-rtl .chzn-choices li.search-field input[type="text"] {
  direction: rtl;
}
.chzn-rtl .chzn-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.chzn-rtl .chzn-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.chzn-rtl.chzn-container-single-nosearch .chzn-search,
.chzn-rtl .chzn-drop {
  left: 9999px;
}
.chzn-rtl.chzn-container-single .chzn-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.chzn-rtl .chzn-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.chzn-rtl.chzn-container-active.chzn-with-drop .chzn-single div {
  border-right: none;
}
.chzn-rtl .chzn-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: #ffffff url('chzn-sprite.png') no-repeat -30px -20px;
  background: url('chzn-sprite.png') no-repeat -30px -20px;
  direction: rtl;
}
.chzn-rtl.chzn-container-single .chzn-single div b {
  background-position: 6px 2px;
}
.chzn-rtl.chzn-container-single.chzn-with-drop .chzn-single div b {
  background-position: -12px 2px;
}

/* #pagination
================================================= */
.pagination {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid #ccc;
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.pagination ul {
  list-style: none;
  display: inline-block;
  padding: 0;
  margin: 0 5px;
}
.pagination ul > li {
  display: inline-block;
  width: 48px;
  height: 43px;
  text-align: center;
  line-height: 43px;
  float: left;
  -webkit-transition: background-color 0.2s ease-out;
  -moz-transition: background-color 0.2s ease-out;
  -ms-transition: background-color 0.2s ease-out;
  -o-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  font-size: 12pt;
  border: 1px solid #ccc;
}
.pagination ul > li a {
  display: block;
  width: 48px;
  height: 43px;
  color: #74777c;
}
.pagination ul > li a:hover,
.pagination ul > li a:focus {
  text-decoration: none;
  color: #fff;
}
.pagination ul li:first-child {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.pagination ul li:last-child {
  -webkit-border-top-right-radius: 4px;
  -moz-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination ul li:hover,
.pagination ul li.active {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff !important;
}


/* #Property detail/listing
================================================== */
.property-title {
  text-transform: none;
  font-size: 24pt;
  margin-bottom: 40px;
  margin-top: 54px;
}
.property-title small {
  display: block;
  font-style: italic;
  color: #4d4f52;
  font-size: 12pt;
  margin-top: 4px;
}
.property-topinfo {
  width: 100%;
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  background-color: rgba(50, 72, 92, 0.05);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  clear: both;
}
.property-topinfo .amenities {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  background-color: #fff;
  display: inline-block;
  border-right: 1px solid #E4E4E4;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}
.property-topinfo .amenities li {
  display: inline-block;
  height: 38px;
  margin: 0;
  padding: 10px 18px 0 18px;
  border-right: 1px solid #E4E4E4;
  color: #74777c;
}
.property-topinfo .amenities li:last-child {
  border-right: none;
}
.property-topinfo .amenities li .fa {
  color: #adb2b6;
  font-size: 18px;
}
.property-topinfo .amenities li [class^="icon-"],
.property-topinfo .amenities li [class*=" icon-"] {
  color: #adb2b6;
  float: left;
  font-size: 18px;
  margin-right: 3px;
  margin-top: -3px;
}
.property-topinfo #property-id {
  float: right;
  line-height: 54px;
  margin-right: 20px;
}
.property-topinfo:after,
.property-topinfo:before {
  content: " ";
  display: table;
}
.property-topinfo:after {
  clear: both;
}
#property-detail-wrapper {
  position: relative;
  margin-bottom: 70px;
}
#property-detail-wrapper.style1 .price {
  position: absolute;
  top: 10px;
  left: -5px;
  background-color: #202833;
  color: #fff;
  padding: 2px 20px 2px 10px;
  z-index: 10;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
#property-detail-wrapper.style1 .price:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-color: rgba(0, 0, 0, 0) #000000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 0 6px 6px 0;
  height: 0;
  width: 0;
}
#property-detail-wrapper.style1 .price i {
  margin-right: 8px;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
#property-detail-wrapper.style1 .price span {
  display: block;
  font-size: 16pt;
  font-weight: 700;
  margin-top: -4px;
}
#property-detail-large {
  margin-bottom: 5px;
}
#property-detail-large .item {
  background: #fff;
  padding: 0px;
  margin: 0 1px;
}
#property-detail-large .item img {
  width: 100%;
}
#property-detail-large .item .price {
  position: absolute;
  top: 10px;
  left: 0px;
  background-color: #202833;
  color: #fff;
  padding: 2px 20px 2px 10px;
  z-index: 10;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}
#property-detail-large .item .price:before {
  content: " ";
  position: absolute;
  left: 0;
  bottom: -6px;
  border-color: rgba(0, 0, 0, 0) #000000 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 0 6px 6px 0;
  height: 0;
  width: 0;
}
#property-detail-large .item .price i {
  margin-right: 8px;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
}
#property-detail-large .item .price span {
  display: block;
  font-size: 16pt;
  font-weight: 700;
  margin-top: -4px;
}
#property-detail-thumbs {
  margin-bottom: 80px;
}
#property-detail-thumbs .item {
  height: 128px;
  margin: 0 1px;
  color: #FFF;
  cursor: pointer;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
#property-detail-thumbs .item img {
  width: 100%;
}
#property-detail-thumbs .item:after {
  content: " ";
  background-color: #fff;
  border: 0;
  display: block;
  height: 100%;
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#property-detail-thumbs .item:hover:after,
#property-detail-thumbs .synced .item:after {
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
}
.property-amenities-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.property-amenities-list > li {
  margin: 10px 5px;
}
.property-amenities-list > li.enabled:before,
.property-amenities-list > li.disabled:before {
  content: "\f00c";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #202833;
  margin-right: 8px;
}
.property-amenities-list > li.disabled:before {
  content: "\f00d";
  color: #adb2b6;
}
.property-features {
  list-style: none;
  margin: 0;
  padding: 0;
}
.property-features > li {
  position: relative;
  padding: 20px 20px 20px 70px;
  min-height: 60px;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin: 15px;
}
.property-features > li i {
  position: absolute;
  color: #202833;
  font-size: 30pt;
  float: left;
  top: 5px;
  left: 20px;
}
.property-features > li i.fa {
  top: 9px;
}
#property_location {
  height: 285px;
  margin-bottom: 40px;
}
.price p {background: #9EC154; text-align: center; margin-bottom: 0px !important;
	font-size: 30px !important;
	font-family: arial;
	padding: 20px 0px;
	color: #fff;
	margin-top: -6px;

}


.info { min-height: 580px; background: #fff; padding: 20px; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
margin-bottom: 30px;
padding-bottom: 0px;

}

ul#bidHistory { display:none; }
ul#bidHistory li { list-style:none; }

.image img { width: 100%; }

.image img:hover {opacity: 0.8;}







 ul.rooms {margin-left: 0px !important; padding-left: 0px !important;}

.rooms li { display: block; list-style-type: none; float:left; width: 31.1%; border: 1px solid #ccc; padding: 10px; margin-right: 5px;
	list-style-position: outside;
	text-align:center; background: #eee;
margin-bottom: 20px;}

a.edit-link {
	background: url(/framework/admin/images/btn-icon/document--pencil.png) no-repeat 2px 0px;
	display: inline-block;
	width: 20px;
	height: 20px;
	text-indent: 9999em;
	overflow: hidden;
	vertical-align: middle;
}
.property-live {
	background: url(/framework/admin/images/btn-icon/accept.png) no-repeat 2px 0px;
	display: inline-block;
	width: 20px;
	height: 20px;
	text-indent: 9999em;
	overflow: hidden;
	vertical-align: middle;
}
.property-hidden {
	background: url(/framework/admin/images/btn-icon/cross-circle.png) no-repeat 2px 0px;
	display: inline-block;
	width: 20px;
	height: 20px;
	text-indent: 9999em;
	overflow: hidden;
	vertical-align: middle;
}

.item {}

.Details { margin-bottom: 30px; display: block; margin-top: 20px; }


.btn-default { color: #fff !important; background: #9EC154 !important; border: none !important; padding: 12px 30px !important; text-transform: uppercase;  }

.btn-default:hover { color: #fff !important; background: #666 !important; border: none !important; padding: 12px 30px !important;  }


.ina-4-link {}

.ina-4-link:hover {color: #f78f1e !important;}


.Home-CTAs { text-align: center; }

.Home-CTAs h3 {text-align: center;}

.Home-CTAs a {color: #666;}
.Home-CTAs a:hover {color: #9EC154}




.Home-CTAs i {text-align: center; color: #fff; font-size: 60px; margin-bottom: 20px; margin-top: 30px; background: #9EC154; padding: 30px; border-radius: 50%;}

.Home-CTAs i:hover { background: #032742; }

.Home-CTAs p span {margin-bottom: 10px;}

.Home-CTAs .whitebox {background: #fff; min-height: 460px; margin: 20px 0px; padding: 0px 20px; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);}

.Home-CTAs .greybox {background: #ddd; min-height: 460px; margin: 20px 0px; padding: 0px 20px; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);}




.Home-CTAs .loginbox {background: #9EC154; min-height: 460px; margin: 20px 0px; padding: 0px 20px; -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);}
.Home-CTAs .loginbox i {text-align: center; color: #9EC154; font-size: 60px; margin: 20px 0px; margin-top: 30px; background: #fff; padding: 30px; border-radius: 50%;}

.Home-CTAs .loginbox i:hover { background: #032742; }

.Home-CTAs .loginbox p {color: #fff;}

.Home-CTAs .loginbox a {color: #fff;}
.Home-CTAs .loginbox a:hover {color: #032742;}

.Home-CTAs .loginbox .btn-default { color: #9EC154 !important; background: #fff !important; border: none !important; padding: 12px 30px !important; text-transform: uppercase;  }

.Home-CTAs .loginbox .btn-default:hover { color: #fff !important; background: #032742 !important; border: none !important; padding: 12px 30px !important;  }


.highlight {padding: 20px; color: #fff; background: #032742; margin-bottom: 30px;

	webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
margin-top: 30px !important;
text-shadow: none;
	}

.highlight p {margin: 0px; font-family: "CamboRegular", Georgia, "Times New Roman", Times, serif !important; font-size: 28px; line-height: 38px;}

.highlight strong { color: #9EC154; font-weight: normal; }




.prop-hero { background: #fff; }


.prop-hero .title { background: #9EC154; color: #fff; padding: 20px; }

.prop-hero .title h2 {color: #fff; margin: 0px; font-size: 48px; line-height: 54px;}

.prop-hero .title h3 { color: #fff; }
.prop-hero .title h3 span { color: #333;  font-family: arial; font-size: 12px; }

.prop-hero .title h3 span a { color: #333;  font-family: arial; font-size: 12px;}
.prop-hero .title h3 span a:hover {color: #333; text-decoration: underline;}


.prop-hero .title h4 { color: #fff; }


.prop-hero .bidbox { background: #fff; padding: 20px; }

.prop-hero .bidbox .starting-price  {}

.prop-hero .bidbox .starting-price h2{ font-size: 48px; }

.prop-hero .bidbox .starting-price h2 span { display: block; font-family: arial; font-size: 12px; text-transform: uppercase; line-height: 20px; }


.prop-hero .bidbox p{ margin-bottom: 10px; margin-top: 5px;}


.prop-hero .bidbox .estate-agent-box { border: 0px solid #ccc; padding: 20px; margin-top: 20px;  background: #eee; margin-bottom: 20px;}



.uppercase {text-transform: uppercase;}

.martop {margin-top: 15px;}

.ptop { padding-top: 10px; }



.prop-hero .product-slider { padding: 0px; height: 740px; }


.prop-hero .carousel { height:600px;}




.prop-hero .product-slider #carousel { border: 0px solid #1089c0; margin: 0; }

.prop-hero .product-slider #thumbcarousel { margin: 0px 0 0; padding: 15px; }

.prop-hero .product-slider #thumbcarousel .carousel-inner {
	height: 126px;
	/*margin-left: 10px;*/
}

.prop-hero #thumbcarousel.carousel {
	height: auto;
	margin-bottom: 50px !important;
}

.prop-hero .product-slider #thumbcarousel .item {
	text-align: center;
	min-height: 60px;
	background: #eee;
	padding: 10px;

	/*width: 16%;
	display: inline-block;*/
}

.prop-hero .product-slider #thumbcarousel .item .thumb {
	border: 4px solid #cecece;
	width: 20%;
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
	max-width: 120px;
	padding: 5px !important;
	padding-bottom: 0px !important;
}

.prop-hero .product-slider #thumbcarousel .item .thumb:hover { border-color: #9EC154; }

.prop-hero .product-slider #thumbcarousel .item .thumb img {margin: 0px !important; margin-bottom: 5px !important; height: 68px;}

.prop-hero .product-slider .item img { width: 100%; height: auto; margin: 0px !important;}

.prop-hero .carousel-control { color: #9EC154; text-align: center; text-shadow: none; font-size: 30px; width: 30px; height: 30px;
	line-height: 20px;  opacity: 1;}

.prop-hero .carousel-control:hover, .prop-hero .carousel-control:focus, .prop-hero .carousel-control:active { color: #666; opacity: 1; }

.prop-hero .carousel-caption, .prop-hero .carousel-control .fa { font: normal normal normal 30px/26px FontAwesome; }


.prop-hero .carousel-control { background-color: rgba(0, 0, 0, 0); bottom: auto; font-size: 20px;
	position: absolute; top: 10%; width: 30px; }

.prop-hero .carousel-control.right {
	background-color: rgba(0, 0, 0, 0);
	background-image: none;
	right: 20px;
}

 .prop-hero .carousel-control.left {
 	background-color: rgba(0, 0, 0, 0);
 	background-image: none;
 	left: 20px;
 }

.prop-hero #thumbcarousel .carousel-control {
	top: 35%;
}


 .prop-hero .tab-content > .tab-pane {padding: 20px; padding-top: 0px; padding-bottom: 80px;}


 .nav-tabs {
    border-bottom: 1px solid #ccc;



  margin-right: 20px !important;
}

 .nav-tabs li {margin: 0px; padding: 0px; text-transform: uppercase; line-height: 30px;  font-weight: bold;}


 .nav-tabs > li > a {color: #666;}

 .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #fff;
    background-color: #9EC154;
    border: 1px solid #9EC154;


    cursor: default; }

    .nav-tabs > li > a:hover {border-color: #ccc; border-bottom: 1px solid #eee; color: #666;}

.disclaimer {padding: 20px; background: #990000; color: #fff; padding-top: 0px; }

.disclaimer h3 { color: #fff; }

.disclaimer p { color: #fff; font-size: 12px; line-height: 20px; }

.prop-downloads { background: #032742; padding: 15px; }

.prop-downloads h2 {color: #9EC154;}


.prop-downloads a {color: #fff;}

.prop-downloads a:hover {color: #9EC154;}

.prop-downloads span {display: block;}


.prop-downloads a i {color: #9EC154;}
.prop-downloads a:hover i {color: #fff;}

.prop-downloads hr {border-color: rgba(255,255,255,0.2);}

.prop-downloads .content-title {text-transform: uppercase; margin-bottom: 10px;  margin-top: 5px;}

.prop-downloads .content-text {font-size: 11px; }

.prop-downloads .content-arrow {text-align: right;}

.btn-lg { font-size: 24px; }

.register-to-bid {background: #cc0000 !important;}
.register-to-bid:hover {background: #ff0000 !important;}


.bid-now {background: green !important;}
.bid-now:hover {background: limegreen !important;}


#PropertySearchFilter:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 25px solid #666;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	position: absolute;
	bottom: -25px;
	left: 48%;
}

.prop-hero .title {
	margin-bottom: 30px;
}


.prop-hero .title:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 25px solid #9EC154;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	position: relative;
	bottom: -45px;
	z-index: 999999999999;
	left: 48%;
}


.highlight:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 25px solid #032742;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	position: relative;
	bottom: -45px;
	z-index: 999999999999;
	left: 48%;
}

.disclaimer:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-bottom: 25px solid #990000;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	position: relative;
	top: -25px;
	z-index: 999999999999;
	left: 48%;
}



.propimage {
	margin-bottom: 0px !important;
	padding-bottom: 0px !important;
	position: relative;
}

	.propimage img {
		width: 100%;
		margin-bottom: 0px !important;
		padding-bottom: 0px !important;
		overflow: hidden;
	height: 307px;
	}

		.propimage img:hover {
			opacity: 0.8;
		}

.propimageoverlay { position: absolute; top:50%; left: 50%; transform: translate(-50%,-50%); color: white; font-size: 500%; }

.price p {
	padding-top: 0px;
}

	.price p:before {
		content: "";
		display: block;
		width: 0;
		height: 0;
		border-bottom: 25px solid #9EC154;
		border-left: 25px solid transparent;
		border-right: 25px solid transparent;
		position: relative;
		top: -24px;
		z-index: 999999999999;
		left: 47%;
	}



.search-bar {
	font-size: 20px;
	color: #9EC154;
	font-weight: bold;
	margin-top: 10px;
}
.search-bar a {
    color: #9EC154;
}
	.search-bar i {
		margin-right: 10px;
	}



.breakbar {
	height: 300px;
	background: url(../images/banners/internal_slim_front-doors.jpg) no-repeat top center;
}

.float-right {
	float: right;
}

	img.float-right {
		margin-left: 15px;
	}

.float-left {
	float: left;
}

img.float-left {
	margin-right: 15px;
}

.footer-logos {
	text-align: center;
}

.footer-logos img {
	margin: 0 10px;
}

footer img {
	display: inline;
}

.thetabs {margin-top: 30px;}

.HomePage h1 {
	font-size: 32px;
	line-height: 38px;
	margin-bottom: 15px;
	color: #9ec154;
	font-weight: normal;
	border-bottom: 0;
}

#Form_ContactForm_ContactExtension_Holder {
	display: none;
}

.results-title {
	font-size: 30px;
}

.prop-hero h1 {
	color: #FFF;
	font-size: 48px;
	margin: 0;
	line-height: 54px;
	border-bottom: 0;
}

#MemberLoginForm_LoginForm {
	color: #FFF;
	font-size: 20px;
	width: 95%;
}

#MemberLoginForm_LoginForm span {
	display: inline-block;
	text-align: left;
	float: left;
}
#MemberLoginForm_LoginForm span:first-of-type {
	margin-top: 7px;
}
#MemberLoginForm_LoginForm span:last-of-type {
	margin-top: 22px;
}

#MemberLoginForm_LoginForm input[type="text"],
#MemberLoginForm_LoginForm input[type="password"] {
	float: right;
	display: inline-block;
	width: 65%;
	margin: 0;
}

#MemberLoginForm_LoginForm input[type="password"] {
	margin-top: 15px;
}

#MemberLoginForm_LoginForm input[type="submit"] {
	margin: 30px 30%;
}

.carousel-caption h2 {
	background: rgba(0, 0, 0, .5);
}

#Form_PropertySearchForm .even,
#Form_PropertySearchForm .odd {
	width: 33%;
	height: 36px;
	margin: 5px 0;
}

.searchFormHolder select,
.searchFormHolder input.text {
	width: 80%;
	margin-left: 0 !important;
	float: right;
	margin-right: 5%;
}

.searchFormHolder input.text {
	max-width: initial;
	width: 95%;
}

@media screen and (max-width: 1200px) {

	.carousel .item {
		min-height: 540px;
	}

	.prop-hero .carousel {
		height: 550px;
	}

	.prop-hero .product-slider {
		height: 680px;
	}

}

@media screen and (max-width: 1100px) {

	.carousel .item {
		min-height: 460px;
	}

	.prop-hero .carousel {
		height: 470px;
	}
	.prop-hero .carousel {
		min-height: 440px;
	}
	.prop-hero #thumbcarousel .carousel-control {
		top: 10%;
	}
}

@media screen and (max-width: 1024px) {

	.prop-hero #thumbcarousel .carousel-control {
		top: 12%;
	}

	.carousel .item {
		min-height: 460px;
	}

	#MemberLoginForm_LoginForm span {
		display: block;
	}

	#MemberLoginForm_LoginForm input[type="text"],
	#MemberLoginForm_LoginForm input[type="password"] {
		width: 100%;
		margin-top: 5px;
	}

	.searchFormHolder select {
		width: 70%;
	}

	img.float-right {
		max-width: 50%;
	}

	.price p {
		font-size: 22px !important;
	}

	.register-to-bid {
		font-size: 16px;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.register-to-bid:hover {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.footer-logos img {
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 768px) {
	.tablet-nav .header .primary ul {
		position: absolute;
		right: 0;
		margin: 0;
	}

	.carousel .item {
		min-height: 440px;
	}

	#MemberLoginForm_LoginForm span {
		display: block;
	}

	#MemberLoginForm_LoginForm input[type="text"],
	#MemberLoginForm_LoginForm input[type="password"] {
		width: 100%;
		margin-top: 5px;
	}

	.searchFormHolder select {
		width: 65%;
	}

	.prop-downloads h2 {
		font-size: 22px;
	}

	.register-to-bid {
		font-size: 16px;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.register-to-bid:hover {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.info {
		min-height: auto;
		overflow: auto;
	}

	.Details {
		margin-top: 0;
	}

	.footer-logos img {
		margin-bottom: 15px;
	}
	.prop-hero .product-slider {
		height: 610px;
	}
}

@media screen and (max-width: 749px) {
	.header {
		min-height: auto;
	}

	.brand img {
		margin-top: 0;
		margin-bottom: 0;
	}

	.tablet-nav .header .primary .nav-open-button {
		color: #333;
		top: 20px;
	}

	.tablet-nav .header .primary ul {
		z-index: 99;
		position: relative;
	}

	#myCarousel {
		margin-top: 3px;
	}

	.header .inner .unit {
		height: auto;
	}

	.header .subprimary {
		display: none;
	}

	.carousel {
		height: 200px;
	}

	.carousel-inner > .item > img {
		min-height: 200px;
	}

	.carousel .item {
		height: 250px;
	}

	.carousel-caption {
		bottom: 20px;
	}

	.prop-hero .carousel {
		height: 440px;
		min-height: 440px;
	}

	

	.carousel-caption h2 {
		font-size: 24px;
		line-height: 34px;
		margin-bottom: 15px;
		background: rgba(0, 0, 0, .5);
	}

	.carousel-caption .btn {
		white-space: initial;
	}

	.HomePage h1 {
		font-size: 18px;
		line-height: 38px;
		margin-bottom: 15px;
		color: #9ec154;
		font-weight: normal;
		border-bottom: 0;
	}

	.sidebar {
		margin-top: 0;
	}

	.main .secondary {
		margin-top: 0;
	}

	.searchFormHolder h2 {
		font-size: 26px;
	}

	#Form_PropertySearchForm .CompositeField {
		overflow: auto;
		margin-bottom: 0;
	}

	#Form_PropertySearchForm input.text,
	#Form_PropertySearchForm select {
		margin-right: 0;
	}

	#Form_PropertySearchForm input.text {
		margin-left: 0 !important;
		width: 100%;
	}

	#Form_PropertySearchForm select {
		float: none;
	}

	#Form_PropertySearchForm .even,
	#Form_PropertySearchForm .odd {
		width: 50%;
		margin: 5px 0;
		height: auto;
	}

	#Form_PropertySearchForm .odd {
		text-align: right;
	}

	#Form_PropertySearchForm .middleColumn div:first-of-type {
		width: 100%;
		margin: 0;
	}

	#Form_PropertySearchForm select {
		width: 81%;
		margin-left: 0 !important;
	}

	label[for=Form_PropertySearchForm_MinPrice],
	label[for=Form_PropertySearchForm_MaxPrice],
	#Form_PropertySearchForm #Form_PropertySearchForm_MinPrice,
	#Form_PropertySearchForm #Form_PropertySearchForm_MaxPrice {
		margin-left: 18px !important;
	}

	label[for=Form_PropertySearchForm_MaxPrice] {
		float: left;
		margin-left: 31px !important;
	}

	#Form_PropertySearchForm .Actions {
		overflow: auto;
		margin-bottom: 0;
	}

	#Form_PropertySearchForm input[type="submit"] {
		float: right;
		margin: 0;
	}

	h1.results-title {
		font-size: 24px;
		margin-top: 15px;
	}

	.rooms li {
		width: 32.2%;
	}

	.rooms li:last-child {
		margin-right: 0;
	}

	.info {
		min-height: auto;
		overflow: auto;
	}

	.Details {
		margin-top: 0;
	}

	.prop-hero .title:after {
		left: 40%;
	}

	.prop-hero h1 {
		font-size: 28px;
	}

	.disp-inline-mob {
		display: inline !important;
	}

	.prop-hero h3 {
		line-height: 20px;
		font-size: 18px;
	}

	.register-to-bid {
		font-size: 14px;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.register-to-bid:hover {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	
	.nav-tabs {
		margin-right: 15px !important;
	}

	.nav-tabs li {
		width: 100%;
	}

	.nav-tabs > li > a {
		border-radius: 0;
	}

	.nav-tabs > li > a:hover {
		border-color: transparent;
	}

	.disclaimer:before {
		left: 40%;
	}

	#Form_ContactForm {
		width: 100%;
	}

	#Form_ContactForm input.text,
	#Form_ContactForm textarea,
	#Form_ContactForm .textajaxuniquetext,
	#Form_ContactForm select {
		margin-left: 0 !important;
	}

	.footer-logos img {
		max-width: 40%;
		height: auto;
		margin-bottom: 15px;
	}

	.prop-hero .carousel {
		min-height: 300px;
		height: 300px;
	}

	.prop-hero .product-slider {
		height: 480px;
	}
}

@media screen and (max-width: 450px) {
	.brand img {
    	margin-top: 15px;
    	width: 180px;
    }
    .callIcon {
	    display: block;
	    position: absolute;
	    top: 0;
	    right: 90px;
	    padding: 20px 0;
	    margin: 0;
	}
	.social-bar {
    	position: absolute;
	    right: 55px;
	    top: 19px;
	}
}

@media screen and (max-width: 375px) {
	
	.prop-hero .carousel {
		height: 260px;
		min-height: 260px;
	}
	.brand img {
		width: 180px;
	}

	.rooms li {
		width: 31.9%;
	}

	.register-to-bid {
		font-size: 12px;
		padding-left: 10px !important;
		padding-right: 10px !important;
	}

	.register-to-bid:hover {
		padding-left: 10px !important;
		padding-right: 10px !important;
	}
}

