.transitionEnabled #drawerArea {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#drawerContainer {
  position: relative;
}
#drawerArea {
  position: absolute;
  top: 0;
  transform: translate3d(-318px, 0, 0);
  border-left: 1px solid #9b9b9b;
  border-radius: 0 2px 2px 0;
  width: 350px;
  background-color: white;
  z-index: 5;
  border-left: none;
  box-sizing: border-box;
  margin-left: 4px;
  margin-top: -42px;
  transition: transform 0.5s;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  border-top: 1px solid #212121;
}

#drawerLabel {
  transform: rotate(90deg);
  transform-origin: right;
  position: absolute;
  right: 20px;
  top: 192px;
  font-size: 18px;
  color:#555;
}

#drawerFooterCover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 36px;
}

.open #drawerLabel, .open #drawerUnderlay {
  display: none;
}

#drawerUnderlay {
  position: absolute;
  top:0;
  bottom:0;
  left:0;
  right:0;
  background-color:#fbfbfb;
}


.scrolled#drawerArea {
  position: fixed;
  margin-top: 0;
  bottom: 40px;
}

.cc_banner-wrapper ~ #drawerContainer > .scrolled#drawerArea {
  top: 60px;
}
.open #drawer {
  transform: translate3d(0,0,0);
}
#drawer {
  overflow-y: scroll;
  position: relative;
  height: 100%;
  transform: translate3d(-40px,0,0);
  transition: transform 0.5s;
  padding-left: 10px;
  padding-bottom: 40px;
  width: 340px;
}

.scrolled #drawer {
  position: absolute;
  top: 42px;
  bottom: 0;
  height: auto;
  padding-bottom: 0;
}


#drawer ul {
  margin: 0;
  padding-bottom: 70px;
}

.scrolled #drawer ul {
  padding-bottom: 0;
}

#drawer li {
  margin: 0;
  font-size: 16px;
  padding-top: 3px;
}

#drawer .titleTitle {
  min-height: auto;
}

#drawer li.codeTitle {
  margin-top: 5px;
  margin-bottom: 0;
}

#drawer li.divisionTitle {
  margin-left: 0;
  font-size: 20px;
}

#drawer li.divisionTitle .titleTitle {
  padding-left: 0;
}

#drawer li.chapterTitle {
  margin-left: 6px;
}
#drawer li.partTitle {
  margin-left: 9px;
}
#drawer li.articleTitle {
  margin-top: 10px;
  margin-left: 12px;
}

#drawer li.chapterTitle + .articleTitle {
  margin-top: 0;
}

#drawer li.articleTitle + .chapterTitle {
  margin-top:10px;
}

#drawer li.sectionTitle {
  margin-left: 18px;
}
#drawer li.sectionTitle .titleNumber {
  font-weight: 500;
  line-height: 1.1;
  min-width: 70px;
}

#drawer li.sectionTitle .titleTitle {
  font-weight: 400;
  line-height: 1.1;
}

#drawer li.currentLocation {
  /*border-left: 3px solid green;
  padding-left: 3px;
  left: -6px;*/
  position: relative;
  background-color: #eee;
}

.open #drawerArea {
  transform: translate3d(0,0,0);
  margin-left: 0;
  z-index: 6;
}

.open #main {
  /* left: 120px;*/
  margin-right:0;
}

body {
  overflow-x: hidden;
}

#drawerHandle {
  background-color: #333;

  height: 42px;
  box-shadow: 4px 4px 20px rgba(0,1,1,.3),inset 0 1px 0 rgba(255,255,255,.2);
  border-bottom: 1px solid #9b9b9b;
  border-right: 1px solid #2b2b2b;
  box-sizing: border-box;
}

/*noinspection CssFloatPxLength*/
#drawerHandleTitle {
  float: left;
  font-size: 16px;
  color: #eee;
  margin-top: 12px;
  margin-left: 12px;
  text-shadow: 0 0.5px #666;
}


#drawerPin {
  float: left;
  background-repeat: no-repeat;
  background-image: url(../images/pin-b6fdbca3a43844fc930b9d8eaeaa5222.svg);
  width: 25px;
  height: 25px;
  margin-top: 8px;
  margin-left: 8px;
  opacity: 0.6;
  background-position: center center;
  transition: all 0.5s;
}
#drawerPin:hover {
  opacity: 0.9;
}

.pinned #drawerPin {
  transform: rotate(-45deg);
}

#drawerHandleIcon {
  background-repeat: no-repeat;
  background-image: url(../images/chevron-8478d17ec43780794f2bc941827812a1.svg);
  width: 18px;
  height: 18px;
  margin-top: 13px;
  margin-right:	8px;
  opacity: 0.6;
  background-position: center center;
  float: right;
  transition: all 0.5s;
}

.open #drawerHandleIcon {
  transform: rotate(180deg);
}

.open #drawerHandleIcon:hover {
  opacity: 0.9;
}

