
/* This is the ID for the main div of the entire page. This holds everything */
#idMain {
  background-color: #ffffff;
}

/* This is the top blue stripped banner that contains the logo */
#idTopHeader {
  background-image: linear-gradient(white, white, white, lightskyblue, white, white, white, white, lightskyblue, white, white) !important;
  height: 50px;
}

/* This is inside the top header, where the logo resides */
#idInnerTopHeader {
  width: 80%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}

#idLogo {
  float: left;
  display: inline-block;
  width: 260px;
  height: 50px;
}

/* Menu */
#idHorizMenublock {
  width: 80%;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px lightskyblue;
}
ul.cDropMenu {
  display: none;
  position: absolute;
  background-color: #f9fcff;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.7);
  padding: 0px 0px;
  z-index: 1;
  list-style-type: none;
}
.cDrop:hover ul.cDropMenu {
  display: block;
}
ul.cHoriz {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f0f8ff;
 }
ul.cHoriz > li {
  float: left;
}
ul.cHoriz > li a {
  display: block;
  color: #AA4422;
  padding: 5px 10px;
  text-decoration: none;
}
ul.cHoriz > li a:hover {
  background-color: #E7F8FF;
}
span.cMenubar:hover {
  background-color: #E7F8FF;
}
.cMenubar:hover + ul.cDropMenu {
  display: block;
}
ul.cDropMenu:hover {
  display: block;
}
.cMenubar {
  display: block;
  color: #AA4422;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
}

/* Content Area */
#idContentblock {
  background-color: #fafcff;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px lightskyblue;
}

#idInnerContent {
  max-width: 1280px;
  width: 97%;
  margin-left: auto;
  margin-right: auto;
}







/*old Styles*/
pre.refcode {
    font-family: "Courier New", Courier, mono;
    font-size: 13px;
    text-align: left;
    background-color: rgb(245, 240, 240);
    border: 1px black solid;
    width: 95%;
    padding: 7px 0px 7px 5px;
    margin: 5px 0 5px 0;
    white-space: pre;
    tab-size: 4;
    overflow-x:auto;
}
span.comments {
    color: rgb(132,20,18);
}