/* Start of existing style sheet */
 
#body{
	margin:0;
	padding: 0;
}
 
:focus {outline: 0}
 
 
#searchZone{
	/*min-width: 160px;*/
	width:160px;
	height:60px;
}
 
#searchContainter{
	/*min-width:190px;*/
	width:207px;
	min-height: 36px;
	height:43px;
	margin-left:5px;
	border: solid #b9b9b9 1px;
	
	/* Jonathan add border and background color. I added the gradient to the entire div and not just the 'Go' button because I believe the gradient needs to be in the same div as the border radius.*/
 
   	border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	/*background-color: rgb(200, 200, 200);
	background-image:linear-gradient(-90deg, rgb(200, 200, 200), rgb(185, 185, 185));
	background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, from(rgb(200, 200, 200)), to(rgb(185, 185, 185)));
	background-image:-moz-linear-gradient(-90deg, rgb(200, 200, 200), rgb(185, 185, 185));
	*/
	
}
 
#searchfield{
	/*min-width: 135px;*/
	height:43px;
	background-color: transparent;
	position: absolute;
	border: none;
	z-index: 2;
	font-size: 25px;
	font-weight: bold;
	font-family: Helvetica;
	color:#ee5a16;
   	border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottomleft-radius: 5px;
	padding-left:8px;
}
 
#defaultSearch{
	font-size: 25px;
	color:#dcdcdc; /*b9b9b9 opqcity 50% = dcdcdcdc*/
	font-family: Helvetica;
	position: absolute;
	z-index: 1;
	margin-left:12px;
	margin-top: 6px;
	font-weight: bold;
}
 
#buttonContainer{
	position: absolute;
	margin-left:180px;
	padding-top:8px;
	z-index: 1;
 
	/* Jonathan added gradient, left border, width and height*/
	width:50px; 
	height:35px;
	border-left: solid #b9b9b9 1px;
	background-color: rgb(200, 200, 200);
	background-image:linear-gradient(-90deg, rgb(200, 200, 200), rgb(185, 185, 185));
	background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, from(rgb(200, 200, 200)), to(rgb(185, 185, 185)));
	background-image:-moz-linear-gradient(-90deg, rgb(200, 200, 200), rgb(185, 185, 185));
}
 
/* Jonathan added hover gradient*/
#buttonContainer:hover {
		background-color: rgb(185, 185, 185);
		background-image:linear-gradient(-90deg, rgb(185, 185, 185), rgb(185, 185, 185));
		background-image:-webkit-gradient(linear, 50% 0%, 50% 100%, from(rgb(185, 185, 185)), to(rgb(185, 185, 185)));
		background-image:-moz-linear-gradient(-90deg, rgb(185, 185, 185), rgb(185, 185, 185));
}
	
 
#bookmarkBottom {
	width:120px;
	height:12px;
	
	
/* Jonathan removed border, added 1px of margin-top, and adding paddint-top and padding-bottom */
	font-size:10px;
	font-family: Helvetica;
	background-color: white;
	margin-left:130px;
	margin-top:1px;
	padding-top:1px;
}
 
#bookmarkBottom img{
	position: absolute;
	margin-left:70px;
}
 
 
#textPoweredBy{
	font-size: 12px;
	position: absolute;
	color:#6e6e6e;
	margin-top:0px !important;
	margin-top:0px;
	margin-left:6px;
	
}
 
/* Jonathan: Changed this to ID viewResults (see HTML below) */
 
#viewResults{
	color:#6e6e6e;
	font-size: 12px;
	font-family: Helvetica;
	position:absolute;
	cursor: pointer;
	top:55px;
	left:15px;
	display: none;
}

#viewResults a:visited, a:link, a:active {
	text-decoration: none;
	color:#6e6e6e;
}

#viewResults a:hover {
	color:#f05100;
}
 
#searchButton{
	cursor: pointer;
	position: absolute;
	z-index: 100;
	
	margin-top:-5px !important;
	margin-top:-5px;
	margin-left: 0px;
 
}
 
a img{
	border:none;
}
 
ul{
	overflow:auto;
	width:200000px;
	position:relative;
	margin-top: -5px;
	margin-left: -5px;
}
 
li{
	float:left;
	margin: 5px 0 0 5px;
	list-style: none outside none;
	width:37px;
}
 
#containerCaroussel{
	width:210px;
	overflow:hidden;
	float:left;
	display: none;
	position:absolute;
	padding: 2px 0 0 3px;
}
 
#tip{
	display: none;
	position: absolute;
	z-index: 500;
	height:22px;
	width:95px;
	background-image: url("../../images/bgTooltip-searchWidget.png");
	background-repeat: none;
	color:#ffffff;
	font-size: 10px;
	font-weight: bold;
	font-family: Helvetica;
	padding-top:7px;
	padding-left:5px;
}
 
#overlay{
	position: absolute;
	left:180px;
	z-index:100;
	margin-top:1px;
	display: none;
}
 
#more{
	height: 12px;
	text-align: center;
	width: 41px;
	background-image: url('../../images/bgButtonMore.png');
	background-repeat: no-repeat; 
	position:absolute;
	margin-left:-10px !important;
	margin-left: -30px;
	display:none;
	color:white;
	font-family: Helvetica;
	font-size: 10px;
	padding-top: 0px;
	text-decoration: none;
	margin-top:3px !important;
	margin-top:17px;
}
 
#searchWidgetLoader{
	margin-top:13px;
	margin-left:5px;
}
 
a{
	text-decoration: none;
}
 
#closeButton{
	display:none;
	cursor:pointer;
	/* Jonathan changed margins ot "margin: 5px 15px;" from "margin-left:5px" in order to center the X */
	margin: -5px 0px;
}
 
#no_results{
	width:150px;
	font-family: Helvetica;
	color: black;
	padding-top:10px;
}
 
/* End of existing style sheet */
