@font-face {
  font-family: "raleway";
  src: url("../fonts/raleway-regular-webfont.woff2") format("woff2"), url("../fonts/raleway-regular-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "raleway";
  src: url("../fonts/raleway-medium-webfont.woff2") format("woff2"), url("../fonts/raleway-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "raleway";
  src: url("../fonts/raleway-semibold-webfont.woff2") format("woff2"), url("../fonts/raleway-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "raleway";
  src: url("../fonts/raleway-bold-webfont.woff2") format("woff2"), url("../fonts/raleway-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "raleway";
  src: url("../fonts/raleway-light-webfont.woff2") format("woff2"), url("../fonts/raleway-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
body {
  font-family: "raleway", Open-sans;
  font-weight: 400;
}

* {
  box-sizing: border-box;
}

body button {
  background-color: #a22a8d;
  border-radius: 6px;
  padding: 20px;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 15px;
  color: #ffffff;
  transition: ease-in 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
body button:after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  left: calc(100% + 100px);
  top: 0;
  width: 100%;
  height: 100%;
  transition: ease-in 0.2s;
  z-index: 1;
}
body button:hover:after {
  left: 0;
}
body .innerContainer {
  width: 100%;
  margin: 0 auto;
}
body header .innerContainer {
  padding: 0 60px;
}
body header img {
  height: 87px;
  width: auto;
}
body section .webBanner {
  position: relative;
}
body section .webBanner img {
  width: 100%;
}
body section .webBanner h1 {
  margin: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 42px;
  line-height: 56px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  width: 80%;
  text-align: center;
}
body section .webBanner .downloadPub {
  display: inline-block;
  position: absolute;
  bottom: -36px;
  right: 60px;
  background: #fff;
  padding: 12px;
  border-radius: 14px;
}
body section .contentSection {
  display: flex;
  width: 100%;
  min-height: 400px;
}
body section .contentSection .leftMenu {
  position: relative;
  background: #f2faff;
  width: 40%;
  transition: ease-in 0.4s;
  padding-left: 70px;
}
body section .contentSection .leftMenu a.menuCollapse {
  position: relative;
  right: 2px;
  top: 20px;
  float: right;
  width: 65px;
  text-align: center;
  height: 32px;
}
body section .contentSection .leftMenu a.menuCollapse i {
  color: #4343aa;
  font-size: 32px;
  transition: ease-in 0.3s;
}
body section .contentSection .leftMenu a.menuCollapse i.flip {
  transition: ease-in 0.25s;
  transform: rotate(180deg);
}
body section .contentSection .leftMenu a.menuCollapse:after {
  position: absolute;
  font-size: 0px;
  background-color: #4d4d4d;
  color: #fff;
  width: 0px;
  top: 5px;
  left: -20%;
  z-index: 999;
  padding: 5px 0 5px 0;
  text-align: center;
  border-radius: 14px;
  transition: ease-in 0.3s;
  visibility: hidden;
  pointer-events: none;
  content: "Click to collapse";
  transition: ease 0.15s;
}
body section .contentSection .leftMenu a.menuCollapse:hover:after {
  left: calc(100% - 10px);
  width: 100px;
  font-size: 11px;
  transition: ease 0.3s;
  visibility: visible;
}
body section .contentSection .leftMenu.hide {
  transition: ease-in 0.3s;
  width: 66px;
}
body section .contentSection .leftMenu.hide a.menuCollapse:after {
  content: "Click to expand";
}
body section .contentSection .leftMenu .menuContent {
  overflow-y: auto;
  max-height: 620px;
  width: 100%;
}
body section .contentSection .leftMenu .menuContent::-webkit-scrollbar {
  width: 8px;
}
body section .contentSection .leftMenu .menuContent::-webkit-scrollbar-track {
  background-color: #f2faff;
}
body section .contentSection .leftMenu .menuContent::-webkit-scrollbar-thumb {
  background-color: #4343aa;
}
body section .contentSection .leftMenu .menuContent h3 {
  font-weight: 600;
  color: #4d4d4d;
  text-transform: uppercase;
  font-size: 24px;
}
body section .contentSection .leftMenu .menuContent .thumbnailGroup .thumbnailImage {
  display: inline-block;
  margin-right: 20px;
}
body section .contentSection .leftMenu .menuContent .thumbnailGroup .thumbnailImage img {
  width: auto;
  height: 96px;
}
body section .contentSection .leftMenu .menuContent .thumbnailGroup .publicationInfo {
  display: inline-block;
  vertical-align: top;
}
body section .contentSection .leftMenu .menuContent .thumbnailGroup .publicationInfo .group {
  vertical-align: top;
  margin-bottom: 14px;
}
body section .contentSection .leftMenu .menuContent .thumbnailGroup .publicationInfo .group p {
  margin: 0;
  font-size: 14px;
  color: #999999;
  font-weight: 500;
  line-height: 20px;
}
body section .contentSection .leftMenu .menuContent .thumbnailGroup .publicationInfo .group p.title {
  color: #4d4d4d;
}
body section .contentSection .leftMenu .menuContent .chaptersNav {
  display: block;
  width: 100%;
  margin: 10px 0 30px 0;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter {
  padding: 0 22px 0 30px;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter a {
  text-decoration: none;
  display: block;
  line-height: 21px;
  margin-top: 8px;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter a:hover {
  text-decoration: underline;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter .titleGroup {
  display: flex;
  justify-content: space-between;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter .titleGroup a.title {
  display: inline-block;
  max-width: calc(100% - 50px);
  color: #a22a8d;
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 2px 0;
  text-transform: uppercase;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter .titleGroup a.download i {
  color: #4343aa;
  width: 18px;
  height: 18px;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter .chapterGroup {
  transition: ease 0.3s;
  height: 0;
  overflow: hidden;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter .chapterGroup a.text {
  font-weight: 500;
  font-size: 15px;
  color: #4d4d4d;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple a {
  position: relative;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple a.title:before {
  position: absolute;
  content: "+";
  top: 0;
  left: -19px;
  font-size: 30px;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple.expand a.title:before {
  content: "-";
  top: -2px;
}
body section .contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple.expand .chapterGroup {
  transition: ease 0.3s;
  height: 100%;
}
body section .contentSection .leftMenu .menuContent .mappingTools {
  margin-bottom: 40px;
  display: block;
  text-align: right;
  padding-right: 23px;
}
body section .contentSection .leftMenu .menuContent .mappingTools a {
  color: #4343aa;
  font-weight: 500;
}
body section .contentSection .rightContent {
  width: 60%;
  overflow-y: auto;
  max-height: 620px;
}
body section .contentSection .rightContent::-webkit-scrollbar {
  width: 8px;
}
body section .contentSection .rightContent::-webkit-scrollbar-track {
  background-color: #f2faff;
}
body section .contentSection .rightContent::-webkit-scrollbar-thumb {
  background-color: #4343aa;
}
body section .contentSection .rightContent .contentBody {
  display: block;
  padding: 40px 70px 30px 60px;
}
body section .contentSection .rightContent .contentBody .subtitle h2 {
  font-size: 24px;
  font-weight: 500;
  color: #4d4d4d;
  line-height: 34px;
}
body section .contentSection .rightContent .contentBody article h4.title {
  font-size: 24px;
  color: #a22a8d;
  margin: 42px 0 18px 0;
}
body section .contentSection .rightContent .contentBody article p {
  line-height: 32px;
  color: #4d4d4d;
}
body section .contentSection .rightContent .contentBody article .figure img {
  width: 100%;
  height: auto;
}
body section .contentSection .rightContent .pagination {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 40px 70px 30px 60px;
}
body section .contentSection .rightContent .pagination .previous,
body section .contentSection .rightContent .pagination .current,
body section .contentSection .rightContent .pagination .next {
  float: left;
  width: 29%;
}
body section .contentSection .rightContent .pagination .previous a,
body section .contentSection .rightContent .pagination .current a,
body section .contentSection .rightContent .pagination .next a {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #4343aa;
  text-transform: uppercase;
}
body section .contentSection .rightContent .pagination .previous a i,
body section .contentSection .rightContent .pagination .current a i,
body section .contentSection .rightContent .pagination .next a i {
  width: 28px;
  height: 28px;
  display: inline-block;
  background: #a22a8d;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  margin: 0 10px;
}
body section .contentSection .rightContent .pagination .previous p,
body section .contentSection .rightContent .pagination .current p,
body section .contentSection .rightContent .pagination .next p {
  font-size: 13px;
  color: #4d4d4d;
  line-height: 24px;
}
body section .contentSection .rightContent .pagination .previous a i {
  margin-right: 0;
}
body section .contentSection .rightContent .pagination .current {
  text-align: center;
}
body section .contentSection .rightContent .pagination .next a i {
  margin-left: 0;
}
body section .contentSection.full .rightContent {
  width: calc(100% - 70px);
}

/*# sourceMappingURL=style.css.map */


/*override*/
body { margin:0; }
.contentSection .leftMenu .menuContent h3 { margin-top: 0; }
.contentSection .leftMenu a.menuCollapse i { color:#178fd4 !important; font-size: 30px !important; }
.contentSection .leftMenu a.menuCollapse { top:31px !important; }
.contentSection .leftMenu .menuContent .thumbnailGroup .publicationInfo .group p { font-size: 15px !important; }
.contentSection .leftMenu a.menuCollapse img.flip { transform: rotate(180deg);}
.contentSection .pagination .previous .group i.prev img { transform: rotate(180deg);}
.downloadPub a { background: #a22a8d !important; }
.downloadPub a.button{background-color: #a22a8d; border-radius: 6px; padding: 20px 30px; border: none; outline: none; box-shadow: none; font-size: 15px; color: #ffffff; transition: ease-in 0.2s; position: relative; overflow: hidden; z-index: 0; cursor: pointer; display: inline-block; text-decoration: none; font-weight: 600;}
.downloadPub a.button:after { content: ""; position: absolute; background: rgba(0, 0, 0, 0.1); left: calc(100% + 100px); top: 0; width: 100%; height: 100%; transition: ease-in 0.2s; z-index: 1;}
.contentSection .leftMenu .menuContent .chaptersNav .chapter { margin-bottom: 8px; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter .titleGroup a.title { font-weight: 700 !important; }
.contentSection .leftMenu .menuContent .mappingTools { margin-top: 60px !important; }
.contentSection .leftMenu .menuContent::-webkit-scrollbar { width: 5px !important;}
.contentSection .leftMenu .menuContent::-webkit-scrollbar-track { background-color: #f2faff !important;}
.contentSection .leftMenu .menuContent::-webkit-scrollbar-thumb { background-color: #797d7f !important;}
.contentSection .rightContent::-webkit-scrollbar { width: 5px !important;}
.contentSection .rightContent::-webkit-scrollbar-track { background-color: #f2faff !important;}
.contentSection .rightContent::-webkit-scrollbar-thumb { background-color: #797d7f !important;}
.contentSection .rightContent .contentBody article p {font-size: 18px;}
.contentSection .rightContent .contentBody article ul li { font-size: 18px; line-height: 32px; color:#4d4d4d; }
.contentSection .rightContent .contentBody .figure { margin-top: 65px; }
.contentSection .rightContent .pagination .previous p, .contentSection .rightContent .pagination .current p, .contentSection .rightContent .pagination .next p { font-size: 13px !important; font-weight: 600; }
.contentSection .rightContent .contentBody .keyConcepts { width: 100%; display: inline-block; padding:20px 35px 35px 35px; border:1px solid #178fd4; background: #edf6fc;}

.contentSection .leftMenu.leftHide { transition: ease-in 0.3s; width: 66px;}
.contentSection .leftMenu.leftHide  a.menuCollapse:after { content: "Click to expand";}
.contentSection .leftMenu a.menuCollapse { right: 6px !important; background: #f2faff; z-index: 999;}

.contentSection .rightContent .contentBody .subtitle h2 { font-family: 'Raleway-Medium'; }
.webBanner h1 { font-family: 'Raleway-Medium'; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter .titleGroup a.title { font-size: 17px !important; font-family: 'Raleway-Medium'; }
.contentSection .rightContent .contentBody article h4.title { font-size: 25px !important; font-family: 'Raleway-Medium'; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter .chapterGroup a.text { cursor: pointer !important; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter a:hover { text-decoration: none !important; }
.contentSection .leftMenu .menuContent .mappingTools { text-align: left !important; font-size: 17px !important; font-family: 'Raleway-Medium' !important; }



/*Expand and collapse*/
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple.expand a.title:before,
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple a.title:before { display: none !important; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple { position: relative; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple>span.icon { position: absolute; top: 12px; left: 6px; width: 14px; height: 14px; cursor: pointer;}
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple>span.icon img {width: 100%; height: 100%;}
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple>span.icon.minus { height: 5px; top: 10px; display: none; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter .chapterGroup a.text { font-weight: 500; font-size: 15px; color: #4d4d4d; }
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple.expand .chapterGroup { transition: ease 0.2s; height: 100%;}
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple.expand>span.icon.plus { display: none !important;}
.contentSection .leftMenu .menuContent .chaptersNav .chapter.multiple.expand>span.icon.minus { display: inline-block;}
.contentSection .rightContent .pagination .previous, body section .contentSection .rightContent .pagination .current, body section .contentSection .rightContent .pagination .next { width: 32% !important; }
.contentSection .rightContent .pagination .previous a i, body section .contentSection .rightContent .pagination .current a i, body section .contentSection .rightContent .pagination .next a i { width: 28px !important; line-height: 18px;}