/* Holder of Entire Page */
.Holder {
 position: relative;
 height: calc(100% - 100px);
 margin-right: 20px;
 margin-left: 20px;
 background-color: #F2F2F2;
 border: 2px solid black; 
 border-left: 15px solid #B30000;
}



/* Holder for Tab Bar */
.innerhold {
 display: inline-block;
 background-color: #FEFEFE;
 width: 122px;
 height: 100%;
 -moz-box-shadow: inset -10px 0px 10px -7px #d9d9d9;
 -webkit-box-shadow: inset -10px 0px 10px -7px #d9d9d9; 
 box-shadow: inset -10px 0px 10px -7px #d9d9d9;
}
/* Used to add second border to Tab Bar */
.innerhold:before {
  content: " ";
  position: absolute;
  bottom: 0px;
  top: 0px;
  border-left: 1px solid black;
}



/* Tab Bar */
.tabordion {
  position: relative;
  padding-top: 40px;
  font: bold 12px Arial, Helvetica, sans-serif; 
}



/* Hidden Radio Buttons */
.tabordion input[name="sections"] {
  left: -9999px;
  position: absolute;
  top: -9999px;
}



/* Tab Default (Grooves) */
.tabordion section label {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 12px 0px 12px 5px;
  width: 116px;
  height: 14px;
  margin-bottom: 5px;
  background-color : #F2F2F2;
  border-top: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-left: 1px solid #000000;
}
/* Tab Selected (Red Tabs) */
.tabordion input[name="sections"]:checked + label {
  width: 132px;
  border-left: 1px solid #B30000;
  color: #FCFCFC;
  background-image: Radial-gradient(closest-side at 50%,#FF0000,#B30000); 
  -moz-border-radius-topright: 9px;
  -webkit-border-top-right-radius: 9px;
  border-top-right-radius: 9px;
  -moz-border-radius-bottomright: 9px;
  -webkit-border-bottom-right-radius: 9px;
  border-bottom-right-radius: 9px;
  -moz-box-shadow:    inset -1px -1px 1px #000000;
  -webkit-box-shadow: inset -1px -1px 1px #000000;
  box-shadow:         inset -1px -1px 1px #000000;
  z-index: 999;
}



/* Article Section Default (HIDDEN) */
.tabordion section article {
  display: none; 
  min-width: 841px;
  padding: 12px 17px;
  position:fixed !important;
  top:92px;
  right:35px;
  bottom:60px;
  left:173px;
  z-index: 998;
}
/* Article Section Selected (VISIBLE) */
.tabordion input[name="sections"]:checked ~ article {
  display: block;
}