/* ------ */
/* GENERAL STYLES - NOT necessary for search */
/* ----- */
html, body{
	background-color:transparent;
	color:#fff;
font-family: 'Catamaran', sans-serif;
	font-size:16px;
	line-height:1.375em;
	padding:10px 30px;
padding-bottom: 5000px;
}
/* ------ */
/* SEARCH */
/* ----- */

.backgroundsearch {
  position: fixed;
  top: -60px;
  left: 0;
  right: 0;
  z-index: -2;

  display: block;
  background-image: url("../../images/searchbg.png");
      background-repeat: no-repeat;
    background-attachment: fixed;
    background-color:rgba(255, 255, 255, 0.05);
  opacity: 1;
    filter: alpha(opacity=100);
-webkit-overflow-scrolling: touch;
  width: 7000px;
  height: 30000px;

  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

#searchContainer {  /*  can change item header color here */
	margin-bottom: 20px;
	-webkit-overflow-scrolling: touch;

	
}

#searchContainer input {
	font-size: 16px;
	line-height:1.22222em;
	outline:none;
	padding:5px;
}
#searchContainer h1 {
	font-size: 28px;
	line-height:1.25em;
}
#search{
	width:98%;
}
.searchresults {
	-webkit-overflow-scrolling: touch;
	margin-bottom:170px;
	text-align: left;

}
hr {
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 

}
.searchresults li {

	display: block;
	font-size: 9pt;
	list-style-type: none;
	margin:-5px 0 0 -20px; /* results indent */
	min-width:300px;
	padding: 35px 5px 18px 0;
	overflow: hidden;
	transition: background 0.5s ease;
	width: 98%;

 display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
overflow: hidden;
  text-overflow: ellipsis;
  height: 10.4em;

}
.searchresults li:first-child {
	margin-top:0px;

}
.searchresults li:hover {
 	 background: transparent;  /*  changes li colors on hover  */
 	 color: #fff;
	 cursor: pointer;
}
.searchresults li img { /* image thumbnails */
	float: left;
	padding: 0 10px 0 0;
	transition: all 250ms cubic-bezier(0.680, -0.550, 0.265, 1.550);
	width: 150px;
}
.searchresults li:hover img { /* image thumbnails on hover*/
	transform: scale(1.05);
	transform-origin: center center;
}
.searchresults h2 {
	font-size: 18px;
	color: #fff;
	line-height:1.22222em;
	margin: 3px 0 0 0;
}
.searchresults p{
	color:#555555;
}
.searchresults a{
	text-decoration: none;
}
#update{  /* results container */
	max-height:100%;
	overflow-y:hidden;
	
}
a:link, a:visited {
 display: inline-block;
 border:1px solid #666;
 color: #666;
 border-radius: 3px 3px 3px 3px;
 -webkit-border-radius: 3px 3px 3px 3px;
 -moz-border-radius: 3px 3px 3px 3px;
 font-family: Arial;
 width: auto;
 height: 17px;
 font-size: 15px;
 padding: 8px 10px;
 background-image: linear-gradient(to bottom, #BBBBBB, #BBBBBB);
 background-color: #BBBBBB;
}

a:hover, a:active {
 display: inline-block;
 border:1px solid #000;
 color: #000;
 border-radius: 3px 3px 3px 3px;
 -webkit-border-radius: 3px 3px 3px 3px;
 -moz-border-radius: 3px 3px 3px 3px;
 font-family: Arial;
 width: auto;
 height: 17px;
 font-size: 15px;
 padding: 8px 10px;
 background-image: linear-gradient(to bottom, #BBBBBB, #BBBBBB);
 background-color: #BBBBBB;
}
input[type=text] {
    border: 3px solid #ccc;
    border-radius: 6px;
}

