﻿/* the top menu trail */
div.trail {height:10px; margin-top:9px; margin-left:20px;}
div.trail a, div.trail span { float:left; display:block; color:#244f85; font-size:10px; } 
div.trail span.sep { width:15px; height:100%; background-image:url("../images/trail.png"); background-repeat:no-repeat; background-position:5px 3px; }
div.trail span.last {font-weight:bold; }
/* page */
div.hdocParent {margin-left:20px; margin-top:20px; }
div.hdocParent p { color:#184d8f;}
p.hdocTitle {margin-top:10px; margin-bottom:10px; font-size:22px;}
p.please { font-size:18px; margin-bottom:40px;}

div.hdocParent div.humidifiers, div.hdocParent div.heaters, div.hdocParent div.controls, div.hdocParent div.actuators, div.hdocParent div.valves {
    background-image: url("../images/documentationColors20200403.jpg");
    background-repeat: no-repeat;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-left: 55px;
    height: 20px;
}



div.humidifiers {
    background-position: 1px -69px;
}

div.heaters {
    background-position: 1px -91px;
}

div.controls {
    background-position: 1px -2px;
}

div.actuators {
    background-position: 1px -24px;
}

div.valves {
    background-position: 1px -47px;
}



div.hdocParent div a { font-size:20px; color:#0c4181;}


/* Mariya Changes Feb 17,2020 */
p.hdocTitle { font-size:25px; margin-bottom:20px;  text-transform: uppercase}
.right-side {position: relative;right: 0;top: -10px; float:right}
.right-side p.hdocTitle { margin-left: 100px}


.humidifiers img.map-humidifiers {display: none}
.heaters img.map-heaters { float: right; display: none}
.controls img.map-controls { float: right; display: none}
.actuators img.map-actuators { float: right; display: none}
.valves img.map-valves { float: right; display: none}

.humidifiers a:hover + img.map-humidifiers {display: block;position: relative;right: 0;top:-238px; float:right}
.heaters a:hover + img.map-heaters {display: block;position: relative;right: 0;top:-238px; float:right}
.controls a:hover + img.map-controls {display: block;position: relative;right: 0;top:-238px; float:right}
.actuators a:hover + img.map-actuators {display: block;position: relative;right: 0;top:-238px; float:right}
.valves a:hover + img.map-valves {display: block;position: relative;right: 0;top:-238px; float:right}


/* Drop down menu styles*/
.custom-select {
  position: relative;
  width:260px;
  
  
}

.custom-select select {
  display: none; /*hide original SELECT element:*/
}

.select-selected {
  background-color: #ebebeb;
}

/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #6d6e76 transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #6d6e76;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  text-transform: uppercase;
}

/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #ffffff;
  border: 2px solid #ebebeb;
  border-color: #ebebeb;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}