header {
  position: relative;
}
.cms-container {
  position: relative;
  min-height: 35px;
  border: 1px solid transparent;
  width: 100%;
}
.cms-container-loggedin {
  border: 1px dashed #bbbbbb;
}
.cms-container-loggedin:hover {
  border-color: goldenrod;
}
.cms-container .cms-container-controls {
  position: absolute;
  z-index: 999;
  right: 0;
  background-color: goldenrod;
  width: 100%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  /* For IE8 and earlier */
  height: 31px;
}
.cms-container .cms-container-controls .cms-container-icon {
  float: right;
  margin: 2px 5px 2px 0;
  height: 22px;
}
.cms-btn-ico-edit {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 0 5px 5px;
  padding: 0;
  background-image: url("/Areas/cms/images/Edit.png");
  background-color: transparent;
  border: none;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.cms-btn-ico-edit:hover {
  cursor: pointer;
}
.cms-btn {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid darkgray;
  background-color: lightgray;
  margin: 0;
  padding: 0.3rem 0.7rem 0.3rem;
  line-height: 1.72rem;
  cursor: pointer;
  text-decoration: none;
  font-size: 100%;
  vertical-align: middle;
  font-weight: bold;
}
.cms-btn:disabled {
  color: darkgray;
  border-color: darkgray;
  background-color: lightgray;
}
.cms-btn-vivid {
  background-color: goldenrod;
  color: white;
}
.cms-btn-vivid:not(:disabled):hover {
  background-color: #c4941d;
}
.cms-btn-vivid:not(:disabled):active {
  color: black;
  border-color: darkgray;
  background-color: lightgray;
}
.cms-form-container > p > label > span:first-of-type {
  display: block;
  font-weight: bold;
}
.cms-form-container > p > label input,
.cms-form-container > p > label select {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 250px;
}
.cms-texteditor ul {
  margin: 10px 0 10px 20px;
  padding-left: 10px;
  list-style: disc;
}
