/* FONT STYLE OF TEXT IN PAGE */

BODY {
	color: #202020;
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
}

/* FONT STYLE OF TEXT IN TABLES */

TABLE {
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
}

a {
	text-decoration: none;
	color: #337ab7;	
}

a:hover {
	text-decoration: none;
	color: #286090;	
}

a img {
	border: 0 none #000;
}

a .popoverWidget img {
	border: 0 none #000;
}

.webui-popover {
	max-width: 600px;
}

.webui-popover-below-modal {
	z-index: 1040;
}

/* visualisation of simple buttons */
button:focus {
	outline:0 !important;
}

.btn {
	-webkit-border-radius: 5;
	-moz-border-radius: 5;
	border-radius: 5px;
	color: #ffffff;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 13px;
	border: 1px solid #2e6da4;
	background: #337ab7;
	margin: 5px 10px 5px 0;
	padding: 3px 10px;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	cursor: hand;
}

.bigbtn {
	font-size: 25px;
}

.smallbtn {
	margin: 1px;
	padding: 1px;
	min-width: 20px;
}

.btndisabled {
	cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65;
}

.btngrey {
	background: #DDDDDD;
	border: 1px solid #999;
	margin: 0 10px 0 0;
	color: #202020;
	width: 20px;
	padding: 0px;
}

.btngrey:hover {
	border: 1px solid #286090;
}

.btn:hover {
	background: #286090;
	text-decoration: none;
	color: #FFF;
}

.btn-centered {
	margin-left: 10px;
}

.smallbn-column {
	min-width: 25px;
}

.dropdown-menu {
	background-clip: padding-box;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 6px;
	-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
	-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
	display: none;
	float: left;
	font-size: 13px;
	left: 0;
	list-style: outside none none;
	margin: 2px 0 0;
	min-width: 160px;
	padding: 5px 0;
	position: absolute;
	text-align: left;
	top: 100%;
	z-index: 1000;
}

.dropdown-menu > li > a {
	clear: both;
	color: #337ab7;
	display: block;
	font-weight: 400;
	line-height: 1.42857;
	padding: 3px 20px;
	white-space: nowrap;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
	background-color: #286090;
	color: #ffffff;
	text-decoration: none;
}

/* HEADER IS LEFT-ALIGNED */

TH {
	text-align:left;
}

/* table cells left aligned by default, but respect the deprecated align attribute */

td {
	text-align: left;
}
td[align=center] {
	text-align: center;
}
td[align=right] {
	text-align: right;
}

/* pre and form tags shouldn't have a margin */
pre, form {
	margin: 0;
}

/* Legend of a fieldset must have the same color as other text */
legend {
	color: #202020;
}

/* THE STYLE OF DATE FIELDS */

.datetime {
	border: 1px solid #DDDDDD;
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	TEXT-ALIGN: center
}

/* SEARCH BOX USED IN PANEL EDITOR AND ORDER ENTRY */

.searchbox {
	/*border: 1px solid #202020;*/
	border: 0px;
	background-image:url('../img/search.gif');
	background-repeat:no-repeat;
	background-position: left center;
	padding-left:20px;
}

/* CUT VALUE IN CELL (USED IN PANEL BROWSER) */

.cut {
	overflow:hidden;
	white-space:nowrap;
	/*text-overflow: ellipsis === NOT YET SUPPORTED */
}

/* THE STYLE OF A HTML INPUT FIELD */

.input {
	border: 1px solid #DDDDDD;
	color: #202020;
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
	margin: 0;
	margin-right: 0;
}

/* the color of placeholders was ovveridden by the input color, so we change it back here */
::-webkit-input-placeholder {
	color: #AAAAAA;
}

:-moz-placeholder {
	color: #AAAAAA;
}

/* older browsers don't support the placeholder attribute yet,
 therefore we use the jquery placeholder plugin 
 which thankfully sets a class on the affected inputs and textareas */

input.placeholder, textarea.placeholder {
	color: #AAAAAA;
}

/* THE STYLE OF A HTML INPUT BUTTON */

.inputbutton {
	border: 1px solid #BBB;
	color: #202020;
	font-size: 13px;
	font-family: 'Open Sans', Arial, sans-serif;
}

/* TO MAKE AN ELEMENT LOOK CLICKABLE */

.clickable {
	/*
	don't reverse the order of these two
	@see https://developer.mozilla.org/en/Giving_'cursor'_a_Hand
	 */
	cursor: pointer;
	cursor: hand;
}

/* TO MAKE AN ELEMENT LOOK NOT-CLICKABLE */

.cursor-default {
	cursor: default;
}

/* FOR ORDER ACTION VALUES */
.orderactionvalue {
	font-family: "Courier New", monospace;
	white-space: pre-wrap;
}

/* FOR RESULT CONSULTATION VALUES */

.value {
	font-family: "Courier New", monospace;
}

.print {
	page-break-before: always;
}

/* Image button */
.smallimagebutton {
	padding: 2px;
	vertical-align: middle;
	cursor: pointer;
}

.nowrap {
	white-space:nowrap
}

/* Result Consultation options box (border and bgcolor in colors.css) */
.optionsbox {
	width: 450px;
	top: 105px;
	position: absolute;
	padding: 10px;
	margin-left: -500px;
	overflow: hidden;
	z-index: 100;
	-o-border-radius: 10px;
	-moz-border-radius: 12px;
	-webkit-border-radius: 10px;
	-moz-box-shadow: 0px 3px 7px #adadad;
	-webkit-box-shadow: 0px 3px 7px #adadad;
	box-shadow: 0px 3px 7px #adadad;
	border-radius: 10px;
	-moz-box-sizing: border-box;
	-opera-sizing: border-box;
	-webkit-box-sizing: border-box;
	-khtml-box-sizing: border-box;
	box-sizing: border-box;
}

/* Order Entry wizard buttons */
.oe_wizard_next {
	background:url(../img/oe_wizard_next.png) no-repeat center center !important;
	padding: 20px;
	border: 1px solid #BBB;
}
.oe_wizard_next:hover {
	background: #286090 url(../img/oe_wizard_next.png) no-repeat center center !important;
}
.oe_wizard_previous {
	background:url(../img/oe_wizard_previous.png) no-repeat center center !important;
	padding: 20px;
	border: 1px solid #BBB;
}
.oe_wizard_previous:hover {
	background: #286090 url(../img/oe_wizard_previous.png) no-repeat center center !important;
}

.oe_wizard_next_disabled {
	background:url(../img/oe_wizard_next_disabled.png) no-repeat center center !important;
	padding: 20px;
	border: 1px solid #BBB;
}
.oe_wizard_previous_disabled {
	background:url(../img/oe_wizard_previous_disabled.png) no-repeat center center !important;
	padding: 20px;
	border: 1px solid #BBB;
}
.oe_pricecalculationdetails {
	border-collapse: collapse;
}
.oe_pricecalculationdetails th {
	padding: 0 10px 2px 10px;
	border-top: 3px solid #FFF;
	border-bottom: 6px solid #FFF;
}
.oe_pricecalculationdetails td {
	padding: 0 10px;
	vertical-align: top;
}
.oe_pricecalculationdetails .not-to-charge {
	text-decoration: line-through;
}
.todolist {
	background:	url(../img/todo.png) no-repeat center center !important;
	padding: 14px;
	border: 1px solid #BBB;
}
.todolist:hover {
	background:	#286090 url(../img/todo_w.png) no-repeat center center !important;
}

.titlebox{
	border-bottom: 1px solid black;
}

.menuAndDetailTile {
	text-align: left;
	overflow-x: hidden;
	overflow-y: auto;
	position: relative;
}
.menuAndDetailTile .menuTile{
	width: 310px;
	position: absolute;
	margin-left: 0;
	left: 0;
	top: 0;
}
.menuAndDetailTile .detailTile{
	margin-left: 330px;
}

.mod.dateReadWriteField {
	white-space: nowrap;
}
.mod.dateReadWriteField .year {
	width: 3em;
}
.mod.dateReadWriteField .month,
.mod.dateReadWriteField .day,
.mod.dateReadWriteField .hours,
.mod.dateReadWriteField .minutes {
	width: 2em;
}

.mod.dateEditor {
	border-collapse: collapse;
}
.mod.dateEditor td {
	padding-top: 0;
}
.mod.dateEditor a {
	text-decoration: none;
}
.mod.dateEditor a img {
	border: 0;
}
.mod.dateEditor .copycell {
	text-align: right;
}

.ui-datepicker {
	z-index: 9999 !important; /* must be > than popup editor (1002) */
}

.unSupportedBrowser{
	font-weight: bold;
	background: #FFFFAA;
	color: #990000;
	text-align: center;
}

.patientHeaderPrevNextButtonsTd {
	width: 100px;
	text-align: right;
	vertical-align: top;
}
.mod.patientHeaderPrevNextButtons {
	position: relative;
	overflow: visible;
	top: 0px;
	left: 0px;
	width: 100px;
	height: 10px;
	white-space: nowrap;
}
.mod.patientHeaderPrevNextButtons .inner {
	position: absolute;
	top: 0;
	right: -1px;
	width: 97px;
	height: 39px;
	padding: 0;
	background-image: url(../img/patientHeaderPrevNextButtonsBackground.png);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.mod.patientHeaderPrevNextButtons .inner img.prev {
	position: absolute;
	left: 5px;
	top: 3px;
	padding-bottom: 4px;
	padding-left: 10px;
}
.mod.patientHeaderPrevNextButtons .inner img.next {
	position: absolute;
	left: 55px;
	top: 3px;
	padding-bottom: 4px;
	padding-right: 10px;
}

/* deceased patient */
.deceasedHeader{
	white-space:nowrap;
	font-style: italic;
	text-transform: uppercase;
}
.deceased {
	text-decoration:line-through;
	width:1px;
}

.mod.tabs .tabSelectors, .mod.tabs .tabSelectors .tabSelector {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.mod.tabs .tabSelectors .tabSelector {
	float: left;
	/* fix for ie6 and ie7 (uses the star property hack) */
	*display: inline;
	*zoom: 1;
	*float: none;
}
.mod.tabs .tabSelector a {
	color: #202020;
	font-weight: bold;
	font-size: 13px;
	line-height: 18px;
	text-align: bottom;
	font-family: 'Open Sans', Arial, sans-serif;
	text-decoration: none;
	cursor: pointer;
	cursor: hand;
}
.mod.tabs .tabSelector .left, .mod.tabs .tabSelector .inner, .mod.tabs .tabSelector .right {
	height: 18px;
	float: left;
}
.mod.tabs .tabSelector .left {
	width: 5px;
	background-image: url(../img/menus/tab_before_n.gif);
}
.mod.tabs .tabSelector .inner {
	background-image: url(../img/menus/tab_back_n.gif);
}
.mod.tabs .tabSelector .right {
	width: 5px;
	background-image: url(../img/menus/tab_after_n.gif);
}
.mod.tabs .tabSelector :hover .left {
	background-image: url(../img/menus/tab_before_o.gif);
}
.mod.tabs .tabSelector :hover .inner {
	background-image: url(../img/menus/tab_back_o.gif);
}
.mod.tabs .tabSelector :hover .right {
	background-image: url(../img/menus/tab_after_o.gif);
}
.mod.tabs .tabSelector.selected .left {
	background-image: url(../img/menus/tab_before_s.gif);
}
.mod.tabs .tabSelector.selected .inner {
	background-image: url(../img/menus/tab_back_s.gif);
}
.mod.tabs .tabSelector.selected .right {
	background-image: url(../img/menus/tab_after_s.gif);
}
.mod.tabs .tabSelectors {
	overflow: hidden;
}
.mod.tabs .tabPage {
	display: none;
	clear: left;
}
.mod.tabs .tabPage.selected {
	display: block;
}

/*
use this to center anything in any browser
inlcuding ie6 in strict as well as quirks mode
*/
.centeringWrapper {
	display: table;
	margin: 0 auto;
	/* lt IE 8 */
	*display: block;
	*text-align: center;
}
.centeredContent {
	display: table-cell;
	/* lt IE 8  */
	*text-align: left;
	*display: inline;
	*zoom: 1;
}

.jsWidth20px {
	width: 20px;
}
.jsWidth120px {
	width: 120px;
}
.width600px {
	width: 600px;
}
.tdvaligntop td {
	vertical-align: top;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 * @see http://nicolasgallagher.com/micro-clearfix-hack/
 */
.clearfix:before,
.clearfix:after {
	content: " "; /* 1 */
	display: table; /* 2 */
}

.clearfix:after {
	clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
	*zoom: 1;
}

.orderEntryVariablesInnerTable {
	border-collapse: collapse;
	white-space: normal;
	word-wrap: break-word;
	word-break: break-all;
}
.orderEntryVariablesInnerTableVerticalDivider {
	border-left: 1px solid #000;
}

.resultComment {
	word-wrap: break-word;  
	white-space: pre-wrap;
	max-width:800px;
}

/**
* METRO NOTIFICATIONS
*/
.mnSbContent, .mnSbContent table {
	color: #FFF;
	font-weight:bold;
	font-size: 13px;
	margin-right: 10px;
	font-family: 'Open Sans', Arial, sans-serif;
}

/**
* Autocomplete address widgets: make them look like CyberLab widgets
*/
.tundra .dijitSelect, .tundra .dijitTextBox {
	border: 1px solid #dddddd;
}
.dijitInputInner {
	background-color: #FFF !important;
}

.tundra .dijitSelect .dijitButtonContents, .tundra .dijitTextBox .dijitButtonNode {
	border-color: #dddddd;
}
.tundra .dijitMenuItem {
	font-family: 'Open Sans',​Arial,​Verdana,​sans-serif;
}


.disable-wf,
body .disable-wf,
.disable-wf table,
.disable-wf .datetime,
.disable-wf .btn,
.disable-wf input,
.disable-wf .inputbutton,
.disable-wf .mod.tabs .tabSelector a,
.disable-wf .mnSbContent,
.disable-wf .mnSbContent table {
	font-family: Arial, sans-serif;
}


.disable-wf .orderactionvalue,
.disable-wf .value {
	font-family: "Courier New", monospace;
}

.browserImage {
	width : 150px;
	border: 1px solid #bbb;
}
.custommessages_email,.custommessages_mobile {
	margin-bottom: 1em;
}
.custommessages_languageContainer {
	margin-bottom: 2em;
	border-left: 1px solid #bbbbbb;
	padding-left: 5px;
}
.vertical-scrollbars {
	overflow: -moz-scrollbars-vertical; 
	overflow-y: scroll;
}

.white-popup {
	position: relative;
	background: #FFF;
	padding: 40px;
	margin: 40px auto;
}
td.editor-right-column {
	padding-left: 5px;
}

.displayNone {
	display: none;
}

.labelPrinterLogs {
	height: 300px;
	width: 750px;
	overflow: auto;
	padding: 4px;
	border: 1px solid #2e6da4;
}

#observations .value tt {
	word-wrap: break-word;
	display: inline-block;
	width: 400px;
}

.additionalInformation {
	font-weight: bold;
	color: #4169e1
}

.specimenSourceOverview {
	border: 1px solid #A0A0A0;
	padding: 0px;
	margin: 0px;
}

.specimenSourceOverview table {
	table-layout:fixed;
	border-collapse: collapse;
}

.specimenSourceOverview td {
	border: 1px solid #A0A0A0;
}

.specimenSourceOverview th {
	padding-left:2px;
}

.specimenSourceOverviewScrollWrapper {
	max-height: 118px;
	overflow-x: hidden;
	overflow-y: scroll;
}

.sampleCollectionCollector {
	width:100%;
	min-height: 35px;
	margin-bottom: 10px;
}

.sampleCollectionCollectorComment {
	width:100%;
	margin:0;
	font-style: italic
}

.sampleCollectionCollectorComment label {
	font-weight: bold;
}

#pdfViewer {
	max-width: 100%;
}

.ruleList {
	overflow-y: auto;
}

.cookieConsent {
	background-color: #BFBFBF;
	bottom: 0;
	left: 0;
	padding: 1em;
	position: fixed;
	right: 0;
	text-align: left;
}

.cookieConsent span {
	font-size: 1.1em;
	line-height: 2.4em;
}

.cookieConsent button {
	float: right;
}