@charset "utf-8";
/* CSS Document */

.tableSearch {
	display: table;
	width: 100%;
}
.tableRow {
	display: table-row;
	width: 100%;
	margin-bottom: 20px;
}
.tableLabel {
	display: table-cell;
	width: 11%;
    font: 13px Arial, Helvetica, sans-serif;
    color: #888;
	padding-right: 4px;
	text-align:right;
	vertical-align:middle;
}
.tableInput {
	display: table-cell;
	width: 22%;
}
.tableSelect {
	display: table-cell;
	width: 22%;
}

#companyNameTable {
	position:relative;
	width: 100%;
	min-height: 75px;
	border: 1px solid #999;
	padding: 0px;
}
#companyNameTable .ui-front {
	position:relative;
	top: 0px;
	left: 0px;
}
#companyNameTable .compTable {
	background: #f5f5f5;
	border-collapse: separate;
	box-shadow: inset 0 1px 0 #fff;
	font-size: 12px;
	line-height: 24px;
	margin: 0px;
	text-align: left;
	width: 100%;
}	

#companyNameTable .tableHeader {
	background: url(/emr4/img/noise-diagonal.png), linear-gradient(#777, #444);
	border-left: 1px solid #555;
	border-right: 1px solid #777;
	border-top: 1px solid #555;
	border-bottom: 1px solid #333;
	box-shadow: inset 0 1px 0 #999;
	color: #fff;
	font-weight: bold;
	padding: 5px 15px;
	position: relative;
	text-shadow: 0 1px 0 #000;	
}

#companyNameTable li {
	width: 100%;
	text-align:left;
	box-shadow: inset 1px 0 0 #fff;
	border-right: 1px solid #fff;
	border-left: 1px solid #e8e8e8;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #e8e8e8;
	position: relative;
	transition: all 300ms;
}
#companyNameTable li:hover {
	cursor:pointer;
	color: #f5f5f5;
	background: #5f5f5f;
	background: -webkit-gradient(linear, left top, left bottom, from(#9e9e9e), to(#454545));
	background: -moz-linear-gradient(top,  #9e9e9e,  #454545);
	background: gradient(top,  #9e9e9e,  #454545);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#454545'); /* ie7 */
	-ms-filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#9e9e9e', endColorstr='#454545'); /* ie8 */
}
#companyNameTable li:nth-child(odd) {
	background: #f1f1f1 url(/emr4/img/noise-diagonal.png);	
}

#companyNameTable li.selected {
	background: #999;
	color: #fff;	
}

.dataTable {
	display: table;
	width: 100%; 
	background: #fff;
	margin: 0;
	box-sizing: border-box;

 }

 .dataCaption {
	display: block;
	width: 100%;
	background-color: rgb(77, 116, 136);
	height: 55px;
	padding-left: 10px;
	color: #fff;
	font-size: 20px;
	line-height: 55px;
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
	box-sizing: border-box;
 }
 .dataHeader-row {
	background: #8b8b8b;
	color: #fff;
 }
.dataRow {
	display: table-row;
}
.dataCell {
	display: table-cell;
	
	padding: 6px; 
	border-bottom: 1px solid #e5e5e5;
	text-align: center;
}

.dataPrimary {
	text-align: left;
}


.dataTable input[type="radio"],
.dataTable input[type="checkbox"]{
	display: none;
}
