.rmdcaution, .rmdimportant, .rmdnote, .rmdtip, .rmdwarning {
  padding: 1em 1em 1em 4em;
  margin-bottom: 10px;
  background: #f5f5f5 5px center/3em no-repeat;
}
.rmdcaution {
  background-image: url("../images/caution.png");
}
.rmdimportant {
  background-image: url("../images/important.png");
}
.rmdnote {
  background-image: url("../images/note.png");
}
.rmdtip {
  background-image: url("../images/tip.png");
}
.rmdwarning {
  background-image: url("../images/warning.png");
}
p.caption {
  color: #777;
  margin-top: 10px;
}
p code {
  white-space: inherit;
}
pre {
  word-break: normal;
  word-wrap: normal;
}
pre code {
  white-space: inherit;
}
p.flushright {
  text-align: right;
}
blockquote > p:last-child {
  text-align: right;
}
blockquote > p:first-child {
  text-align: inherit;
}
.header-section-number {
  padding-right: .2em;
  font-weight: 500;
}
.level1 .header-section-number {
  display: inline-block;
  border-bottom: 3px solid;
}
.level1 h1 {
  border-bottom: 1px solid;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
h1.title {
  font-weight: 700;
}
.smallcaps {
  font-variant: small-caps;
}
.book .book-body .page-wrapper .page-inner section.normal strong {
  font-weight: 600;
}


* {
  box-sizing: border-box;
}

/* Create two unequal columns that floats next to each other */
.column {
  float: right;
  margin-bottom: 20px;
}

.left-70 {
  width: 70%;
  padding-left: 20px;
}

.right-30 {
  width: 30%;
}

.left-50 {
  width: 50%;
}

.right-50 {
  width: 50%;
}

.one-third {
  padding-right: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 640px) {
    .one-third {
        width: 33.33%;
    }
}

.two-third {
  width: 66.66%;
  padding-right: 20px;
  padding-left: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.logo-img{
  float: right; width:70%; display: block; margin: auto;
}
.logo-txt{
text-align:justify; float: left; width:50%; font-size: 9pt;
}

.text-block{
  background-color: #192f59;
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  height:190px;
  border-radius:10px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 100px;
  display: table-cell;
  width:500px;
}

.text-block-black{
  background-color: #000000;
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  height:190px;
  border-radius:10px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 100px;
  display: table-cell;
  width:500px;
}

.text-block-gray{
  background-color: #9a9991;
  color: #ffffff;
  padding-left: 20px;
  padding-right: 20px;
  height:190px;
  border-radius:10px;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 100px;
  display: table-cell;
  width:500px;
}

.path{
  margin-top: 40px; padding: 5px 30px 5px 5px; width:100%; background-color: #51be78;
}
.path-divider{
  margin:0px 10px 0px 10px;
}
.blue-color{
  color:#192f59;
}
.white-color{
  color:#ffffff;
}
.text-justify{
  text-align: justify;
}
.text-center{
  text-align: center;
}
.text-bold{
  font-weight: bold;
}
.headtitle{
  background-color: #192f59;
  color:#ffffff;
  padding-right:20px;
  font-weight: bold;
}
.team-title{
                                 border-bottom: 2px solid #ffffff; background-color: #192f59;
                                  padding: 8px; color: #ffffff; font-weight: bold; 
                              }
                              .team-row{
                                 border-top: 2px solid #ffffff; border-bottom: 2px solid #ffffff; background-color: #f8f8ff;
                              }
                              .team-img{
                                 width: 50%;
                                 border-radius: 50%;
                                 
                                 margin-left: 15%;
                                 margin-right: 15%;
                                 margin-top:5%;
                                 margin-bottom:5%;
                              }
                              .team-column1{
                                 flex: 30%;
                              }
                              .team-column2{
                                 flex: 70%;
                              }
                              .team-name{
                                 color: #192f59;
                                 font-weight: bold;
                              }

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #51be78;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}