@charset "utf-8";
/* CSS Document */

/* Main container, holds the search form */

div#dynContainer {
  /*position:absolute;*/
  margin: auto;
}

/* Search field */

input#dynField {
	height: 17px;
	border: 1px solid #7f9db9;
	background-color: #ffffff; 
	font-family: Tahoma;
	width: 165px;
	font-size: 11px; 
  margin:0;
  /*padding:2px;*/
  position:relative;
	background: url('/library/134100/publish/Asset/767085_searchDropDown.gif') #fff right no-repeat
}

/* Results layer that displays any returned items */

div#dynResults {
  position:absolute;
  left:auto;
  display:none;
  width:165px;
  z-index:95;
  margin:20px 0 0 0;
  padding:0;
  border:1px solid #CCCCCC;
  background:#FFFFFF;
  /*height: 135px;
  overflow: hidden;*/
}

/* Suggestions label that appears at the bottom of the list */

div#suggestLabel {
  text-align: right;
  color:#999999;
  height: 10px;
  background: #F2F2F7;
  padding: 0 3px 0 0;
  line-height:100%;
}

/* Styling of items when selected/de-selected */

.itemHighlight {
  background-color:#ebcda2;
}

.itemNoHighlight {
  background-color:#FFFFFF;
}

/* Individual result items */

div#dynResults div {
  display:block;
  cursor:pointer;
  margin: 2px;
  padding: 2px 0 2px 2px;
  z-index:99;
}