.ospropertysearch{
	position:relative;
}

/* START AUTOCOMPLETE */
.ac_holder{
	position:relative;
}
.ac_field{	
	background-image:url(images/autocomplete/autocomplete_leftcap.gif);
	background-position:right center;
	background-repeat:no-repeat;
}
.ac_field_busy{
	background-image:url(images/autocomplete/autocomplete_spinner.gif);
	background-position:right center;
	background-repeat:no-repeat;
}

div.autocomplete
{
	position: absolute;
	background-image: url(images/autocomplete/ac_pointer.gif);
	background-position: 5% 0%;
	background-repeat: no-repeat;
	/* MG2: extra padding for animation */
	padding: 10px 0 6px 0;
	z-index:9999;
}
/* MG2: styles for the new divs to have the background visible while animating (had to use 2 inner divs for IE6) */
div.autocomplete_inner1
{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
div.autocomplete_inner2
{
	margin-top: 10px;
	height: 100%;
	width: 100%;
	background-color: #333;
}

div.autocomplete div.ac_footer
{
	background-image: url(images/autocomplete/ul_corner_br.gif);
	/* MG2: updated positioning for animations */
	position: absolute;
	bottom: 0px;
	padding: 0;
	width: 100%;
}


div.autocomplete div.ac_footer div.ac_corner
{
	background-image: url(images/autocomplete/ul_corner_bl.gif);
}

/* MG2: removed the ac_bar classes, weren't used anymore */


div.autocomplete ul
{
	list-style: none;
	/* MG: changed margins all to 0, the -4 was causing problems with the maxHeight */
	margin: 0;
	padding: 0;
	/* MG: changed to auto overflow for the maxHeight setting */
	overflow: auto;
	background-color: #333;
	/* MG: added position: relative, otherwise IE6/7 won't overflow correctly */
	position: relative;
	border: 1px solid #fff;
	  border-radius: 4px;
	  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

div.autocomplete ul li
{
	color: #ccc;
	padding: 0;
	/* MG: changed for maxHeight setting, the bottom 4px was causing some problems */
	margin: 0 4px 0;
	text-align: left;
}

#end_time , #start_time {
	cursor:pointer;
	background:#fff;
}

/* MG: added ac_warning and ac_message class */
/* MG: ac_warning was called as_warning in your css file, i removed that definition */
div.autocomplete ul li a span,
div.autocomplete ul li.ac_warning,
div.autocomplete ul li.ac_message
{
	display: block;
	padding: 3px 6px;
}

div.autocomplete ul li a span small
{
	font-weight: normal;
	color: #fff;
}

div.autocomplete ul li.ac_highlight a span small
{
	color: #fff;
}
.input-large , .input-medium {
	margin-bottom:10px;
}

#check-out-div-availability_module .ui-datepicker-trigger, #check-in-div-availability_module .ui-datepicker-trigger  {
	position:absolute;
	float:right;
	top:-1px;
	right:0px;
	cursor:pointer;
}

/* MG: IE6 positioned the top left and top right corner images invalidly, changes for this fix are called 'IE6 position fix' */
div.autocomplete ul li a .tl,
div.autocomplete ul li a .tr
{
	/* MG: changed background-image:transparent to background-color transparent, as you probably meant */
	background-color: transparent;
	background-repeat: no-repeat;
	width: 6px;
	height: 6px;
	position: absolute;
	top: 0;
	/* MG: added left:0, IE6 position fix */
	left: 0;
	padding: 0;
	margin: 0;
}
/* MG: removed the following, IE6 position fix */
/*div.autocomplete ul li a .tr
{
	right: 0;
}*/





/* END AUTOCOMPLETE */

@media screen and (max-width: 480px) {
	#destination-div-availabilitysearch, #check-in-div-availabilitysearch,#check-in-div-availabilitysearch, #submit-div-availabilitysearch{
		width:100%;
	}
}

.noleftmargin{
	margin-left:0px !important;
}