<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------------------------------------\
|                                           |
| Copyright © Epic Systems Corporation 2020 |
|                                           |
+-------------------------------------------+
|             Table of Contents             |
+-------------------------------------------+
| General Tags                              |
| General Styles                            |
| Banner Classes                            |
| Header Classes                            |
| Styled Text                               |
| Link Styles                               |
| Section Headers                           |
| Table Headers &amp; Footers                   |
| Table Message Container                   |
| Table Data                                |
| Top Toolbars                              |
| Bottom Toolbars                           |
| Form Data and Prompts                     |
| Form Buttons                              |
| Big Buttons                               |
| Accordion                                 |
| Wizard                                    |
| Checkbox Group                            |
| Dx Association Page                       |
| Association Grid                          |
| Referral Report                           |
| Smart Selection                           |
| Encounter Bar                             |
| Help &amp; Hints                              |
| Old Tabs                                  |
| Trees                                     |
| Smart Tools                               |
| Accordion Reports                         |
| Video Visits                              |
| Copyrights &amp; Patents                      |
| Welcome                                   |
| Frame Borders                             |
| Fieldsets                                 |
| Utilities Page                            |
| Section Backgrounds                       |
| Table Headers &amp; Data                      |
| Rules                                     |
| Fonts                                     |
| Report Styles                             |
| Various                                   |
| Various Unused                            |
| Display Classes                           |
| In Basket                                 |
| Flex layout                               |
| Flex layout - Sizing                      |
| In field Required Icons                   |
| Flex Header                               |
| Flex Questionnaires                       |
| Print Classes - (DON'T ADD BELOW HERE)    |
\------------------------------------------*/

/****&lt;General Tags&gt;****/
html, body {
  height: 100%;
}
body {
  color: #000000;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  padding: 0px;
  margin: 0px;
}
body, .bodyBgClass {
  background-color: #ffffff;
}
a:link, .ReportIFrame a:link {
  color: #00A6D3;
  padding: 5px 0;
  text-decoration: none;
}
a:visited, .ReportIFrame a:visited {
  color: #00A6D3;
  text-decoration: none;
}
a:hover:not(disabled), .ReportIFrame a:hover:not(disabled) {
  color: #00A6D3;
  border-radius: 3px;
  text-decoration: none;
}
a:active, .ReportIFrame a:active {
  text-decoration: none;
}

select:not([size]), select[size="1"] {
  height: 28px;
}
.tablet-multirow-select-text {
  font: normal 11px "Segoe UI", Arial, Helvetica, sans-serif;
}
input[type=textbox], input[type=text], input[type=email], input[type=password], textarea, select , .chkBoxListSelectAll, .rflSrchChkBoxList, .CheckBoxListDefault{
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  border: 1px solid #a0a0a0;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 6px;
}
select {
  padding-right: 4px;
}
input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-style: italic;
  color: #888888; 
}
input:-moz-placeholder { /* Firefox 18- */
  font-style: italic;  
  color: #888888; 
}
input::-moz-placeholder {  /* Firefox 19+ */
  font-style: italic;  
  color: #888888; 
}
input:-ms-input-placeholder {  
  font-style: italic;  
  color: #888888;   
}
input[type=textbox]:hover:enabled, input[type=text]:hover:enabled, input[type=email]:hover:enabled, textarea:hover:enabled, select:hover:enabled, .rflSrchChkBoxList:hover:enabled, .CheckBoxListDefault:hover:enabled{
  border-color: #00A6D3;
}
input[type=text]:not(.webtrol), input[type=email]:not(.webtrol) {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 6px;
}
input:focus:not[type=button], textarea:focus, select:focus {
  border: 1px solid #9ecaed;
  box-shadow:0 0 4px #9ecaed;
}
input[type=textbox]:disabled, input[type=text]:disabled, input[type=email]:disabled, textarea:disabled, select:disabled {
  background-color: rgba(213,213,213,0.5);
}
input[type=button]:disabled {
  opacity: 0.6;
}
input[type=checkbox]:disabled + label, input[type=radio]:disabled + label, input.ButtonOut:disabled {
  opacity: 0.3;
  border-radius: 0px;
  background: white;
  border: grey;
}
hr {
  color: #000000;
  background-color: #000000;
  border: 0px;
  height: 2px;
}
pre {
  font-family: Consolas, Courier, monospace;
  font-size: 14px;
}
td
{
  white-space:normal;
}

tr ttext:hover {
  background: rgba(0,0,0,.1);
}
textarea {
  white-space: pre-wrap;
  resize: none;
}

.watermark {
  background-image: linear-gradient(to bottom, rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%), url("../img/Placeholder-Generic.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.fillerWatermark {
  background-image: url("../img/Placeholder-Generic.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.forceNoWatermark {
  background-image: none !important;
}
/****&lt;/General Tags&gt;****/

/****&lt;General Styles&gt;****/

/* Main page and activity background color */
.general-background-color, .pageDIV {
  background-color: rgb(255,255,255);
}

/* Page complementary color (activity header) */
.alternate-background-color, .FrameHeaderDiv, .tabs {
  background-color: rgb(255,255,255);
}

.FrameHeaderDiv {
  background-color: #E0FCFB;
}

/* Prevent highlighting of text. Helps with clickable text (double clicking ends up highlighting the word) */
.unselectable {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Removes borders and does nothing else */
.onlyBorderStyleNone {
  border-style: none;
}

/* Makes the element invisible and does nothing else */
.visibilityHidden {
  visibility: hidden;
}

/* Prevents wrapping and does nothing else */
.onlyWhiteSpaceNoWrap {
  white-space: nowrap;
}

/* Makes overflowing words break and nothing else */
.onlyWordWrapBreak {
  word-wrap: break-word;
}

#DivHTMLContent {
  border: 1px solid transparent;
}

#DivHTMLContent.LimitedWidth {
  display: inline-block;  
}

.iframeSafeContent {
  border: none!important;
}

/****&lt;/General Styles&gt;****/

/****&lt;Banner Classes&gt;****/
.banner {
  color: #FFFFFF;
  font: 600 13px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #333366;
  border: 2px outset #FFFFFF;
  padding: 3px;
}
a.bannertrigger {
  font-weight: bold;
}
a.bannertrigger:hover {
  color: #FFCC00;
}
a.bannertrigger:active {
  color: #FFCC00;
}
/****&lt;/Banner Classes&gt;****/

/****&lt;Header Classes&gt;****/
a.header {
  font-weight: bold;
}
a.header:link {
  color: #FFFFFF;
}
a.header:visited {
  color: #FFFFFF;
}
a.header:hover {
  color: #FFCC00;
}
a.header:active {
  color: #FFCC00;
}
/****&lt;/Header Classes&gt;****/

/****&lt;Styled Text&gt;****/
.plain {
  color: #333;
  font: normal 95% "Segoe UI", Arial, Helvetica, sans-serif;
}
.plainRed {
  color: #900000;
  font: normal 95% "Segoe UI", Arial, Helvetica, sans-serif;
}
.smallRedBold {
  color: #900000;
  font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: bold;
}
.emphasis {
  color: #000;
}
.alert {
  color: #c00;
  font: bold 100% "Segoe UI", Arial, Helvetica, sans-serif;
}
.x-smaller {
  font: normal 95% "Segoe UI", Arial, Helvetica, sans-serif;
}
.smaller {
  font: normal 100% "Segoe UI", Arial, Helvetica, sans-serif;
}
.small {
  font: normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
}
.larger {
  font: normal 135% "Segoe UI", Arial, Helvetica, sans-serif;
}
.x-larger {
  font: normal 155% "Segoe UI", Arial, Helvetica, sans-serif;
}
.NormalLarge {
  font: normal 16px "Segoe UI", Arial, Helvetica, sans-serif;
}
.NormalMedium {
  font: normal 15px "Segoe UI", Arial, Helvetica, sans-serif;
}
.NormalSmall {
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.NormalXSmall {
  font: normal 11px "Segoe UI", Arial, Helvetica, sans-serif;
}
.BoldLarge {
  font: bold 16px "Segoe UI", Arial, Helvetica, sans-serif;
}
.BoldMedium {
  font: bold 15px "Segoe UI", Arial, Helvetica, sans-serif;
}
.BoldSmall {
  font: bold 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.BoldXSmall {
  font: bold 11px "Segoe UI", Arial, Helvetica, sans-serif;
}
.ItalicLarge {
  font: italic normal 16px "Segoe UI", Arial, Helvetica, sans-serif;
}
.ItalicMedium {
  font: italic normal 15px "Segoe UI", Arial, Helvetica, sans-serif;
}
.ItalicSmall {
  font: italic normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.ItalicXSmall {
  font: italic normal 11px "Segoe UI", Arial, Helvetica, sans-serif;
}
.UnderlinedLarge {
  font: normal 16px "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: underline;
}
.UnderlinedMedium {
  font: normal 15px "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: underline;
}
.UnderlinedSmall {
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: underline;
}
.UnderlinedXSmall {
  font: normal 11px "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: underline;
}
.ItalicsDisabled {
  color: #999999;
  font: italic normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
}
.SmallSubText {
  color: #A39533;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.NormalRed {
  color: #FF0000;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.NormalGray {
  color: #A0A0A0;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.MiniSectionHeader {
  color: #3063B0;
  font: bold 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.DarkGrayNormal {
  color: #333333;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
/* NFSJ 04/15 [366251] Explicitly applying strikethrough to child elements. */
/* The StrikethroughStyle class will be added by rpt tags. */
/* This is to make strikethroughs always inherit in Chrome. */
/* CSS spec says the style does not automatically inherit to nested tables. */
/* Chrome follows this spec although IE does not. */
.StrikethroughStyle, .StrikethroughStyle * {
	text-decoration: line-through;
}
/****&lt;/Styled Text&gt;****/

/****&lt;Link Styles&gt;****/
a.LinkClass, a.LinkNormalText {
  text-decoration: none;
}
a.LinkNormalText {
  color: #000000!important;
}
a.LinkNormalText:hover {
  color: #CC0000!important;
}
a.LinkNoStyle, a.LinkNoStyle:visited, a.LinkNoStyle:hover, a.LinkNoStyle:active {
  cursor: default;
  color: #000000;
  font-weight: normal;
  text-decoration: none;
}
.loadMore, .loadAll{
  font-weight: normal;
  font-size: 12px;
  color: rgb(119, 143, 155) !important;
}
.subHeaderSoftWarning .loadMore, .subHeaderSoftWarning .loadAll {
  color: #000000!important;
  font-weight: bold;
}
/****&lt;/Link Styles&gt;****/

/****&lt;Section Headers&gt;****/
.secHead {
  color: #FFFFFF;
  font: bold 100% "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #333366;
}
.SubSecHead {
  color: #333366;
  font: bold 16px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #FFFFFF;
}
/****&lt;/Section Headers&gt;****/

/****&lt;Table Headers &amp; Footers&gt;****/
.colHead, .colHeadSorted, .colHeadRaw, .colHeadOver {
  color: rgba(0,0,0,0.6);
  font-size: 14px;
  text-align: left;
  padding: 5px 10px !important;
  box-sizing: border-box;
  font-weight: 600;
}
.colHeadSorted, .colHeadOver
{
  cursor: pointer;
}
.colHeadSorted img {
  opacity: 0.5;
}
.colHeadOver img {
  opacity: 1;
}
.colHeadOver {
  color: black;
  transition: 0.4s;
}
.colHeadSorted {
  color: #0277BD;
  box-shadow: 0 -4px 0 0 inset;
}
.colHead a, .colHeadSorted a, .colHeadRaw a {
  text-decoration: none!important;
  color: #13364B!important;
}
.colHead a:hover, .colHead a:active, .colHeadSorted a:hover, .colHeadSorted a:active, .colHeadRaw a:hover, .colHeadRaw a:active {
  color: #BF4B0B!important;
}
.theader, .WTableHeader {
  display: table-header-group;
}
.WTableHeader {
  position: relative;
}
.WTableHeader,.instantHead1, .instantHead2, .instantHead3 {
  background-color: #ffffff;
}  
.tfooter {
  display: table-footer-group;
}
.tableFreezeWrapper {
  box-shadow: 0px 6px 5px -2px rgba(211,211,211,0.8);
}
/****&lt;/Table Headers &amp; Footers&gt;****/

/****&lt;Table Message Container&gt;****/
.tableMessageContainer {
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 10px;
}
.tableMessageContainer &gt; .formData {
  flex: 1;
}
.tableMessageImg {
  border-style: none;
  padding-right: 16px;
  width: 32px;
  height: 32px;
}
/****&lt;/Table Message Container&gt;****/

/****&lt;Table Data&gt;****/
.TableClass {
  margin: -1px; /* Makes new patient search look nice */
  border-collapse: collapse;
}
.TableClass td{
  padding: 10px;
}
.TableClass a {
  text-decoration: none;
}
.dataEven, .dataOdd, .dataGrey, .dataYellow, .dataYellowEven, .dataYellowOdd, .dataRow, .dataRowDottedBorder, .highlightEven, .highlightOdd, .EntryRow {
  font-size: 14px;
}
.dataEven, .dataOdd, .dataGrey, .dataYellow, .dataYellowEven, .dataYellowOdd, .highlightEven, .highlightOdd {
  vertical-align: top;
  border-left: 0px;
}

.dataEven, .dataEvenBgClass, .dataOdd, .dataOddBgClass, .dataEven td, .dataEvenBgClass td, .dataOdd td, .dataOddBgClass td {
  border-top: 1px solid #DDDDDD;
}

.TableClass tr:first-of-type .dataEven, .TableClass tr:first-of-type .dataEvenBgClass, .TableClass tr:first-of-type .dataOdd, .TableClass tr:first-of-type .dataOddBgClass,
.subRow .dataEven, .subRow .dataEvenBgClass, .subRow .dataOdd, .subRow .dataOddBgClass {
  border-top-color: transparent;
}

.dataGrey {
  color: #000000;
  background-color: #CCCCCC;
}
.dataInactiveEven {
  background-color: #e6e7e8;
}
.dataInactiveOdd {
  background-color: #e6e7e8
}
.StrikethroughStyleEven, .StrikethroughStyleOdd{
  text-decoration: line-through;
}
.dataYellow, .dataYellowEven, .dataYellowOdd{
  color: #000000;
  background-color: rgba(0,166,211,0.2);
  border-top: 1px solid #DDDDDD
}
.dataRow {
  color: #000000;
}
.dataRowDottedBorder {
  color: #000000;
  border: 1px dotted #DDDDDD;
}
table.borderTable {
  border-collapse: collapse;
}
.highlightEven {
  color: #000000;
  background-color: #C3D1DF;
}
.highlightOdd {
  color: #000000;
  background-color: #C3D1DF;
}
.EntryRow {
  color: #000000;
}
.commentData, .commentDataLong {
  color: #000000;
  font-weight: normal;
  font-size: 12px; 
  max-width: 300px;
  
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
  
  position:relative;
  display:inline-block;
  top: 2px;
  left: 3px;
}
.commentDataLong {
  max-width: 600px;
  white-space: normal;
}
.commentPriority {
  font-weight: bold;
  background: #FFFF8C;
}
.validUntilTab{
  padding-top:2px;
  margin-left:3px;
}





.commentIconAlign{ 
  display: inline-block;
  vertical-align: text-bottom;
  border: none;
  outline: none;
}
.priorityHigh {
  font-weight: bold;
  background: #FFFF8C;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
  white-space: nowrap;
}
.priorityOther{
  padding-left: 5px;
  display: inline-block;
  white-space: nowrap;
}
.priorityHigh .commentData {
  color: #CC0000;
}
.DisabledTableData {
  color: #5B5B5B;
}
.subRow &gt; td {
  padding-top: 3px;
  padding-bottom: 3px;
}
.firstSubRow &gt; td:not(:first-child) {
}
.lastSubRow &gt; td {
  padding-bottom: 15px;
}
.dataYellowEvenSubRow, .dataYellowOddSubRow {
  background-color: rgba(0,166,211,0.1);
}
.subRowCellRightAlign {
  text-align: right;
}
.tableImage{
  max-height: 45px;
  max-width: 120px;
  vertical-align: middle;
}
.tableNegativeLeftMargin{
  margin-left: -4px;
}
.TableRow:hover td {
  background-color: rgba(0,166,211,0.07); 
}
.TableRow:hover .dataYellow, .TableRow:hover .dataYellowEven, .TableRow:hover .dataYellowOdd {
  background-color: rgba(0,166,211,0.15); 
}
.iPadTableRow:hover td {
  background-color: #FFFFFF;
}
.iPadTableRow:hover .dataYellow, .iPadTableRow:hover .dataYellowEven, .iPadTableRow:hover .dataYellowOdd {
  background-color: rgba(0,166,211,0.2);
}
.DateGrouperRow {
  padding: 0px;
  background-color: white;
}
.DateGrouperRow td {
  padding: 0px;
  border: 0px!important;
}
.RowAfterGroupRow &gt; td {
  border: 0px;
}
.TableClass .DateGrouperCell {
  color: #2F6F7B;
  white-space: nowrap;
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
}
.DateGrouperRow hr {
  border: none;
  height: 1px;
  color: #2F6F7B;
  background-color: #2F6F7B;
}
.HideRadioSelection &gt; td &gt; input[type=radio] {
    display: none;
}
.HideRadioSelection &gt; td:first-child {
    border-left: 20px solid transparent;
    padding: 0px;
    border-collapse: separate;
}
.HideRadioSelection &gt; td.dataYellowOdd:first-child, .HideRadioSelection &gt; td.dataYellowEven:first-child {
    border-left: 20px solid #00A6D3;
}
.tableOutsideData {
}
.tableOutsideData tr:first-child td {
  border-bottom: 1px solid #CCCCCC;
  font-weight: bold;
  white-space: nowrap;
  color: #808080;
}
.tableOutsideData td {
  font-size: 14px;
  padding: 3px;
  padding-right: 10px;
}
.tableOutsideWarning td {
  font-size: 14px;
  padding: 3px;
  vertical-align: top;
}
.colItemRightAlign {
  float: right;
  margin-right: -9px;
}
.colItemLeftAlign {
  float: left;
  margin-left: -9px;
}
tr .hoverBubbleCell {
  font-size: 110%;
  cursor: default;
  font-weight: bold;
}
tr .hoverBubbleColor {
  padding: 5px 25px 5px 25px;
  border-radius: 10px;
}
tr .hoverBubbleTargetGreen {
  background: #ADE6BE;
  color: #266B00;
}
tr .hoverBubbleTargetYellow {
  background: #FEC800;
  color: black;
}
tr .hoverBubbleTargetRed {
  background: #C60000;
  color: white;
}
.hoverBubbleTitle {
  font-weight: bold;
  font-size: 110%;
  color: #0277bd;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hoverBubbleDescription {
  color: #0277bd;
}
tr .nonApplicableHover {
  font-style: italic;
}
.iconRightWrap {
  text-align: right;
  margin-right: -15px;
  padding-top: 2px;
}
.iconDivInCell {
  display: inline;
  margin-right: 4px;
  top:2px;
  position:relative;
}
.primaryColumn {
  font-size: 16px;
}
.emphasizedColumn {
  font-weight: bold;
}
.deemphasizedColumn {
  color: gray;
  font-size: 12px;
}
.tableCellImage::before {
  display: inline-block;
  vertical-align: middle;
  padding-right: 7px;
  padding-left: 3px;
  content: url('../img/Table_Icon_Blank.png');
}
.tableCellContent {
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  padding-right: 40px;
}
/****&lt;/Table Data&gt;****/

/****&lt;Top Toolbars&gt;****/
.toolbarBtn, .toolbarBtnDrop, .toolbarBtnDisabled, .toolbarBtnRaiseDisabled, .toolbarBtnRaise, .toolbarBtnDropRaise, .toolbarBtnLower, .toolbarBtnPressed, .toolbarBtnPressedRaise, .toolbarBtnPressedLower, .toolbarBtnDropRaiseLower {
  cursor: pointer;
  color: #000000;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
  padding: 6px 6px;
  border-radius: 1px;
}
.DualLine{
  padding: 6px 8px;
}

a.toolbarText, .toolbarBtn, .toolbarBtnDrop, .toolbarBtnDisabled, .toolbarBtnDropDisabled, .toolbarBtnRaise,
.toolbarBtnDropRaise, .toolbarBtnRaiseDisabled, .toolbarBtnLower, .toolbarBtnPressed, .toolbarBtnPressedRaise, .toolbarBtnPressedLower, .toolbarBtnDropRaiseLower,
.toolbarDropItem, .toolbarDropItemSelected, .toolbarDropItemPressed, .toolbarDropItemPressedSelected {
  font-size: 14px;
  color: #00a6d3;
}
a.toolbarText {
  height: 100%;
  width: 100%;
  color: #00a6d3;
  text-decoration: none;
}

.toolbarBtnPressed.toolbarToggleBtn a.toolbarText,
.toolbarBtnPressedRaise.toolbarToggleBtn a.toolbarText
{
  color: white;
}

.toolbarBtnPressed.toolbarToggleBtn,
.toolbarBtnPressedRaise.toolbarToggleBtn
{
  background-color: #00a6d3;
}

a.toolbarText.patListBtnIcon {
  color: transparent;
}
.toolbarBtnDisabled a {
  cursor: default;
}
.toolbarBtnDisabled a.toolbarText {
  color: #666666!important;
}
.toolbarBtnDisabled, .toolbarBtnDropDisabled, .toolbarBtnRaiseDisabled {
  cursor: default !important;
  opacity: 0.35;
}
.toolbarBtnDisabled img, .toolbarBtnDropDisabled img, .toolbarBtnRaiseDisabled img {
}
.toolbarBtnRaise, .toolbarBtnDropRaise {
  background-color: rgba(0,166,211,0.1);
  border: 1px solid rgba(0,166,211,0.2);
}
.toolbarBtnLower, .toolbarBtnPressed, .toolbarBtnPressedRaise, .toolbarBtnPressedLower, .toolbarBtnDropRaiseLower {
  color: black;
  background-color: rgba(0,166,211,0.2);
}
.toolbarButtonBar {
  width: 100%;
  padding: 6px;
}
.formatterTable .toolbarButtonBar
{
  -moz-border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  -khtml-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
}
.toolbarButtonBarRight {
  width: 100%;
  border-left: 0px;
  text-align: right;
  padding: 4px;
}
.toolbarButtonBarLeft {
  width: 100%;
  padding: 4px;
}
.toolbarButtonBarMultiTab{
  width: 100%;
  padding: 4px;
  Background-color: white;
  border-bottom-style:solid;
  border-width:1px;
}
.toolbarButtonBarInner {
  width: 100%;
}
.toolbarInnerTable {
}
.toolbarDropMenu {
  padding: 3px;
  background-color: white;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.4);;
}
.toolbarDropMenuTable{
  border-spacing: 0 2px;
}
.toolbarDropItemIcon,
.toolbarDropItemIconPressed,
.toolbarDropItemIconSelected,
.toolbarDropItemIconPressedSelected 
{
  cursor: pointer;
}

.toolbarDropItem,
.toolbarDropItemPressed,
.toolbarDropItemSelected,
.toolbarDropItemPressedSelected {
  cursor: pointer;
  padding: 3px 5px 3px 2px;
}

.toolbarDropItemIconSelected,
.toolbarDropItemIconPressedSelected,
.toolbarDropItemSelected,
.toolbarDropItemPressedSelected
{
  color: #00a6d3;
}

.toolbarDropItemIconSelected,
.toolbarDropItemSelected
{
  background-color: rgba(0,166,211,0.1);  
}

.toolbarDropItemIconPressed,
.toolbarDropItemPressed,
.toolbarDropItemIconPressedSelected,
.toolbarDropItemPressedSelected
{
  background-color: rgba(0,166,211,0.2);
}

.toolbarDropItem {
  color: black;
}
.toolbarDropBtn {
  text-align: left;
}
.toolbarDropItem.toolbarDropBtn{
  color: #00a6d3;
}

.toolbarDropItemPressed.toolbarToggleBtn,
.toolbarDropItemPressedSelected.toolbarToggleBtn,
.toolbarDropItemIconPressed.toolbarToggleBtn,
.toolbarDropItemIconPressedSelected.toolbarToggleBtn
{
  background-color: #00a6d3;
  color: white;
}

.toolbarBtnIcon, .toolbarDualLineBtnIcon {
  width: 16px;
  height: 16px;
  vertical-align: -2px;
  border: 0px;
}
.toolbarDualLineBtnIcon {
  padding-bottom: 5px;
}
.toolbarDropIcon {
  width: 16px;
  height: 16px;
}
.toolbarDropIconSelected {
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.toolbarSepVert {
  width: 1px;
  height: 100%;
  vertical-align: middle;
  margin: 0px 3px 0px 3px;
  padding: 0px;
}
.toolbarSepVertVisible {
  display: inline;
  border-left: 1px solid lightgray;
}
.toolbarSepConVert {
  height: 95%;
}
.toolbarSepHoriz {
  width: 90%;
  height: 0px;
  border-top: 1px solid #333366;
  border-bottom: 1px solid #FFFFCC;
  margin: 2px;
  padding: 0px;
}
.toolbarSepConHoriz {
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 0px;
}
td.printOverride #tbTopToolbarouterTable.toolbarButtonBar {
	border: none;
}
/****&lt;/Top Toolbars&gt;****/

/****&lt;Bottom Toolbars&gt;****/
.toolbarBottomBtn, .toolbarBottomBtnDrop {
}
.buttonNotAvailable {
  opacity: 0.5;
  cursor: default;
}
.buttonNotAvailable a {
  cursor: default;
}
.button, .toolbarBottomBtn, .toolbarBottomBtnDrop, .toolbarBottomBtnRaise, .toolbarBottomBtnDropRaise, .toolbarBottomBtnDisabled, .toolbarBottomBtnDropDisabled,
.toolbarBottomBtnRaiseDisabled, .toolbarBottomBtnLower, .toolbarBottomBtnPressed, .toolbarBottomBtnPressedRaise, .toolbarBottomBtnPressedLower,
.toolbarBottomBtnDropRaiseLower {
  cursor: pointer;
  color: #00a6d3;
  background-color: white;
  text-align: center;
  padding:8px 16px;
  border-radius: 2px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  border: 1px solid #ddd;
}

.button {
  padding: 4px 8px;
  -webkit-appearance: none; /*Don't use default iPad button style*/ 
}
a.toolbarBottomText, .toolbarBottomBtn, .toolbarBottomBtnDrop, .toolbarBottomBtnDisabled,
.toolbarBottomBtnDropDisabled, .toolbarBottomBtnRaise, .toolbarBottomBtnDropRaise, .toolbarBottomBtnRaiseDisabled, .toolbarBottomBtnLower,
.toolbarBottomBtnPressed, .toolbarBottomBtnPressedRaise, .toolbarBottomBtnPressedLower, .toolbarBottomBtnDropRaiseLower, .toolbarBottomDropItem,
.toolbarBottomDropItemSelected, .toolbarBottomDropItemPressed, .toolbarBottomDropItemPressedSelected {
  font: 13px "Segoe UI", Arial, sans-serif;
}
a.toolbarBottomText {
  height: 100%;
  width: 100%;
  color: #00a6d3 !important;
  text-decoration: none;
}
.toolbarBottomBtnDisabled a {
  cursor: default;
}
.toolbarBottomBtnDisabled a.toolbarBottomText {
  color: #666666 !important;
}
.toolbarBottomBtn, .toolbarBottomBtnDrop {
}
.toolbarBottomBtnDisabled, .toolbarBottomBtnDropDisabled, .toolbarBottomBtnRaiseDisabled {
  cursor: default;
  color: #666666;
  border: 0px;
}
.toolbarBottomBtnDisabled img, .toolbarBottomBtnDropDisabled img, .toolbarBottomBtnRaiseDisabled img {
  opacity: 0.3;
}
.button:hover, .toolbarBottomBtnRaise, .toolbarBottomBtnDropRaise {
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.4);
}
.toolbarBottomBtnLower, .toolbarBottomBtnPressed, .toolbarBottomBtnPressedRaise, .toolbarBottomBtnPressedLower, .toolbarBottomBtnDropRaiseLower {
}

.toolbarBottomButtonBar, .toolbarBottomButtonBarLeft, .toolbarBottomButtonBarRight, .toolbarBottomButtonBarInner {
  width: 100%;
  padding: 12px;
}
table.formatterTable .toolbarBottomButtonBar
{
  border: none;
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  -khtml-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
.toolbarSingleBtn.toolbarBottomButtonBar {
  border-top-style: none;
}
.toolbarBottomButtonBar, .NoScrollWithPartialBottomToolbar {
  border-top: 1px solid rgba(0,0,0,0.2);
}
.toolbarBottomButtonBarRight {
}
.toolbarBottomButtonBarLeft {
}
.toolbarBottomButtonBarInner {
}
.toolbarBottominnerTable {
  border-collapse: separate;
  border-spacing: 8px 0px;
}
.toolbarBottomDropMenu {
  background-color: #F4F4EF;
  border: 1px solid #AAAAAA;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  border-collapse: collapse;
}
.toolbarBottomDropItem {
  cursor: pointer;
  color: #000000;
  padding: 3px 5px 3px 0px;
}
.toolbarBottomDropItemSelected {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #AF4930;
  padding: 3px 5px 3px 0px;
}
.toolbarBottomDropItemPressed {
  cursor: pointer;
  color: #000000;
  background-color: #FFFFCC;
  border: 1px solid #333366;
  border-left: 1px solid #FFFFCC;
  border-bottom: 1px solid #FFFFCC;
  padding: 3px 5px 3px 0px;
}
.toolbarBottomDropItemPressedSelected {
  cursor: pointer;
  color: #FFFFFF;
  background-color: #7F2817;
  border: 1px solid #333366;
  border-left: 1px solid #FFFFCC;
  border-bottom: 1px solid #FFFFCC;
  padding: 3px 5px 3px 0px;
}
.toolbarBottomBtnIcon {
  width: 16px;
  height: 16px;
  vertical-align: bottom;
  border: 0px;
}
.toolbarBottomDropIcon {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 1px solid #F4F4EF;
}
.toolbarBottomDropIconSelected {
  cursor: pointer;
  width: 16px;
  height: 16px;
  border: 1px solid #AAAAAA;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
}
.toolbarBottomSepVert {
  width: 1px;
  height: 100%;
  vertical-align: middle;
  margin: 0px 3px 0px 3px;
  padding: 0px;
}
.toolbarBottomSepConVert {
  height: 95%;
}
.toolbarBottomSepHoriz {
  width: 90%;
  height: 0px;
  border-top: 1px solid #333366;
  border-bottom: 1px solid #FFFFCC;
  margin: 2px;
  padding: 0px;
}
.toolbarBottomSepConHoriz {
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 0px;
}
.toolbarSingleBtn {
  padding: 0px 0px!important;
}
.buttonInSingleBtnToolbar {
  padding: 4px 8px 4px 8px!important;
}
/****&lt;/Bottom Toolbars&gt;****/

/****&lt;Form Data and Prompts&gt;****/
.formData, .formDataDisabled, .formDataHighlight {
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  margin-right: 0px;
}
.formDataBold {
  font-weight: bold;
}
.formDataDisabled {
  background-color: #E3EAEA !important;
}
.formDataHighlight {
  background-color: #AAFFAA;
}
.formPrompt, .formPromptLeft, .formPromptDisabled, .formPromptLeftDisabled, .formPromptBold, .formPromptBoldLeft, .formPromptBoldDisabled, .formPromptBoldLeftDisabled{
  color: #000000;
  font: 10pt "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: right;
  padding-top: 5px;
}
.formPromptLeft, .formPromptLeftDisabled, .formPromptBoldLeft, .formPromptBoldLeftDisabled {
  text-align: left;
}
.formPromptDisabled, .formPromptLeftDisabled, .formPromptBoldDisabled, .formPromptBoldLeftDisabled  {
  color: #808080;
}
.formPromptBold, .formPromptBoldLeft, .formPromptBoldDisabled, .formPromptBoldLeftDisabled {
  font-weight: bold;
}
.formTopPromptIcon {
  padding-right: 0px;
}
.form-icon {
  vertical-align: middle;
  width: 16px;
}
.form-icon-small {
  height: 16px;
  width: 16px;
  margin-top: 10px;
}
.padTopFormItem {
  padding-top: 5px;
}
.smallFormData {
  color: #000000;
  font: normal 11px "Segoe UI", Arial, Helvetica, sans-serif;
}
.smallFormPrompt {
  color: #000000;
  font: bold 11px "Segoe UI", Arial, Helvetica, sans-serif;
}
.defaultFieldValue {
  color: #999999;
}
.formPromptPadLeft {
  padding-left: 15px;
}
.formPromptVertAlignMiddle {
  vertical-align: middle;  
}
.formDescription {
  color: #000000;
  font-style: italic;
  font: 10pt "Segoe UI", Arial, Helvetica, sans-serif;
}
/****&lt;/Form Data and Prompts&gt;****/

/****&lt;Form Buttons&gt;****/
.ellipsebutton, .ellipsebuttonAdd, .calButton {
  cursor: pointer;
  width: 22px;
  height: 22px;
  color: #000000;
  border: 0px;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 18px;
  position: relative;
  margin-left: -26px;
  opacity: 0.5;
}
.ellipsebutton {
  background-image: url("../img/webtrolIcon.gif");
}
.ellipsebuttonAdd {
  background-image: url("../img/webtrolIconAdd.png");
}
.calButton {
  background-image: url("../img/calIcon.gif");
}
.calInReport {
  margin-left: 0px;
}
.ellipsebutton:hover, .ellipsebuttonAdd:hover, .calButton:hover {
  opacity: 1;
}
.calButton:disabled {
  cursor: default;
}
.CalendarQuickButton {
  padding-left: 5px;
}
.CalendarQuickButton &gt; input {
  margin-top: 0px;
  margin-bottom: 0px;
}
.webtrol {
  padding: 4px;
  padding-right: 22px; /* Prevent text from going under webtrol icons.*/
  margin-top: 0px;
}
.TableRow:hover .transparentButton {
  color:gray;
}
.transparentButton {
  cursor: pointer;
  text-align: center;
  border-radius: 2px;
  background-color: transparent;
  border: none;
  color: transparent;
  transition: color 0.3s;
  font-size: x-small;
  width: 60px;
  min-height: 30px;
  vertical-align: text-top;
}
.transparentButton:hover label {
  color: black;
  transition: color 0.3s;
}
.transparentButton label {
  display: block;
  white-space: normal;
  padding-top: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: normal;
}
.transparentButton:disabled {
  opacity: 0.3;
  cursor: default;
}
.transparentButton:disabled:hover label {
  color: gray;
}
img.toolbarBtnIcon {
  padding-top: 1px;     /* IE needs some space above the img or it gets cut off when scaled */
  margin-bottom: -1px;  /* offset the extra space at the bottom so the row doesn't get any taller */
}
.transparentButton:hover img.toolbarBtnIcon {
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);  
}
.transparentButton:disabled:hover img.toolbarBtnIcon {
  -ms-transform: scale(1.0);
  -webkit-transform: scale(1.0);
  transform: scale(1.0);  
}
.button {
}
.disabledbutton {
  cursor: default;
  color: #666666;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #DFDFDF;
  border: 1px solid #666666;
}
.ButtonOut, .ButtonIn, label.QuickBtnLabel, .ButtonOutList{
  display: inline-block;
  color: #0277BD; 
  cursor: pointer;
  width: auto;
  overflow: visible;
  font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
  border: 1px solid #000000;
  padding: 3px;
  padding-right: 18px;
  padding-left: 18px;
  margin-bottom: 4px;
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 6px; 
  -webkit-appearance:none;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 2px; 
}
label.QuickBtnLabelWithEmptyCheckbox {
  padding-right: 6px;
}
input:disabled + label.QuickBtnLabel, input.ButtonOut:disabled {
  cursor: default;
} 
.ButtonOut, input:not(:checked) + label.QuickBtnLabel, .ButtonOutList, input.ButtonOut:disabled{
  background-color: #E0FCFB; 
  border: 1px solid rgb(194,240,240); 
}
input:not(:checked) + label.QuickBtnLabelWithEmptyCheckbox {
  border: 1px solid rgb(194,240,240);
  background: url('../img/checkbox_unchecked_black.png') 3px 50% no-repeat;
  background-size: 12px 12px;
  background-color: #E0FCFB;
}
.ButtonIn, input:checked + label.QuickBtnLabel { 
  border: 1px solid #00A6D3; 
  background: url('../img/white_check_thin.png') 3px 50% no-repeat;
  background-size: 12px 12px;
  background-color: #00A6D3;
  color: white;
}
input:focus + label.QuickBtnLabel {
  border: 1px dotted black;
}
.QuickBtnField {
   position: absolute;
   width: 0px;
   height: 0px;
   padding: 0px;
   margin: 0px;
   opacity: 0;
   z-index: -1;
}
a.hoverButton:hover {
  color: rgb(95,124,138);
  background-color: rgba(0,166,211,0.1);
  border-color: rgba(0,166,211,0.2);
}
a.hoverButton {
  color: rgb(95,124,138);
  padding: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.DivPrompt {
   font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
   color: #4a616c;
   margin-bottom: 1px; 
}
.DivPromptInline {
   font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
   color: #4a616c;
   display: inline-block;
   margin: 0;
   margin-right: 5px;
}
a.actionLink {
  color: #3333FF!important;
  font: normal 10pt "Segoe UI", arial, helvetica, sans-serif!important;
}
a.actionLink:hover, a.actionLink:active {
  color: #FF3333!important;
}
.dropdownbutton {
  cursor: pointer;
  width: 17px;
  height: 26px;
  color: #000000;
  background-image: url("../img/downdivot.gif");
  border: 0px;
  padding: 4px;
}
.fuLabelContainer {
  padding-top: 4px;
}
.fuLabelContainer &gt; label.button {
  padding-top: 3px;
  padding-bottom: 3px;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.fuLabelContainer &gt; label.button &gt; a {
  padding: 0px;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #000000;
}
/****&lt;/Form Buttons&gt;****/

/****&lt;Big Buttons&gt;****/
.BigButton, .BigButtonHover, .BigButtonHot {
  cursor: pointer;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  border-radius: 4px;
}
.BigButton, .BigButtonHot {
  background-color: #F4F4EF;
}
.BigButton, .BigButtonHover {
  border: 2px solid #CCCCCC;
}
.BigButtonHover {
  background-color: #FBF6B0;
}
.BigButtonHot {
  border: 2px solid orange;
}
.BigButtonTitle {
  font: bold 15px "Segoe UI", Arial, Helvetica, sans-serif;
  color: #000000!important;
}
/****&lt;/Big Buttons&gt;****/

/****&lt;Icon Buttons&gt;****/
.IconButton {
  cursor: pointer;
  height: 48px;
  width: 260px;
  display: flex;
  margin-right: auto;
  border: 2px solid #00A6D3;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
}

.IconButtonImg {
  min-width: 25%;
  order: 1;
}

.IconButton{
  background-color: #00A6D3;
}

.IconButton:hover{
  background-color: white;
}

.IconButtonTitleText:hover{
  color: #00A6D3; 
  width: 90%;
}

.IconButtonTitleText{
  color: white;
  width: 90%;
}

.IconButtonTitle {
  height: 100%;
  text-align: center;
  margin-top: 2px;
  margin-bottom: 2px;
}

.IconButton:hover .IconButtonTitle {
  color: #00A6D3; 
}

.IconButtonTitleContainer {
  order: 2;
  flex-grow: 1;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
/****&lt;/Icon Buttons&gt;****/

/****&lt;Accordion&gt;****/
.AccordionMainContainer {
}
.AccordionHeaderContainer, .AccordionHeaderContainerTop {
  padding-left: 5px;
  padding-right: 5px;
}
.AccordionHeaderContainerTop {
  padding-top: 5px;
}
.AccordionHeader {
  padding: 2px;
  border: 0px 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  background-color: rgba(0,166,211, .2);
  -moz-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
}
.AccordionHeaderText {
}
.AccordionHeaderHover {
  background-color: rgba(0,166,211, .4);
}
.AccordionSection .noScroll, .AccordionSection .textpre,
.AccordionBetweenSections .plain, .AccordionSection .plain,
.AccordionSectionLast .textpre, .AccordionSectionLast .noScroll,
.AccordionBetweenSections, .AccordionSection, .AccordionSectionLast {
}
.AccordionSection, .AccordionBetweenSections {
}
.AccordionBetweenSections, .AccordionSection, .AccordionSectionLast {
  padding: 0px;
  margin-left: 15px;
  margin-right: 15px;
  border-left: 1px solid #7B97B2;
  border-right: 1px solid #7B97B2;
  background-color: white;
}
.AccordionSectionLast {
  border-bottom: 1px solid #7B97B2;
}
.AccordionMainContainer .tabs {
  background: none;
}
.AccordionSection .tabSpreadFrame {
  border-left: 1px solid #888888;
  border-right: 1px solid #888888;
  border-color: #888;
  border-color: rgba(0,0,0,0.25);
}
.AccordionSection iframe {
  border: 1px solid #888888;
  border-color: #888;
  border-color: rgba(0,0,0,0.25);
  border-top: none;
}
/****&lt;/Accordion&gt;****/

/****&lt;Wizard&gt;****/
.StepDone, .StepActive, .StepInActive {
  color: #000000;
  font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
}
.StepActive {
  font-weight: bold;
}
.StepInActive {
  color: #808080;
}
.BarDone, .BarCurrent, .BarFuture {
  font-size: 9px;
}
.BarDone {
  background-color: #0277bd;
}
.BarCurrent {
  background-color: #0277bd;
}
.BarFuture {
  background-color: #e0fcfb;
}
.BeforeBar, .AfterBar {
  font-size: 9px;
}
.wizard a {
  padding: 5px 12px 5px;
  margin-right: 5px;
  background: #efefef;
  position: relative;
  display: inline-block;
  color: #00A6D3;
  font: bold 15px "Segoe UI", Arial, Helvetica, sans-serif;
}
.wizard a:hover:not(disabled) {
  border-radius: 0px;
}
.wizard a.visited {
  background: #E0FCFB;
}  
.wizard a:before {
  width: 0;
  height: 0;
  border-top: 15px inset transparent;
  border-bottom: 15px inset transparent;
  border-left: 15px solid #fff;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.wizard a:after {
  width: 0;
  height: 0;
  border-top: 15px inset transparent;
  border-bottom: 15px inset transparent;
  border-left: 15px solid #efefef;
  position: absolute;
  content: "";
  top: 0;
  right: -15px;
  z-index: 2;
}
.wizard a:first-child:before { 
  border: none
}
.wizard .badge {
  margin: 0 5px 0 18px;
  position: relative;
  top: -1px;
}
.wizard a:first-child .badge {
  margin-left: 0;
}
.wizard .current {
  background: #00A6D3;
  color: #fff;
  font: bold 15px "Segoe UI", Arial, Helvetica, sans-serif;
}
.wizard .current:after {
  border-left-color: #00A6D3;
}
.wizard .visited:after {
  border-left-color: #E0FCFB;
}
/****&lt;/Wizard&gt;****/

/****&lt;Checkbox Group&gt;****/
.chkGroupContainer {
  border: 1px solid #CED7DB;
  background-color: white;
  background-color: #EBEEF0;
  margin-bottom: 5px;
}
.chkGroupHeader {
  background-color: #CED7DB;
  cursor: pointer;
}
.chkGroupHeader * img {
  margin-left: 3px;
}
.chkGroupHeader * a {
  text-decoration: none;
  color: black;
}
.chkGroupCheckbox {
  width: 200px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 3px;
  float: left;
}
.CheckBoxListDefault{
  overflow-y: hidden;
  width:230px;
}
.CheckBoxListSelectAll{
  padding-bottom: 2%;
  padding-left: 2%;
  padding-right: 5%;
  float: left;
  font-size: 95%;
  white-space: normal;
}
.CheckBoxListSelectAll:focus{
  outline: none;
}
/****&lt;/Checkbox Group&gt;****/

/****&lt;Dx Association Page&gt;****/
.DxTopLeftCell {
  background-color: #E0E0E0;
  z-index: 100;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}
.DxColHeaderCell {
  border-bottom: 1px solid #808080;
  background-color: #E0E0E0;
  cursor: pointer;
}
.DxColHeaderSubCell {
  font-size: 12px;
  font-family: Arial;
}
.DxOrdCell {
  font-size: 12px;
  font-family: Arial;
  border-right: 1px solid #808080;
  cursor: pointer;
}
.DxTable {
  border: 1px solid #808080;
  margin: 20px;
}
/****&lt;/Dx Association Page&gt;****/

/****&lt;Association Grid&gt;****/
.AssocTopLeftCell {
  background-color: #E0E0E0;
  z-index: 100;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}
.AssocColHeaderCell {
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  background-color: #E0E0E0;
  cursor: pointer;
}
.AssocColHeaderSubCell {
  font-size: 12px;
  font-family: Arial;
  white-space: nowrap;
}
.AssocRowHeaderCell {
  font-size: 12px;
  font-family: Arial;
  border-right: 1px solid #808080;
  white-space: nowrap;
  cursor: pointer;
}
.AssocChkCell {
  border-right: 1px solid #808080;
}
.AssocTable {
  border-bottom: 1px solid #808080;
  border-left: 1px solid #808080;
  border-top: 1px solid #808080;
}
/****&lt;/Association Grid&gt;****/

/****&lt;Referral Report&gt;****/

.RflExistApptTooltip {
  width: 4000px;
  max-height: 230px;
  overflow-y: auto;
}

.ShowVerticalScrollBar {
  -ms-overflow-style: scrollbar;
  overflow-x: hidden;
  -ms-scroll-limit-x-max:0px;
}

.RflUpdSchedStatusHeaders {
  color: #00838F;
  font-size: 18px;
  font-weight: bold;
  padding-bottom: 15px;
}

.RflExistApptsHeader {
  color: #00838F;
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  padding-left: 5px;
  padding-top: 4px;
}

.RflUpdSchedStatusHr {
  opacity: .4;
}

.RflUpdSchedStatusReasonTextBox {
  width: 497px;
}

#DivFortxtExtApptComments {
  width: 100%;
}

.RflUpdSchedStatusLookupField {
  max-width: 437px;
}

.RflUpdSchedStatusInnerLayout1 {
  width: 525px;
  margin-left: 47px;
}

.RflUpdSchedStatusInnerLayout2 {
  margin-left: 28px;
  max-width: 500px;
  margin-bottom: 40px;
  display: none;
}

.RflUpdSchedStatusHr {
  margin-left:89px;
  width:480px;
}

.RflTextAreaCommentsSmart {
  width: 500px;
}

#ReferralExtSchedulingInfoBody .WTableHeader, #ReferralExtSchedulingInfoBody .instantHead1 {
  background-color: transparent;
}

#OuterLayout {
  overflow: hidden;
}

@-moz-document url-prefix() {
  #OuterLayout {
    overflow: hidden;
    position: relative;
  }
}
#PromptForExtApptReason.InnerLayout2FlexPrompt {
  width: 500px;
}

#DivForExtApptDate.InnerLayout2FlexCol1  {
  width: 146px;
  margin-right: 200px;
}

#DivForExtApptProv.InnerLayout2FlexCol1  {
  margin-right: 200px;
}

#DivForExtApptTime.InnerLayout2FlexCol2 {
  width: 146px;
  margin-right: -4px;
}

/****&lt;/Referral Report&gt;****/

/****&lt;Smart Selection&gt;****/
.selectionDiv, .selectionDivHot {
  cursor: pointer;
  white-space: nowrap;
  width: 100%;
  font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
  padding-left: 1px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.selectionDiv {
  color: #000000;
}
.selectionDivHot {
  color: #FFFFFF;
  background-color: #316AC5;
}
.groupDiv {
  display: none;
  position: absolute;
  overflow: scroll;
  height: 100px;
  width: 198px;
  background-color: #FFFFFF;
  border: 1px solid #7F9DB9;
  z-index: 30;
}
/****&lt;/Smart Selection&gt;****/

/****&lt;Encounter Bar&gt;****/
.encbarHead {
  color: #FFFFFF;
  background-color: #333366;
  font: bold 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.subButton {
  color: #333366;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #FFCC66;
  border-bottom: 1px solid #CC9933;
  border-right: 1px solid #CC9933;
}
/****&lt;/Encounter Bar&gt;****/

/****&lt;Help &amp; Hints&gt;****/
.clsHelp {
  width: 100%;
  color: #000000;
  font: normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #C7E4EF;
  border: 1px solid #333366;
  border-bottom: 1px solid #999999;
  border-right: 1px solid #999999;
  padding: 1px;
}
.listScroll {
  width: 100%;
  font: normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 4px;
  max-height: 200px; 
  overflow-y: auto;  
  box-sizing: border-box;  
}
.listScroll div {
  padding-bottom: 5px;
  padding-left: 22px;
}
.listScroll div input {
  margin-left: -17px;
  vertical-align: text-top;
}
.tooltip {
  display: none;
  position: absolute;
  font: normal 10px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #FFFFCC;
  border: 1px solid #CCCC99;
  padding: 2px;
}
div.hint {
  visibility: hidden;
  position: absolute;
  font: normal 70% tahoma;
  background-color: #FFFFE1;
  border: 1px solid #000000;
  padding: 1px 1px 1px 3px;
}
.hintHead {
  width: 100%;
  color: #FFFFFF;
  font-size: 150%;
  text-align: center;
  background-color: #990000;
}
.hintData {
  font: normal 80% "Segoe UI", Arial, Helvetica, sans-serif;
}
.SearchInfo {
  color: #333333;
  font: bold 13px "Segoe UI", Arial, Helvetica, sans-serif;
  padding: 2px 5px 2px 5px;
}
.SearchInfoSec {
  background-color: #DDEAF4;
  border: 1px solid #AEB4BD;
  border-bottom: 0px;
}
/****&lt;/Help &amp; Hints&gt;****/

/****&lt;Old Tabs&gt;****/
.navTab, .selectedNavTab {
  cursor: pointer;
  height: 1.3em;
  color: #000000;
  vertical-align: bottom;
  padding: 2px 4px 2px 4px;
}
.navTab {
  background-color: #CECEC6;
  border: 1px solid #888888;
  border-bottom: 0px;
}
.selectedNavTab {
  background-color: #ECECE2;
  border: 1px solid #000000!important;
  border-bottom: 0px!important;
}
.tabbody {
}
/****&lt;/Old Tabs&gt;****/

/****&lt;Trees&gt;****/
.treeElement, .treeElementHover, .treeElementSelected {
  cursor: pointer!important;
  color: #000000;
  font: normal 10pt "Segoe UI", Arial, Helvetica, sans-serif;
  white-space: nowrap;
}
.treeElementHover {
  text-decoration: underline;
}
.treeElementSelected {
  background-color: #CCCCCC;
}
/****&lt;/Trees&gt;****/

/****&lt;Smart Tools&gt;****/
.selBox {
  display: none;
  position: absolute;
  width: 300px;
  border: 1px solid #000000;
  background-color: #FFFFFF;
  z-index: 1000;
  text-align: left;
}
.optBox {
  height: 126px;
  overflow-y: scroll;
}
.stbHeader {
  cursor: default;
  width: 100%;
  color: #13364B;
  font: bold 13px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #DBDBCE;
  border-bottom: 1px solid #666666;
  padding: 0 0 1px 1px;
}
.stbOption, .stbOptionHighlight {
  cursor: pointer;
  width: 100%;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  padding: 1px 2px 1px 2px;
}
.stbOption {
  color: #000033;
  background-color: #FFFFFF;
}
.stbOptionHighlight {
  color: #FFFFFF;
  background-color: #3399FF;
}
.SmartHelp {
  visibility: hidden;
  display: none;
  position: absolute;
  top: 50px;
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #FFFFFF;
  border: 1px solid  #000000;
  padding: 2px;
  z-index: 1001;
  max-width: 530px;
  white-space: normal;
}
.SmartList {
  visibility: hidden;
  cursor: default;
  position: absolute;
  top: 50px;
  min-width: 200px;
  max-width: 600px;
  border: 1px solid #000000;
  z-index: 1000;
}
.SmartListOptions {
  overflow: auto;
  max-height: 150px;
}
.SmartListHeader {
  position: relative;
  width: 100%;
  height: 20px;
  color: #13364B;
  font: bold 13px "Segoe UI", Arial, Helvetica, sans-serif;
  background-color: #DBDBCE;
  border-bottom: 1px solid #666666;
  padding: 1px 0px 1px 2px;
}
#SmartListTitle {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#SmartListFooter {
  box-sizing: border-box;
  border: none;
  text-align: center;
  cursor: pointer;
}
.SmartListHelpIcon {
  height: 100%;
  cursor: pointer;
  position: absolute;
  top: 1px;
  right: 1px;
  border: 0px;
}
.SmartListAcceptIcon,.SmartListFooterText {
  vertical-align: middle;
}
.SmartList td {
  font: normal 13px "Segoe UI", Arial, Helvetica, sans-serif;
}
.selectedSmartList,.selectedSmartListFocus {
  color: #FFFFFF;
  background-color: #3399FF;
  padding: 1px 2px 2px 2px;
}
.selectedSmartListFocus {
  border: 1px dashed #FFFFFF;
  padding: 0px 1px 1px 1px;
  outline: none;
}
.multiSmartList, .multiSmartListFocus, .singleSmartList, .singleSmartListFocus, .selectedSmartList, .selectedSmartListFocus
{
  cursor: pointer;
}
.multiSmartList,.multiSmartListFocus {
  color: #000000;
  background-color: #A7EEFF;
  padding: 1px 2px 2px 2px;
}
.multiSmartListFocus:focus {
  padding: 0px 1px 1px 1px;
  border: 1px dashed #000000;
  outline: none;
}
.singleSmartList,.singleSmartListFocus {
  color: #000000;
  background-color: #FFFF86;
  padding: 1px 2px 2px 2px;
}
.singleSmartListFocus:focus {
  padding: 0px 1px 1px 1px;
  border: 1px dashed black;
  outline: none;
}
.LinkPhraseRow {
  padding: 0 0 4px 4px;
}
.UnfilledMsgContainer {
  width: 100%;
  font: normal 12px "Segoe UI", Arial, Helvetica, sans-serif;
  background: #F0F7FD;
  border: 1px solid #C0C0C0;
  padding: 2px;
  text-align:left;
}
.DisabledTextAreaSmart {
  width: 700px; 
  height: 160px; 
  overflow: auto; 
  background-color: rgb(213,213,213); 
  border: 1px solid #a0a0a0; 
  border-radius: 2px;  
  white-space: normal; 
}
.editorDialogContainer {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}
/****&lt;/Smart Tools&gt;****/

/****&lt;Accordion Reports&gt;****/
#IP_ICU_MAIN td{
  padding: 0;
}
table.clsContainer {
  .table-layout:fixed;
  font-family:arial;
  font-size:8pt;
  vertical-align:top;
  border-collapse:collapse;
  border-width:0;
  border:0;
  padding:0;
  cell-spacing:none;
  cell-padding:none;
}
table.clsData {
  .table-layout:fixed;
  font-family:arial;
  font-size:8pt;
  vertical-align:top;
  border-collapse:collapse;
  border-width:1px;
  border-color:#191970;
  cell-spacing:none;
  cell-padding:none;
}
td.clsData {
  vertical-align:top;
  border-collapse:collapse;
  border-left: solid #E0E0E0 1px;
  background-color:#FFFFFF;
}
td.clsData1 {
  vertical-align:top;
  border-collapse:collapse;
  border-left: solid #E0E0E0 1px;
  background-color:#F0F0F0;
}
td.clsTLbl {
  vertical-align:top;
  align:center;
  border-collapse:collapse;
  border-left: solid #E0E0E0 1px;
}
td.clsSig {
  vertical-align:top;
  border-collapse:collapse;
  border-left: solid #E0E0E0 1px;
  background-color:#FFFF00;
}
div.clsContainer {
  overflow:hidden;
  border:none;
  border-width:0;
  padding:0;
  scrollbar-base-color:#D0D0D0;
}
td.clsRow div, td.clsHead span, td.clsData span, td.clsData1 span, td.clsSig span, td.clsData div, td.clsData1 div, td.clsSig div{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
span.QLnk {
  padding-left:4px;
  padding-right:4px;
}
span.CurInc {
  background-color:blue;
  color:white;
}
/****&lt;/Accordion Reports&gt;****/

/****&lt;Video Visits&gt;****/
object#WPFlashTelemedicine {width:100%;height:100%;position:absolute;top:0px;left:0px;}
.imgVVConnected {
  margin-top: 2px;
}
.VVProvList {
  width: 200px;
  margin-right: 8px;
  margin-left: 2px;
}
.lbVV {
  padding: 25px;
}
.activeVVText {
  border-top: 1px solid #d3d3d3;
  margin: 0px;
  padding: 15px;
}
/****&lt;/Video Visits&gt;****/

/****&lt;Copyrights &amp; Patents&gt;****/
.copyright {
  color: #000000;
  font: normal 9px "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0px;
}
body.copyright {
  padding: 0px 8px;
  margin: 0 auto 0 auto;
  background-color: #E0FCFB;
}
.copyrightLogin {
  color: #666699;
  font: normal 9px "Segoe UI", Arial, Helvetica, sans-serif;
}
.patent {
  color: #666666;
  font: normal 9px "Segoe UI", Arial, Helvetica, sans-serif;
}
.environmentIndicator {
  height: 20px;
  line-height: 20px;
  vertical-align: middle;
  margin-left: 10px;
  padding: 0 5px 0 5px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}
/****&lt;/Copyrights &amp; Patents&gt;****/

/****&lt;Welcome&gt;****/
.bodyHead {
  color: #000033;
  font: bold 17px "Segoe UI", Arial, Helvetica, sans-serif;
}
.bodyText {
  color: #333366;
  font: normal 16px "Segoe UI", Arial, Helvetica, sans-serif;
}
.bodyEmph {
  color: #CC0000;
  font: normal 16px "Segoe UI", Arial, Helvetica, sans-serif;
}
/****&lt;/Welcome&gt;****/

/****&lt;Frame Borders&gt;****/
.frameBorder3dTop {
  border-top: 2px solid #333366;
}
.frameBorder3dBottom {
  border-bottom: 3px solid #9999CC;
}
/****&lt;/Frame Borders&gt;****/

/****&lt;Fieldsets&gt;****/
.fieldset {
  border: 1px solid #666666;
}
.fieldsetCondensed{
  border: 0;
  padding: 0;
}
.fieldsetCondensed input:first-child {
  padding-left: 0;
}
.fieldsetLight {
  border: 1px solid #A0A0A0;
}
.fieldsetLegend {
  color: #375971;
  font-size: 95%;
  font-weight: bold;
}
/****&lt;/Fieldsets&gt;****/

/****&lt;Utilities Page&gt;****/
a.UtilityOption:link, a.UtilityOption:visited, a.UtilityOption:active {
  font: bold 14px "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: none;
}
/****&lt;/Utilities Page&gt;****/

/****&lt;Section Backgrounds&gt;****/
.ibmsgscroll {
}
.ScrollBlue {
}
.noScrollNormal {
}
.ScrollDelineatedRight, .noScrollDelineatedRight {
  border-right: 1px solid #3063B0;
  background-color: #DDEAF4;
}
.noScrollDelineatedRight {
  border-bottom: 1px solid #3063B0;
  overflow: auto;
  position: relative;
}
.noScrollBlank {
  background-color: #FFFFFF;
}
/****&lt;/Section Backgrounds&gt;****/

/****&lt;Table Headers &amp; Data&gt;****/
.tddata {
  font: normal 80% "Segoe UI", Arial, Helvetica, sans-serif;
  padding: 2px 25px 10px 25px;
}
.chead {
  font: bold 80% "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: underline;
  vertical-align: top;
  padding: 0 0 0 10px;
}
.cdata {
  font: normal 80% "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
  padding: 0 0 0 10px;
}
.lhead {
  font: bold 95% "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: right;
  vertical-align: top;
  padding: 2px 0 0 6px;
}
.shead {
  font: bold 95% "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: center;
  background-color: #D7D7D7;
}
.subhead {
  font: bold 80% "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
  padding: 0 0 0 6px;
}
.subcell {
  font: normal 80% "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
  padding: 3px 0 0 6px;
}
.cidata {
  font: normal 80% "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
  padding: 0 25px 0 10px;
}
.bhead {
  font: bold 20px "Segoe UI", Arial, Helvetica, sans-serif;
}
.lowhead {
  font: bold 100% "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: right;
  vertical-align: bottom;
  padding: 0 0 0 6px;
}
A.ctxtLnk {
  text-decoration: none!important;
}
A.ctxtLnk:hover, A.ctxtLnk:active {
  text-decoration: underline!important;
}
.darkBack A {
  color: #FFC!important;
}
.darkBack A:hover, .darkBack A:active {
  color: #FF6!important;
}
/****&lt;/Table Headers &amp; Data&gt;****/

/****&lt;Rules&gt;****/
.headrule {
  height: 5px;
}
.bigrule {
  height: 5px;
}
.medrule {;}

.thinrule {
  height: 1px;
  color: #B1BCBB;
}
.subrule {
  height: 1px;
  color: #B1BCBB;
}
/****&lt;/Rules&gt;****/

/****&lt;Fonts&gt;****/
.font3, .font9, .font14, .font19, .font20 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
.font2 {
  font-family: Tahoma, "Segoe UI", Arial, Helvetica, sans-serif;
}
.font7 {
  font-family: Times, "Segoe UI", Arial, Helvetica, sans-serif;
}
.font8 {
  font-family: courier new, courier, monospace;
}
/****&lt;/Fonts&gt;****/

/****&lt;Report Styles&gt;****/
.top .betweenReports {
  page-break-after: always;
}
.bottom .betweenReports {
  page-break-after: auto;
}
.pagebreak {
  page-break-after: always;
}
.protectedlink, .protectedlist, .protectedblock, .protectedgrammar {
  padding: 0px;
}
.BrStyle {
  font: normal 4pt "Segoe UI", Arial, Helvetica, sans-serif;
}
.CmtStyle {
  font: normal 8pt "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
}
.TblStyle, .tblStyle {
  border-collapse:collapse;
  font: normal 8pt "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
  border-width: 1px;
}
.ThdStyle {
  font: normal 8pt "Segoe UI", Arial, Helvetica, sans-serif;
  text-decoration: underline;
}
.CellStyle {
  font: normal 8pt "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
}
.ButStyle {
  font: normal 8pt "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: middle;
}
.TitleStyle {
  font: bold 9pt "Segoe UI", Arial, Helvetica, sans-serif;
  text-align: left;
  vertical-align: middle;
}
.WndStyle {
  border-collapse: collapse;
  font: normal 8pt "Segoe UI", Arial, Helvetica, sans-serif;
  vertical-align: top;
  border-width: 1px;
}
.ReportSectionHeader {
  font: 17px "Segoe UI", Arial, Helvetica, sans-serif;
  color: #00A6D3;
  padding:0;
  padding-bottom:4px;
  border-bottom:1pt solid rgba(0,0,0,0.2);
}
.ReportRowHeader {
  color: rgba(0,0,0,0.6);
  font: normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
  padding:2px;
}
.ReportCell {
  font: normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
  color:#000000;
  padding:2px;
}
.report-background-color, body.ReportIFrame {
  background-color: #FFFFFF;
}
.ActivityLaunchLink {
  text-decoration: none;
}
.ActivityLaunchLink:hover {
  text-decoration: underline;
}
.report-message {
  text-align: center;
}
.report-message-top {
  margin-top: 30px;
}
.EndOfReportHR {
  color: #000000;
  background-color: #000000;
  border: none;
  height: 1px;
  margin: 5px;
}
svg.rpt-ActivityLinkIcon {
  display: none;
}
a svg.rpt-ActivityLinkIcon {
  display: inline;
} 
/****&lt;/Report Styles&gt;****/

/****&lt;Message Page Styles&gt;****/
#MsgPageBody .pageDIV {
  background-image: url("../img/Placeholder-Generic.png");  
  background-repeat: no-repeat;
  background-position: center center;  
  background-size: cover;
} 

#OutsideMessage .pageDIV {
}

#MsgPageBody .FrameHeaderDiv {
}

#MsgPageBody .FrameHeaderDiv .FrameHeaderText {
}

.msgPage {
  border-radius: 2px; 
  background-color: white; 
  box-shadow: 0 1px 5px rgba(0,0,0,0.2);   
}

.msgPage .button {
  padding: 10px;
}
/****&lt;/Message Page Styles&gt;****/

/****&lt;Various&gt;****/
.page {
  color: #333366;
  font: normal 16px "Segoe UI", Arial, Helvetica, sans-serif;
}
.msgPage {;}
.BorderBox {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.readOnlyInstructions {
  height:200px;
  overflow:auto;
  padding-left:5px;
  background-color:#EFEFEF;
  border:1px solid #999999;
}
.padded{
  padding: 8px;
}
.NoMargin {
  margin: 0px;
}
#IBHiddenText {
  color: transparent;
}
.clickable {
  cursor: pointer;
}
/****&lt;/Various&gt;****/

/****&lt;Various Unused&gt;****/
.clickLabel {
  cursor: default;
}
/****&lt;/Various Unused&gt;****/

/****&lt;Display Classes&gt;****/
.printonly {
  display: none;
}
.displayonly {
}
.hdnElm {
  display: none;
}
.backgroundElm { 
  position: absolute; 
  z-index: -100;
  height: 0.1px;
  width: 0.1px;
  color: rgb(235,238,240);
  background-color: rgb(235,238,240);
  border: 1px solid transparent !important;
}  
.visElm {
}
.disabled {
  opacity: 0.3;
}
/****&lt;/Display Classes&gt;****/

#SmartBoxToolbar .toolbarButtonBar
{
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  border-radius: 0px;
}

#selreactions option{
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/****&lt;MultiFileControl&gt;****/
#fileCtl_zone *{
  box-sizing: border-box;
}
#fileCtl_zone{
  position: relative;
  border: 1px solid rgb(160,160,160);
  border-radius: 2px;
  background: white;  /*cover watermark*/
}
#fileCtl_divOne{
  padding: 10px;
}
#fileCtl_topBand{
  width: 100%;
  padding: 10px;
}
#fileCtl_required2{
  width: 20px;
  height: 35px;
  float: left;
  position: relative;
}
#fileCtl_imgRequired2{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#fileCtl_addButton{
  text-align: center;
  padding: 7px 20px 0;
  background: #00A6D3;
  border-radius: 3px;
  font-size: 15px;
  color: white;
  cursor: pointer;
  max-width: 95%;
  height: 35px;
  white-space: nowrap;
  overflow-x: hidden;
  float: left;
}
.fileCtl_clearfix{
  clear: both;
}
#fileCtl_fileInputHolder{
  display: none; 
}
#fileCtl_bottomBand{
  width: 100%;
  padding: 10px;
  white-space: normal; /* For Firefox */
}

#fileCtl_cards_scroll{
  max-height: 280px;
  overflow-y: auto;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}
#fileCtl_cards{

}
#fileCtl_aCard *{
  box-sizing: border-box;
}
#fileCtl_aCard{
  width: 300px;
}
#fileCtl_cardzero,#fileCtl_cdacardzero{
  display: none;
}
.fileCtl_cardSpace{
  width: 100%;
  padding: 10px;
  float: left;
}
.fileCtl_card{
  border-radius: 5px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(200,200,200,0.4);
}
.fileCtl_cdacard{
  border-radius: 5px;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(200,200,200,0.4);
  position: relative;
}
.fileCtl_cardUpperHalf{
  padding: 5px;
  border-radius: 5px 5px 0 0;
}
.fileCtl_cardUpperLeft{
  width: 74px;
  height: 74px;
  overflow: hidden;
  position: relative;
  float: left;
  background: #f1f1f1;
  padding: 5px;
  border-radius: 5px;
}
.fileCtl_img{
  display:block;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.fileCtl_cardUpperRight{
  height: 74px;
  margin-left:74px;
  position: relative;
}

.fileCtl_cdaCardUpperLeft{
  width: 74px;
  height: 74px;
  overflow: hidden;
  position: relative;
  float: left;
  background: #f1f1f1;
  padding: 5px;
  border-radius: 5px;
}
.fileCtl_cdaCardUpperMiddle{
  height: 74px; 
  float: left;
  padding: 5px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
}
.fileCtl_cdaCardUpperMiddleFileName{
  font-size: 12px;
  font-weight: normal;
  color: gray;
  margin-left: 7px;
  margin-top: 3px;
  display: inherit;
  position: absolute;
  width: calc(100% - 35%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fileCtl_cdaCardUpperRight{
  height: 74px;
  position: relative;
  float: right;
}
.fileCtl_cdaCardHelpIcon{
  
}
.fileCtl_caption{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: bold;
  width: 100%;
  margin-bottom: 10px;
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  text-align: center;
  padding: 0 5px;
}
.fileCtl_removeImg{
  float: right;
  border-style: none;
  cursor: pointer;
}
.fileCtl_cardLowerHalf{
  clear: both;
  padding: 10px;
  padding-top: 5px;
}
.fileCtl_cdaCardLowerHalf{
  clear: both;
  padding: 10px;
  padding-top: 5px;
}

.fileCtl_cdaCardLowerHalf img{
  float: left;
  margin-right: 7px;
  margin-left: 5px;
  margin-top: 10px;
  height: 20px;
  width: 20px;
}

.fileCtl_descriptionPrompt, .fileCtl_typePrompt{
  font-size: 10pt;
  margin-bottom: 2px;
}
.req_fileCtl_types, .req_fileCtl_description{
  vertical-align: text-bottom;
  margin-right: 4px; 
  border-style: none;
}
.fileCtl_types_class{
  width: 100%;
  display: block;
  margin-bottom: 10px;
  padding-left: 2px;
}
.fileCtl_description_class{
  width: 100%;
  display: block;
}

.fileCtl_reqDocType, .fileCtl_reqDocTypes{
  padding-bottom: 5px;
  padding-right: 5px;
}

#fileCtl_uploadAmtCanvas{
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  top: -3px;
}
#fileCtl_uploadAmtPaletteNormal{
  display: none;
  color: lightblue;
  background-color: steelblue;
}
#fileCtl_uploadAmtPaletteWarning{
  display: none;
  color: wheat;
  background-color: orangered;
}
#custom_fileCtl_uploadedAmt{
  font-size: 11pt;
  color: black;
}
#custom_fileCtl_maxUploadAmt{
  font-size: 10pt;
  color: gray;
  margin-left: 5px;
}
#fileCtl_infoIcon{
  float: right;
}
.fileCtl_infoIconTooltip{
  font-size: 13px !important;
  max-width: 400px !important;
}

#fileCtl_transparent{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display:none;
  z-index: 3;
}
#fileCtl_semiTransparentDrag,#fileCtl_semiTransparentDrop{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.93);
  display:none;
  border-radius: 2px;  
}
#fileCtl_semiTransparentDrag{
  border: 2px dashed #00A6D3; 
  color: #00A6D3;
  z-index: 1; 
}
#fileCtl_semiTransparentDrop{
  border: 2px dashed rgb(59, 89, 152); 
  color: rgb(59, 89, 152);  
  z-index: 2; 
}
#fileCtl_tipDrag,#fileCtl_tipDrop{
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#fileCtl_count{
  float: right;
  background: #bbb;
  color: white;
  font-size: 12px;
  line-height: 12px;
  margin-right: 10px;
  margin-top: 0.5px;
  padding: 1px 4px 2px 4px;
  border-radius: 2px;
}
#fileCtl_uploadFrame{
  width: 600px !important;
  height: 80px !important;
  margin-bottom: 10px;
}
#fileCtl_addFileDiv{
  position:absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  border: 2px dashed #aaa;
  border-radius: 5px;
  text-align:center;
}
#fileCtl_backgroundDiv{
  position:absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(78,223,232,0.1);
  display:none;
  z-index:1;
}
#fileCtl_addFileLink{
  position:relative;
  top: 22px;
  color:#00A6D3;
  font-weight:bold;
  font-size:16px;
  padding:0;
  margin:0;
  z-index:2;
}
#fileCtl_placeHolderDiv{
  display:none;
}
/****&lt;/MultiFileControl&gt;****/


/****&lt;PatPhotoControl&gt;****/
#PatPhoto_divZero *{
  box-sizing: border-box;
}
#PatPhoto_divZero{
  display: inline-block;
}
#PatPhoto_photo{
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  position: relative;
}
#PatPhoto_imgPhoto{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
#PatPhoto_info{
  display: inline;
  padding: 15px 0 0 10px;
  float: left;
}
#PatPhoto_name{
  font-size: 24px;
}
#PatPhoto_ageSex{
  font-size: 13px;
}
#PatPhoto_clearfix{
  clear: both;
}
/****&lt;/PatPhotoControl&gt;****/


/****&lt;Document Upload&gt;****/
#uploadDoc_divZero *{
  box-sizing: border-box;
}
#uploadDoc_divZero{
  padding: 15px 50px 0;
}
#uploadDoc_chgPatientWrap{
  padding: 22px 0 0 10px;
  float: left;
}
#uploadDoc_messageSection{
  margin: 20px 0;
}
#uploadDoc_msgFieldPrompt{
  padding-bottom: 6px;
}
#uploadDoc_msgRequiredIcon{
  float: left;
  margin-right: 4px;
}
#uploadDoc_msgFieldPromptTextWrap{
  line-height: 15px;
  float: left;
  font-size: 10pt;
}
#uploadDoc_fileSection{
  margin: 20px 0;
}
#uploadDoc_message{
  width: 100%;
  height: 85px;
}
.uploadDoc_clearfix{
  clear: both;
}
#uploadDoc_confirmationWrapErrTables{
    margin: 0 auto;
    width: 98%;
}
#uploadDoc_confirmationWrap{
  position:relative; 
  top:40%; 
  transform: translateY(-50%);
  margin: 0 auto;
  text-align:center; 
  font-size:20px;
  width:60%;
  border-radius: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #CCFFCC;
}
.uploadDoc_tableHeader{
  font-weight: bold;
  font-size: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.uploadDoc_ShowHideImg{
  padding-left: 5px;
  vertical-align: bottom;
  height: 20px;
  width: 20px;
  cursor: pointer;
}

#uploadDoc_instruction tr{
  padding: 0 0 15px 52px;
}

#successTable tr,table#successTable tr:hover td{
  background-color: #CCFFCC;
}
#errTable tr,table#errTable tr:hover td{ 
  background-color: #FFC800;
}
#successTable td,#errTable td{
  border-top: 1px solid white;
}

.resultsTableImg{
  vertical-align: sub;
  height: 20px;
  width: 20px;
}

/****&lt;/Document Upload&gt;****/

/****&lt;In Basket&gt;****/
.ibBatonIcon {
  border: 1px solid transparent;
}
.ibBatonIcon:hover {
  border: 1px solid #00A6D3;
}
/****&lt;/In Basket&gt;****/


/****&lt;Flex layout&gt;*****/

.FlexRow {
  display: flex;
  flex-shrink: 1;
  margin-top: 10px;
  flex-grow: 1;
}

.FlexLayout3Columns &gt; * &gt; .FlexField {
  flex-basis: 30%;
}

.FlexLayout3Columns &gt; * &gt; .FlexFieldSpan3 {
  flex-basis: 97%;
}

.FlexLayout3Columns &gt; * &gt; .Gutter:first-child, .FlexLayout3Columns &gt; * &gt; .Gutter:last-child {
  flex-basis: 1.5%;
}

.FlexLayout3Columns &gt; * &gt; .Gutter {
  flex-basis: 3.5%;
}



.FlexField{flex-grow:1;}
.FlexFieldSpan2{flex-grow:4;}
.FlexFieldSpan3{flex-grow:7;}
.FlexFieldSpan4{flex-grow:10;}
.FlexFieldSpan5{flex-grow:13;}
.FlexFieldSpan6{flex-grow:16;}
.FlexFieldSpan7{flex-grow:19;}

.FlexPrompt {
  font-size: 12px;
  color: #4a616c;
  margin-bottom: 1px;
}

.FlexPrompt &gt; .form-icon {
  vertical-align: baseline;
}

.Gutter {
  flex-grow: 2;
  flex-shrink: 0;
  min-width: 3px;
  flex-basis: 3px;
}

.HiddenGutters &gt; .Gutter {
  display: none;
}

.Gutter1{order:1;}
.Gutter2{order:3;}
.Gutter3{order:5;}
.Gutter4{order:7;}
.Gutter5{order:9;}
.Gutter6{order:11;}
.Gutter7{order:13;}
.Gutter8{order:15;}
.Gutter9{order:16;}

.FlexCol1{order:2;}
.FlexCol2{order:4;}
.FlexCol3{order:6;}
.FlexCol4{order:8;}
.FlexCol5{order:10;}
.FlexCol6{order:12;}
.FlexCol7{order:14;}
.FlexCol8{order:16;}

/****&lt;/Flex layout&gt;*****/

/****&lt;Flex layout - Sizing&gt;*****/
.lookupWrapperDiv {
  display: flex;
  align-items: center;
}

.FlexField &gt; input, .FlexField &gt; textarea, .lookupWrapperDiv &gt; input:not([type=button]), .FlexField &gt; select,
.FlexField &gt; table, .FlexField &gt; table .webtrol, .FlexField &gt; table textarea {
  box-sizing: border-box;
  width: 100%;
}

.FlexField .QuickBtnField {
  width: 0px;
}

.Invisible {
  visibility: hidden;
}

.Hidden, .FlexRow.Hidden {
  display: none;
}

/****&lt;/Flex layout - Sizing&gt;*****/
/****&lt;In field Required Icons&gt;*****/
.FlexField &gt; input, .FlexField &gt; select, .FlexField .webtrol, .FlexField .webtrol, .FlexField textarea {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.FlexField.required &gt; input.empty:enabled, .FlexField.required &gt; select.empty:enabled, .FlexField.required .webtrol.empty:enabled, .FlexField.required textarea.empty:enabled {
  background-image: url("../img/required.gif");
}

.FlexField.recommended &gt; input.empty:enabled, .FlexField.recommended &gt; select.empty:enabled, .FlexField.recommended .webtrol.empty:enabled, .FlexField.recommended textarea.empty:enabled {
  background-image: url("../img/warning.gif");
}

#pageDIV .FlexField &gt; input.hasValue, #pageDIV .FlexField &gt; input.empty:focus,
#pageDIV .FlexField &gt; select.hasValue, #pageDIV .FlexField &gt; select.empty:focus,
#pageDIV .FlexField .webtrol.hasValue, #pageDIV .FlexField .webtrol.empty:focus,
#pageDIV .FlexField textarea.hasValue, #pageDIV .FlexField textarea.empty:focus{
  background-image:none;
}
/****&lt;/In field Required Icons&gt;*****/

/****&lt;Flex Header&gt;*****/
.FlexHeader {
  display: flex;
  align-items: center;
}

.FlexHeaderImage {
  margin-right: 3px;
}

.FlexHeaderText {
  font-weight: bold;
  font-size: 13pt;
  color: #234E5C;
}
/****&lt;/Flex Header&gt;*****/

/****&lt;Flex Questionnaires&gt;*****/
.QsnAddRow {
  margin-top: 2px;
  font-size: 13px;
}

.PromptLine {
  margin-top: 0px;
}

.PromptLine ~ .PromptLine {
  margin-top: 10px;
}

.PromptLine + .FlexRow {
  margin-top: 0;
}

.qsnRemoveDiv {
  max-width: 16px;
  min-width: 16px;
  flex-grow: 0;
}

.QuestionnaireLayout .Gutter {
  min-width: 8px;
  max-width: 8px;
  flex-grow: 0;
}

.questionnaireCommentField {
  display: flex;
  align-items: flex-end;
}

/****&lt;/Flex Questionnaires&gt;*****/

/****&lt;ArrowSteps&gt;****/
.ArrowStepsContainer *{
  box-sizing: border-box;
}
.ArrowStepsContainer{
    display: flex;
		position: relative; 
    height: 30px;
    width: 100%;
    background: #efefef;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.ArrowStep{
  background: #efefef;
  text-align: center;
  white-space: nowrap; 
  overflow: hidden;
  text-overflow: ellipsis;
  color: #00A6D3;
  padding-top: 3px;
}
.ArrowStep.ArrowStepCurrentStep{
  background: #00A6D3;
  color: white;
}
.ArrowStep:not(:first-child){
  border-left: 5px solid white;
}

.ArrowStepArrow::after,
.ArrowStepWhiteArrow::after{
 		content:"";		
		position:absolute;
		top: 0;
	  border-top: 15px solid transparent;
		border-bottom: 15px solid transparent; 
}

.ArrowStepArrow::after{
  z-index:1; 
  border-left: 8px solid #efefef;    
}
.ArrowStepArrow.ArrowStepCurrentStep::after{
  border-left: 8px solid #00A6D3; 
}

.ArrowStepWhiteArrow{
  position: relative;
  left: 5px;
}
.ArrowStepWhiteArrow::after{
  border-left: 8px solid white; 
}
/****&lt;/ArrowSteps&gt;****/
/****&lt;Print Classes&gt;****/
/********** SHOULD BE KEPT AT END OF FILE **********/
@media print{
  .displayonly {
    display: none !important;
  }
  .printonly {
    display: table-cell !important;
  }
  div.printonly {
    display: block !important;
  }
  .page {
    font: normal 14px "Segoe UI", Arial, Helvetica, sans-serif;
    color: #000000;
    background: #FFFFFF;
  }
  .banner {
    display: none;
  }
  a:link {
    color: #000000;
  }
  .subrule, .medrule, .headrule, .bigrule {
    color: #000000;
  }
  .toolbarButtonBar, .toolbarBottomButtonBar, .toolbarButtonBarLeft, .button, .toolbarButtonBarMultiTab{
    display: none;
  }
  .dataInactiveEven, .dataInactiveOdd, .dataInactiveEven a, .dataInactiveOdd a {
    color: #CCCCCC!important;
  }
  .TableClass thead, .ListDataTable thead{
    visibility: visible !important;
  }
  /*font size for printing reports*/
  pre {
    font-family: monospace;
    font-size: 12px;
  }
  .theader {
    font-size: 12px;
  }
  .tfooter {
    font-size: 12px;
  }
  .printHeader {
    font-size: 12px;
    color: black;
  }
  .ios-container {
    /* This class is important for printing reports from iOS. Any changes here also need to be replicated in CEPrintIOS in CareEverywhere.js*/
    position: initial !important;
    overflow: initial !important;
  }
  #VideoVisitFilter {
    display: none !important;
  }
  img.roster-chart-select-image {
    display: none !important;
  }
  .HideRadioSelection &gt; td.dataYellowOdd:first-child, .HideRadioSelection &gt; td.dataYellowEven:first-child {
    border-left-color: transparent;
  }
  .IBptHeaderMediaAll {
    display: none;
  }
  #IP_ICU_TBL-MAIN .clsVertScroll {
    overflow-y: visible;
    max-height: none !important;
  }
}
/****&lt;/Print Classes&gt;****/
</pre></body></html>