.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url('/images/trans.png') repeat scroll left top;
  z-index: 200;
}

.dialog-buffer {
  height: 50%;
}

.search-dialog-box {
  margin: 0 auto 0 auto;
  width: 65em;
  height: auto;
  border: 1px solid #000000;
  background-color: #fbfbef;
  overflow: hidden;
  -moz-box-shadow: .3em .3em 1em #000000;
  -webkit-box-shadow: .3em .3em 1em #000000;
  box-shadow: .3em .3em 1em #000000;
}

.search-dialog-box-title {
  background-color: #abc2d7;
  border-bottom: 2px solid #000000;
  padding: .62em;
  font-weight: 600;
  font-size: 1.1em;
}

.search-dialog-box-body {
  min-height: 4em;
  padding: .62em;
}

.search-box-outer {
	border-radius: 2px;
	position: relative;
	width: 90%;
	margin: auto;
	background-color: #ffffff;
	color: #212121;
	vertical-align: top;
	-moz-box-shadow: 1px 1px 1px #c4c4c4;
  -webkit-box-shadow: 1px 1px 1px #c4c4c4;
  box-shadow: 1px 1px 1px #c4c4c4;
}

.search-box-outer:hover {
	background: rgba(171,194,215,.15);
  outline: 1px solid transparent;
}

.search-box-left {
	display: inline-block;
	position: relative;
	height: 36px;
	width: 72px;
}

.search-box-left img {
	height: 24px;
	left: 24px;
	position: absolute;
	top: 6px;
	width: 24px;
	-webkit-transition: -webkit-transform .15s linear;
	transition: transform .15s linear;
	transform: scale(1);
  opacity: 1;
}

.search-box-right {
	display: inline-block;
	position: relative;
	width: 88%;
	vertical-align: top;
}

.search-box-right input {
	background: none;
	border-style: none;
	height: 36px;
	width: 100%;
	padding-right: 10px;
	font-size: 1.2em;
	box-sizing: border-box;
	color: #212121;
}

.search-box-right input:focus {
	outline: none;
}


.search-results {
	border: 1px solid #c4c4c4;
	width: 95%;
	margin: 10px auto 0px auto;
	height: 320px;
	background-color: #ffffff;
}

.search-results table {
	border-collapse: collapse;
}

.search-results tbody {
	display: block;
	height: 290px;
	overflow-y: scroll;
	width: 100%;
	text-align: center;
}

.search-results thead, .search-results tbody tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.search-results table thead {
	background-color: #abc2d7;
	border-bottom: 1px solid #000000;
}

.search-results th {
	padding: 5px;
	font-weight: normal;
}

.search-results tbody tr {
	cursor: pointer;
}
.search-results .odd {
	background-color: #f5f5f5;
}
.search-results tbody tr:hover {
	background-color: #e4f4ff;
}

/* attempt to add placeholder text, didn't work right
.search-results:empty::before {
	text-align: center;
	vertical-align: middle;
	color: #c4c4c4;
	content: attr(placeholder);
}
*/

.search-dialog-box-options {
	padding: 10px;
	text-align: right;
}

/*
.search-dialog-box-options button {
	border-radius: 4px;
	min-width: 80px;
	margin-left: 40px;
	background-color: #5a8dba;
	border: 1px solid #c4c4c4;
  color: #ffffff;
	padding: 5px;
	font-size: 1.1em;
}

.search-dialog-box-options button:focus {
	background-color: #c4c4c4;
	color: #5a8dba;
}
*/