/* app css stylesheet */
/* header */

.dropdown {
  background-color: rgb(255,255,255);
  border-bottom-color: rgb(0,111,220);
  border-left-color:   rgb(0,111,220);
  border-top-color:    rgb(0,111,220);
  border-right-color:  rgb(0,111,220);
  color:               rgb(0,111,220);
  border-bottom-left-radius:  3px;
  border-bottom-right-radius: 3px;
  border-top-left-radius:     3px;
  border-top-right-radius:    3px;
  cursor: pointer;
  height: 43px;
  padding-bottom: 8px;
  padding-top: 8px;
  padding-left: 10px;
  padding-right: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../data/downarrow.png) no-repeat right;
}
select::-ms-expand {
  display:none;
}

.dropdown:hover {
  background: url(../data/downarrowhover.png) no-repeat right;
  background-color: rgb(224,233,244);
}
