.annotate{
	font-style: italic;
	color: #366ED4;
}

.listbox-area {
	padding: 20px;
	background: #eee;
	border: 1px solid #aaa;
	font-size: 0px;
}

.left-area, .right-area {
	box-sizing: border-box;
	display: inline-block;
	font-size: 14px;
	vertical-align: top;
	width: 50%;
}

.left-area {
	padding-right: 10px;
}

.right-area {
	padding-left: 10px;
}

ul[role="listbox"] {
	min-height: 18em;
	padding: 0px;
	background: white;
	border: 1px solid #aaa;
}

li[role="option"] {
	display: block;
	padding: 0 1em;
	position: relative;
	line-height: 1.8em;
}

li[role="option"].focused {
	/*background: #bde4ff;*/
	/*background: #286090;*/
        color: #fff;
	background: rgba(40,96,144,0.50);
}

li[role="option"][aria-selected] {
	padding-left: 1.5em;
}

li[role="option"][aria-selected="true"]::before {
	content: 'âœ“';
	position: absolute;
	left: 0.5em;
}

button {
	font-size: 16px;
}

button[aria-disabled="true"] {
	opacity: 0.5;
}

.move-right-btn {
	padding-right: 20px;
	position: relative;
}

.move-right-btn::after {
	content: ' ';
	height: 10px;
	width: 12px;
	background-image: url('../imgs/Arrows-Right-icon.png');
	background-position: center right;
	position: absolute;
	right: 2px;
	top: 6px;
}

.move-left-btn {
	padding-left: 20px;
	position: relative;
}

.move-left-btn::after {
	content: ' ';
	height: 10px;
	width: 12px;
	background-image: url('../imgs/Arrows-Left-icon.png');
	background-position: center left;
	position: absolute;
	left: 2px;
	top: 6px;
}

#ss_elem_list {
	max-height: 18em;
	overflow-y: auto;
	position: relative;
}

.aria_listbox_button {
  color: #555;
  background: #fff;
  border-radius: 4px;
  font-size: 14px;
  text-align: left;
  padding: 5px 10px;
	width: 150px;
	position: relative;
}

.aria_listbox_button::after {
	width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #aaa;
  content: " ";
  position: absolute;
  right: 5px;
  top: 10px;
}

.aria_listbox_button[aria-expanded="true"]::after {
	width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
	border-top: 0;
  border-bottom: 8px solid #aaa;
  content: " ";
  position: absolute;
  right: 5px;
  top: 10px;
}

ul[role="listbox"] li:hover {
    background: #286090;
    color: #fff;
}

/*#exp_elem_list li:hover {
    background: #286090;
    color: #fff;
}*/

#exp_elem_list {
	border-top: 0;
	max-height: 10em;
	overflow-y: auto;
	position: absolute;
	margin: 0;
	width: 148px;
}

.hidden {
	display: none;
}

.toolbar {
	font-size: 0;
}

.toolbar-item {
	border: 1px solid #aaa;
	background: #ccc;
}

.toolbar-item[aria-disabled="false"]:focus {
	background-color: #eee;
}

.offscreen {
	clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
	font-size: 14px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}