:root {
  --aka-primary-color: #0033a1;
  --aka-primary-color-darken: #00236e;
  --aka-primary-opposite-color: #ffffff;
  --aka-secondary-color: #adafb2;
  --aka-secondary-opposite-color: #000000;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}
@-ms-keyframes spin {
  from {
    -ms-transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
  }
}
@keyframes stretchup15 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.5);
  }
}
@-webkit-keyframes stretchup15 {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
  }
}
@-ms-keyframes stretchup15 {
  from {
    -ms-transform: scale(1);
  }
  to {
    -ms-transform: scale(1.5);
  }
}
@-moz-keyframes stretchup15 {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(1.5);
  }
}
@keyframes stretchup2 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(2);
  }
}
@-webkit-keyframes stretchup2 {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(2);
  }
}
@-ms-keyframes stretchup2 {
  from {
    -ms-transform: scale(1);
  }
  to {
    -ms-transform: scale(2);
  }
}
@-moz-keyframes stretchup2 {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(2);
  }
}
@keyframes stretchup3 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(3);
  }
}
@-webkit-keyframes stretchup3 {
  from {
    -webkit-transform: scale(1);
  }
  to {
    -webkit-transform: scale(3);
  }
}
@-ms-keyframes stretchup3 {
  from {
    -ms-transform: scale(1);
  }
  to {
    -ms-transform: scale(3);
  }
}
@-moz-keyframes stretchup3 {
  from {
    -moz-transform: scale(1);
  }
  to {
    -moz-transform: scale(3);
  }
}
@-webkit-keyframes linear-loading-anim-1 {
  0% {
    border-left: 10px solid #f7f7f7;
    background-color: #f7f7f7;
    border-right: 10px solid #0033a1;
  }
  33% {
    border-left: 10px solid #0033a1;
    background-color: #f7f7f7;
    border-right: 10px solid #f7f7f7;
  }
  66% {
    border-left: 10px solid #f7f7f7;
    background-color: #0033a1;
    border-right: 10px solid #f7f7f7;
  }
}
@keyframes linear-loading-anim-1 {
  0% {
    border-left: 10px solid #f7f7f7;
    background-color: #f7f7f7;
    border-right: 10px solid #0033a1;
  }
  33% {
    border-left: 10px solid #0033a1;
    background-color: #f7f7f7;
    border-right: 10px solid #f7f7f7;
  }
  66% {
    border-left: 10px solid #f7f7f7;
    background-color: #0033a1;
    border-right: 10px solid #f7f7f7;
  }
}
div#required_books,
div#featured_books {
  display: none;
  height: 342px;
  overflow: visible !important;
}
div#required_books > h2,
div#featured_books > h2 {
  color: #4F4E53;
  text-align: left;
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 3px;
  margin-bottom: 16px;
  border-bottom: 1px solid #0033a1;
}
div#required_books .recommendations-pane,
div#featured_books .recommendations-pane {
  background-color: #F7F8FA;
  border: 1px solid #EAEAEA;
  padding: 10px;
  float: left;
  margin-left: 8px;
}
div#required_books .recommendations-pane .mob-only,
div#featured_books .recommendations-pane .mob-only {
  display: none !important;
}
div#required_books .recommendations-pane:first-of-type,
div#featured_books .recommendations-pane:first-of-type {
  margin-left: 0;
}
div#required_books .recommendations-pane.rec-required,
div#featured_books .recommendations-pane.rec-required {
  background-color: #FCF2E8;
  border-color: #EEE9D6;
}
div#required_books .recommendations-pane.three-sections,
div#featured_books .recommendations-pane.three-sections {
  padding: 8px 3px;
  margin-left: 4px;
}
div#required_books .recommendations-pane > h3,
div#featured_books .recommendations-pane > h3 {
  color: #000;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
}
div#required_books .recommendations-pane ul.req-book-list,
div#featured_books .recommendations-pane ul.req-book-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell {
  position: relative;
  float: left;
  width: 145px;
  height: 248px;
  margin: 10px 0 0 17px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #E1E0DC;
  padding: 20px 7px 5px;
  text-align: center;
  width: 136px;
  -webkit-transition: width 0.1s ease;
  -o-transition: width 0.1s ease;
  transition: width 0.1s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block:first-child,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block:first-child {
  margin-left: 0;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top {
  overflow: hidden;
  height: 100px;
  width: 136px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner {
  width: 260px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-img,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-img {
  height: 100px;
  width: 115px;
  float: left;
  padding: 0 9px;
  -webkit-transition: padding-left 0.1s ease;
  -o-transition: padding-left 0.1s ease;
  transition: padding-left 0.1s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-img > img,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-img > img {
  max-width: 115px;
  max-height: 100px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-img > img.icon,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-img > img.icon {
  background-color: #0033a1;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block {
  float: right;
  width: 140px;
  font-size: 11px;
  text-align: left;
  margin-right: -140px;
  -webkit-transition: margin-right 0.3s ease;
  -o-transition: margin-right 0.3s ease;
  transition: margin-right 0.3s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block > em,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block > em {
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block > em strong,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block > em strong {
  color: #6B6B6B;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block > em.req-book-info-course,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block > em.req-book-info-course {
  margin-bottom: 5px;
  color: #EA1A1A;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price {
  height: 40px;
  line-height: 12px;
  margin-bottom: 5px;
  display: none;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price strong,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price strong {
  font-size: 10.5px;
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price strong span,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price strong span {
  color: #EA1A1A;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price em,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-price em {
  font-size: 11px;
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-button,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block .req-book-button {
  display: none;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block a.req-book-add-to-cart,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block a.req-book-add-to-cart {
  width: 85px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block a.req-book-add-to-cart:focus,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-top .req-book-block-top-inner .req-book-buy-block a.req-book-add-to-cart:focus {
  outline-color: #0033a1 !important;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container {
  margin: 10px 0 10px;
  border-top: 1px solid #E1E0DC;
  padding: 10px 0 10px;
  position: relative;
  height: 80px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc {
  overflow: hidden;
  left: 0;
  right: 0;
  height: 80px;
  line-height: 20px;
  background-color: #fff;
  width: 136px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc em,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc em {
  font-style: normal;
  font-size: 11px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc strong,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc strong {
  font-weight: normal;
  color: #6B6B6B;
  font-size: 11px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc strong span,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-desc-container .req-book-desc strong span {
  font-style: italic;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom {
  display: none;
  overflow: hidden;
  width: 136px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below {
  margin-bottom: 5px;
  font-size: 10px;
  overflow: hidden;
  height: 35px;
  width: 260px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below:only-child .req-book-price-details,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below:only-child .req-book-price-details {
  text-align: center;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details {
  float: left;
  width: 136px;
  height: auto;
  line-height: 30px;
  text-align: right;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer {
  line-height: 1em;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer .product-disclaimer-container,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer .product-disclaimer-container {
  margin-top: 6px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer .product-disclaimer-container span,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer .product-disclaimer-container span {
  font-size: 11px !important;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer .product-disclaimer-container .product-disclaimer-text,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details.has-disclaimer .product-disclaimer-container .product-disclaimer-text {
  margin-left: 25px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details strong,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details strong {
  display: block;
  font-weight: normal;
  font-size: 11px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details strong span,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details strong span {
  color: #EA1A1A;
  font-size: 11px;
  font-weight: bold;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details .item-link strong,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details .item-link strong {
  display: inline;
  font-weight: bold;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details .item-link span,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details .item-link span {
  font-size: 11px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details em,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-price-details em {
  font-size: 11px;
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-button,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .req-book-block .req-book-block-bottom .req-book-price-below .req-book-button {
  display: none;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused {
  position: relative;
  width: 260px;
  z-index: 2;
  outline: 1px solid #fbb1b1;
  -webkit-box-shadow: 3px 3px 4px 1px #d9cece;
  box-shadow: 3px 3px 4px 1px #d9cece;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-top,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-top,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-top,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-top {
  width: 260px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-top .req-book-block-top-inner .req-book-img,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-top .req-book-block-top-inner .req-book-img,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-top .req-book-block-top-inner .req-book-img,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-top .req-book-block-top-inner .req-book-img {
  padding: 0;
  -webkit-transition: padding-left 0.3s ease;
  -o-transition: padding-left 0.3s ease;
  transition: padding-left 0.3s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-top .req-book-block-top-inner .req-book-buy-block,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-top .req-book-block-top-inner .req-book-buy-block,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-top .req-book-block-top-inner .req-book-buy-block,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-top .req-book-block-top-inner .req-book-buy-block {
  display: block;
  margin-right: 0;
  -webkit-transition: margin-right 0.3s ease;
  -o-transition: margin-right 0.3s ease;
  transition: margin-right 0.3s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-desc-container,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-desc-container,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-desc-container,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-desc-container {
  overflow: hidden;
  border-bottom: 1px solid #E1E0DC;
  width: 100%;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-desc-container .req-book-desc,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-desc-container .req-book-desc,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-desc-container .req-book-desc,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-desc-container .req-book-desc {
  width: 260px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom {
  display: block;
  width: 260px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom .req-book-price-below .req-book-price-details,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom .req-book-price-below .req-book-price-details,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom .req-book-price-below .req-book-price-details,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom .req-book-price-below .req-book-price-details {
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom .req-book-price-below .req-book-button,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom .req-book-price-below .req-book-button,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom .req-book-price-below .req-book-button,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom .req-book-price-below .req-book-button {
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom .req-book-price-below .req-book-button a,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom .req-book-price-below .req-book-button a,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section:hover .req-book-block-bottom .req-book-price-below .req-book-button a,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .hover-section.focused .req-book-block-bottom .req-book-price-below .req-book-button a {
  width: 100px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused {
  position: relative;
  z-index: 2;
  outline: 1px solid #fbb1b1;
  -webkit-box-shadow: 3px 3px 4px 1px #d9cece;
  box-shadow: 3px 3px 4px 1px #d9cece;
  -webkit-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover .req-book-desc-container,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused .req-book-desc-container,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover .req-book-desc-container,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused .req-book-desc-container {
  border-bottom: 1px solid #E1E0DC;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover .req-book-block-bottom,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused .req-book-block-bottom,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover .req-book-block-bottom,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused .req-book-block-bottom {
  display: block;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 {
  margin-right: 10px;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 .req-book-block:not(.school-supplies-single-item),
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 .req-book-block:not(.school-supplies-single-item) {
  margin-left: 0;
  -webkit-transition: margin-left 0.1s ease, width 0.1s ease;
  -o-transition: margin-left 0.1s ease, width 0.1s ease;
  transition: margin-left 0.1s ease, width 0.1s ease;
}
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 .req-book-block:not(.school-supplies-single-item):hover,
div#required_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 .req-book-block:not(.school-supplies-single-item).focused,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 .req-book-block:not(.school-supplies-single-item):hover,
div#featured_books .recommendations-pane ul.req-book-list > li.req-book-cell.req-book-cell-6 .req-book-block:not(.school-supplies-single-item).focused {
  margin-left: -124px;
  -webkit-transition: margin-left 0.3s ease, width 0.3s ease;
  -o-transition: margin-left 0.3s ease, width 0.3s ease;
  transition: margin-left 0.3s ease, width 0.3s ease;
}
div#required_books .recommendations-pane ul.req-book-list.req-book-list-shrunk > li,
div#featured_books .recommendations-pane ul.req-book-list.req-book-list-shrunk > li {
  margin-left: 11px;
}
div#required_books .recommendations-pane ul.req-book-list.req-book-list-shrunk > li:first-child,
div#featured_books .recommendations-pane ul.req-book-list.req-book-list-shrunk > li:first-child {
  margin-left: 5px;
}
div#required_books .recommendations-pane ul.req-book-list .req-book-cell:first-child,
div#featured_books .recommendations-pane ul.req-book-list .req-book-cell:first-child {
  margin-left: 5px;
}
div#required_books .recommendations-pane ul.req-book-list .req-book-cell:last-child,
div#featured_books .recommendations-pane ul.req-book-list .req-book-cell:last-child {
  margin-right: 12px;
}
div#required_books {
  overflow: hidden;
  margin-bottom: 5px;
}
div#featured_books ul.req-book-list > li.req-book-cell .hover-section:hover,
div#featured_books ul.req-book-list > li.req-book-cell .hover-section.focused,
div#required_books.expand-top ul.req-book-list > li.req-book-cell .hover-section:hover,
div#required_books.expand-top ul.req-book-list > li.req-book-cell .hover-section.focused {
  position: absolute !important;
  left: 0;
  bottom: 0;
}
div#featured_books ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover,
div#featured_books ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused,
div#required_books.expand-top ul.req-book-list > li.req-book-cell .school-supplies-single-item:hover,
div#required_books.expand-top ul.req-book-list > li.req-book-cell .school-supplies-single-item.focused {
  position: absolute !important;
  left: 0;
  bottom: 0;
}
div#featured_books ul.req-book-list > li.req-book-cell:last-child .hover-section:hover,
div#featured_books ul.req-book-list > li.req-book-cell:last-child .hover-section.focused,
div#required_books.expand-top ul.req-book-list > li.req-book-cell:last-child .hover-section:hover,
div#required_books.expand-top ul.req-book-list > li.req-book-cell:last-child .hover-section.focused {
  position: absolute;
  right: 0;
  bottom: 0;
}
div#featured_books div.recommendations-pane:not(.three-sections) ul.req-book-list li.req-book-cell:last-child,
div#required_books.expand-top div.recommendations-pane:not(.three-sections) ul.req-book-list li.req-book-cell:last-child {
  margin-right: 10px !important;
}
div#featured_books div.recommendations-pane.three-sections ul.req-book-list li.req-book-cell:last-child,
div#required_books.expand-top div.recommendations-pane.three-sections ul.req-book-list li.req-book-cell:last-child {
  margin-right: 15px !important;
}
#wrapper {
  font-family: 'Source Sans Pro', sans-serif;
  margin: 0 auto;
  width: 1000px;
  text-align: center;
}
#wrapper #tbdirect {
  text-align: left;
}
#wrapper #tbdirect #btitle {
  color: #000000;
  font-size: 16pt;
  margin-top: 7px;
  margin-bottom: 5px;
  font-weight: 600;
}
#wrapper #tbdirect #bauthor h2 {
  background: none repeat scroll 0 0 transparent;
  color: #000000;
  font-size: 10pt;
  font-weight: normal;
  margin: 0 0 20px;
  padding: 0;
  text-transform: none;
}
#wrapper #tbdirect .left {
  float: left;
}
#wrapper #tbdirect .left .book-details-block {
  width: 100%;
}
#wrapper #tbdirect .left .book-details-block.b-details-inner {
  min-height: 233px;
  position: relative;
}
#wrapper #tbdirect .left .book-details-block #bcover {
  float: left;
  margin-bottom: 30px;
  min-width: 200px;
}
#wrapper #tbdirect .left .book-details-block #bcover #bcover-inner {
  border: 5px solid #e7e7e7;
  margin-bottom: 11px;
  border-radius: 3px;
}
#wrapper #tbdirect .left .book-details-block #bcover #bcover-inner #bcover-cover {
  border-bottom: 1px solid #e7e7e7;
  text-align: center;
  padding: 20px 20px 5px 20px;
  min-height: 210px;
}
#wrapper #tbdirect .left .book-details-block #bcover #bcover-inner #bcover-isbn {
  padding: 12px 20px;
}
#wrapper #tbdirect .left .book-details-block #bcover #bcover-inner #bcover-isbn ul {
  color: #494949;
  line-height: 10px;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
#wrapper #tbdirect .left .book-details-block #bcover #bcover-inner #bcover-isbn ul >  li {
  margin: 0 0 5px;
  padding: 0;
}
#wrapper #tbdirect .left .book-details-block #bcover #bcover-inner #bcover-isbn ul >  li strong > span {
  min-width: 50px;
  display: inline-block;
}
#wrapper #tbdirect .left .book-details-block .book-details-block {
  float: left;
  margin-left: 20px;
  padding: 0 0 15px;
  width: 360px;
}
#wrapper #tbdirect .left .book-details-block .book-details-block ul {
  color: #494949;
  line-height: 12pt;
  list-style: none outside none;
  margin: 0;
  padding: 0;
}
#wrapper #tbdirect .left .book-details-block .book-details-block ul li {
  margin: 0;
  padding: 0;
}
#wrapper #tbdirect .left .book-details-block .bdetailline8 .tbx-button-big-1 {
  height: 30px;
  line-height: 30px;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 12px;
  display: block;
  font-weight: 600;
}
#wrapper #tbdirect .left #binfo li {
  line-height: 26px;
  font-size: 14px;
}
#wrapper #tbdirect .left #binfo li > strong {
  min-width: 125px;
  display: inline-block;
}
#wrapper #tbdirect .left #bcover-isbn-m {
  display: none;
}
#wrapper #tbdirect .right {
  float: right;
  width: 370px;
}
#wrapper #tbdirect .right #dbuy {
  float: right;
  position: relative;
}
#wrapper #tbdirect .right #dbuy #directbuy {
  background: none repeat scroll 0 0 #DCEBFE;
  width: 340px;
  border: 5px solid #e7e7e7;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  border-radius: 3px;
}
#wrapper #tbdirect .right #dbuy #directbuy .main {
  max-width: 100%;
  background-color: #DCEBFE;
  overflow: hidden;
}
#wrapper #tbdirect .right .mp-item {
  margin-right: 10px;
}
#wrapper .marketplace-product-disclaimer {
  margin-bottom: 1em;
  text-align: left;
}
#wrapper #tbmarketplace {
  clear: both;
  font-size: 12pt;
  width: 1000px;
  border-radius: 3px;
  margin-top: 50px;
}
#wrapper #tbmarketplace #mptabs #mpmenu {
  margin: 0;
  overflow: hidden;
  padding: 0 0 0 20px;
  position: relative;
  width: 100%;
}
#wrapper #tbmarketplace #mptabs #mpmenu ul {
  list-style: none outside none;
  position: relative;
  z-index: 10;
}
#wrapper #tbmarketplace #mptabs #mpmenu li {
  float: left;
  list-style: none outside none;
  margin-right: 2px;
  border-radius: 3px 3px 0 0;
  height: 30px;
  width: 100px;
  line-height: 30px;
  font-size: 13px;
  background-color: #767676 !important;
}
#wrapper #tbmarketplace #mptabs #mpmenu li a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: #fff;
}
#wrapper #tbmarketplace #mptabs #mpmenu li.current {
  background-color: #e7e7e7 !important;
}
#wrapper #tbmarketplace #mptabs #mpmenu li.current a {
  color: #666;
}
#wrapper #tbmarketplace #mptabs #bigblock {
  background-color: #FFFFFF;
  clear: both;
  min-height: 30px;
  z-index: 5;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable {
  float: none;
  border: 5px solid #e7e7e7;
  border-radius: 3px;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable #mptable-inner {
  background-color: #fff;
  padding: 15px;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct {
  clear: both;
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #E7E8EA;
  background-color: #fff;
  min-height: 80px;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct.mpstriped {
  background-color: #f5f4f2;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main {
  float: left;
  margin: 0;
  overflow: hidden;
  padding: 0 18px;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main table {
  padding: 0;
  table-layout: fixed;
  width: 100%;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main table tr {
  padding: 0;
  width: 100%;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main table td {
  text-align: center;
  width: 19%;
  vertical-align: top;
  padding: 12px 0;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main table td.comments {
  text-align: left;
  width: 340px;
  font-size: 13px;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main table td.condition a {
  text-decoration: none;
}
#wrapper #tbmarketplace #mptabs #bigblock #mptable .mpproduct .main table td.seller {
  text-align: left;
  width: 187px;
}
.nocover {
  border: 1px solid #C8C8C8;
  height: 100px;
  padding: 40px 10px 20px;
  text-align: center;
  width: 100px;
  margin: auto;
  margin-bottom: 30px;
}
.addcover {
  font-size: 10pt;
}
.expanddesc {
  color: #235996;
  cursor: pointer;
  display: inline;
  font-size: 10pt;
  font-weight: 600;
  margin-left: 5px;
}
.pricenum {
  font-weight: bold;
  height: 27px;
  line-height: 27px;
  margin: 0;
  padding: 0;
  font-size: 21px;
  margin-top: 4px;
}
.ddmenu {
  clear: both;
  padding: 0;
  margin: 0 auto;
  font-size: 14px;
}
.ddmenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
  margin-top: 10px;
}
.ddmenu ul li {
  background-color: #EF9300;
  color: white !important;
  font-size: 10pt;
  border-radius: 3px;
  margin-bottom: 10px;
}
.ddmenu ul li:last-child {
  margin-bottom: 2px;
}
.ddmenu ul li a {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
  text-decoration: none;
  display: block;
}
.ddmenu ul li a strong {
  font-size: 17px;
  min-width: 33px;
  display: inline-block;
}
.ddmenu ul li:hover {
  background-color: #CE6700;
  text-decoration: none !important;
  cursor: pointer;
}
.ebook-term-dd .term-list {
  background-color: transparent !important;
  color: #000 !important;
  font-size: 9pt;
  padding: 0 10px 0 0;
}
.ebook-term-dd .term-list:hover {
  background-color: transparent !important;
  color: #000 !important;
}
.ebook-term-dd .term-list a {
  font-size: 9pt;
  padding: 0;
  font-weight: normal;
  display: inline-block;
}
.ebook-term-dd .term-list a:hover {
  font-size: 9pt;
  padding: 0;
  text-decoration: underline !important;
}
div.unavail {
  padding: 25px 0;
  text-align: center;
}
div.unavail span {
  font-weight: 600;
}
.book-div {
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 700;
  font-size: 17pt;
  clear: both;
  border-bottom: 1px solid #BBBBBB;
}
.book-div:last-child {
  border: none;
}
.book-div.opened {
  background-color: #D9D9D9;
}
.book-div.opened .book-div-inner {
  border-bottom: 1px solid #BBBBBB;
}
.book-div .book-div-inner {
  padding: 12px 19px 0 18px;
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
}
.book-div .book-div-inner:first-child {
  border-top: none;
}
.book-div .book-div-inner .condition {
  padding-top: 3px;
  display: inline-block;
}
.book-button {
  float: right;
  text-decoration: none;
  display: block;
  padding: 2px 5px;
  line-height: 25px;
  margin-left: 20px;
  text-align: center;
  text-transform: none;
  font-size: 12px;
  width: 65px;
  font-weight: 600;
  border-radius: 3px;
  color: #fff !important;
  background-color: #EF9300;
}
.book-button:hover {
  background-color: #CE6700;
  text-decoration: none !important;
  cursor: pointer;
}
.book-button.book-button-ebook {
  background-color: #72B2EF;
}
.book-button.book-button-ebook:hover {
  background-color: #6096C9;
}
.book-button.book-button-rent:not(.item-in-cart) {
  line-height: 1.3em;
}
.book-button.book-button-disabled {
  background-color: #cccccc !important;
}
.book-button.book-button-disabled:hover {
  background-color: #cccccc !important;
  cursor: default;
}
#buymenu .book-button-disabled {
  background-color: #cccccc !important;
}
#buymenu .book-button-disabled:hover {
  background-color: #cccccc !important;
  cursor: default;
}
#mptable .main .book-button {
  font-size: 12px;
  width: 65px;
  font-weight: 600;
  border-radius: 3px;
  margin-top: 5px;
}
#mptable .main .book-button-disabled {
  font-size: 12px;
  width: 65px;
  font-weight: 600;
  border-radius: 3px;
  margin-top: 5px;
}
#mptable .main .book-button-rent {
  font-size: 12px;
  width: 65px;
  font-weight: 600;
  border-radius: 3px;
  margin-top: 5px;
}
#mptable .main .book-button-rent span {
  text-transform: uppercase;
}
#mptable #mpheader {
  padding: 0;
  table-layout: fixed;
  width: 100%;
  font-size: 10pt;
  font-weight: bold;
  background-color: #F5F5DE;
  height: 30px;
  text-align: center;
}
#mptable #mpheader td {
  font-size: 14px;
  font-weight: 600;
}
#mptable #mpheader .mpseller {
  width: 187px;
  text-align: left;
  padding-left: 18px;
}
#mptable #mpheader .comments {
  width: 340px;
  text-align: left;
}
#buymenu {
  background-color: #f5f4f2;
}
#buymenu .book-more {
  background-color: #e9e9e9;
  text-align: center;
}
#buymenu .book-more > a {
  color: #000;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  display: block;
  padding: 4px;
}
#buymenu .book-more > a:hover {
  text-decoration: none;
}
#buymenu .book-more > a.popup-hint-close {
  display: none;
}
#buymenu .book-hint {
  font-size: 13px;
  text-transform: none;
  margin-top: 4px;
  font-weight: normal;
  padding-bottom: 4px;
  min-height: 20px;
}
#buymenu .book-hint .freeshipping {
  font-size: 13px;
  float: right;
}
#buymenu .book-hint .freeshipping .default-rent-term {
  margin-right: 45px;
}
#buymenu .book-hint strong {
  font-size: 15px;
  font-weight: 600;
}
#buymenu .book-hint a strong {
  font-size: 13px;
}
#book-descr {
  clear: both;
  text-align: left;
  font-size: 14px;
  padding-bottom: 5px;
}
#book-descr.book-descr-collapsed {
  height: 65px;
  overflow: hidden;
  padding-bottom: 15px;
}
#book-descr strong {
  padding: 5px 0;
  text-transform: uppercase;
  display: block;
  font-size: 13px;
}
#book-descr .cog_header1 {
  display: none !important;
}
#book-descr .cog_header2 {
  text-align: left;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #383838;
  opacity: 1;
  margin-top: 20px;
  margin-bottom: 20px;
}
#book-descr #cog_intro {
  text-align: left;
  font: 400 16px/24px Source Sans Pro SemiBold;
  letter-spacing: 0px;
  color: #404040;
  opacity: 1;
}
#book-descr #cog_topics {
  background: #F5F5F5 0% 0% no-repeat padding-box;
  opacity: 1;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 5px;
  margin-top: 30px;
}
#book-descr #cog_topics .cog_head {
  text-align: left;
  font: 500 24px/29px Zilla Slab;
  letter-spacing: 0px;
  color: #383838;
  opacity: 1;
  padding-top: 20px;
  padding-bottom: 20px;
}
#book-descr #cog_topics .cog_topic {
  text-align: left;
  font: 16px/20px Source Sans Pro SemiBold;
  letter-spacing: 0px;
  color: #33393D;
  opacity: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid #FFFFFF;
}
#book-descr .cog_expl {
  display: none;
}
#book-descr .cog_markt {
  display: none;
}
#book-descr .cog_quote {
  display: none;
}
#book-descr .cog_author {
  display: none;
}
#book-descr .hover_img a {
  position: relative;
}
#book-descr .hover_img a span {
  position: fixed;
  display: none;
  z-index: 99;
  right: 10px;
}
#book-descr .hover_img a span img {
  max-width: 800px;
}
#book-descr .hover_img a:hover span {
  display: block;
}
#full_desc {
  display: none;
}
#full_desc strong {
  background-color: #95C7FF;
  border-radius: 5px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 10px;
  margin-left: 5px;
  line-height: 13px;
  padding: 3px 10px;
}
#toogle-description-size-btn {
  background-color: #e9e9e9 !important;
  border-radius: 0 0 5px 5px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 12px;
  line-height: 13px;
  padding: 3px 10px;
  display: none;
  margin-top: 8px;
}
#expand_butn strong {
  background-color: #95C7FF;
  border-radius: 5px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 10px;
  margin-left: 5px;
  line-height: 13px;
  padding: 3px 10px;
}
#more_options {
  background-color: #EF9300;
  border-radius: 3px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 14px;
  line-height: 25px;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-weight: bold;
}
#more_options:hover {
  background-color: #CE6700;
}
#more_options_content {
  padding-top: 20px;
  text-align: right;
  width: 100%;
}
.seller_rating_empty {
  margin-left: -9px;
}
.seller_rating {
  margin-left: -9px;
}
.popup-price {
  display: none;
  clear: both;
  font-size: 13px;
  font-weight: normal;
  line-height: 15px;
  padding: 7px 18px 3px 17px;
  text-transform: none;
  color: #494949;
  background-color: #e9e9e9;
}
.popup-price .popup_image {
  left: 310px;
  position: absolute;
  top: 38px;
}
.popup-price .condition {
  float: right;
  text-align: right;
}
.popup-price .condition .popup-link {
  font-size: 10pt;
  margin-top: 2px;
}
.popup-price .left_part {
  float: left;
}
.popup-price .item-comments {
  margin-top: 10px;
}
.ie7 div.book-div span.condition {
  float: left;
}
.ie7 span.rent-term {
  float: left;
}
.image-cover {
  max-width: 200px;
  overflow: hidden;
  display: inline-block;
}
.image-cover img {
  max-width: 100%;
}
#marketplace-section-label {
  display: none;
  font-size: 18pt;
  padding: 5px 0;
  text-align: left;
}
#marketplace-section-label a {
  color: #000000;
  text-decoration: none;
}
#marketplace-section-label a:hover {
  text-decoration: underline;
}
.not_empty {
  padding-bottom: 15px;
}
.marketplacepromo {
  display: block;
}
.popup-link {
  color: #78aadf;
  font-size: 10pt;
  display: block;
  margin-top: 7px;
}
.condition-text {
  float: right;
  text-align: right;
}
.product_price {
  float: right;
  font-size: 16pt;
  padding-top: 2px;
  padding-right: 10px;
}
.ebook-popup {
  float: left;
}
.mpcondition {
  width: 160px !important;
}
.mpcondition .popup-link {
  font-size: 11pt;
  font-weight: bold;
  text-transform: capitalize;
}
.mpprice {
  width: 180px !important;
}
.seller > strong {
  font-weight: 600;
  color: #000;
  font-size: 15px;
}
.seller .seller_info {
  color: #000;
  font-size: 15px;
}
.seller .seller_info > strong {
  font-weight: 600;
}
.seller .seller-info > a {
  color: #000;
}
.seller .seller-info > a strong {
  font-weight: 600;
}
.hint-only-over {
  width: 100%;
  height: 100%;
}
.buy_table {
  float: left;
  width: 100%;
  text-align: right;
}
.premium-shipping-block {
  height: 12px;
  padding-top: 10px;
}
.location {
  font-size: 13px;
  display: block;
  margin-top: 7px;
}
.location > strong {
  font-weight: 600;
}
.mp-seller-info {
  font-size: 13px;
}
.clear-fix {
  clear: both;
}
.third-party-store-modal {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
  float: right;
  margin-top: 8px;
}
#third-party-store-popup {
  display: none;
}
.third-party-store-popup-wrapper {
  text-align: center;
}
.third-party-store-popup-wrapper > .third-party-store-message {
  font-size: 16px;
  text-align: center;
}
.third-party-store-popup-wrapper > .third-party-store-link {
  font-size: 14px;
  font-weight: bold;
  text-decoration: underline;
  margin-right: 5px;
}
.in-fullscreen-wrapper {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=1, StartColorStr='#CC000000', EndColorStr='#CC000000')";
  filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=1,StartColorStr='#CC000000',EndColorStr='#CC000000');
  background-color: rgba(0,0,0,0.8);
  z-index: 999;
}
#in-message-box-wrapper #in-message-box {
  border-radius: 5px;
  position: absolute;
  background-color: #fff;
  top: 30%;
  left: 50%;
  width: 400px;
  height: auto;
  margin-left: -200px;
  overflow: hidden;
}
#in-message-box-wrapper #in-message-box h6#in-message-box-title {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: grey;
  height: 25px;
  line-height: 25px;
  color: #fff;
}
#in-message-box-wrapper #in-message-box > a {
  float: none;
  margin: 0 auto 10px;
  width: 40px;
  text-align: center;
  padding: 10px 30px;
  display: block;
  color: #fff;
  background-color: grey;
  text-decoration: none;
  font-size: 10pt;
  border-radius: 7px;
}
#in-message-box-wrapper #in-message-box #in-message-box-text {
  padding: 20px 10px;
}
#in-message-box-wrapper #in-message-box #in-message-box-text p {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}
#in-message-box-wrapper #in-message-box #in-message-box-text p > img {
  float: left;
  height: 40px;
  margin-right: 10px;
}
.hide-on-desktop {
  display: none !important;
}
.rating-stars {
  display: block;
  position: relative;
  width: 125px;
  height: 30px;
}
.rating-stars .fg-start-wrapper {
  display: block;
  position: absolute;
  overflow: hidden;
  z-index: 3;
  height: 30px;
  background-color: #fff;
  width: 100%;
}
.rating-stars .fg-stars {
  display: block;
  position: absolute;
  width: 125px;
  z-index: 2;
  height: 30px;
  overflow: hidden;
}
.rating-stars .fg-stars .star {
  color: #0033a1 !important;
  background-color: #fff;
}
.rating-stars .bg-stars {
  display: block;
  position: absolute;
  width: 125px;
  z-index: 1;
}
.rating-stars .bg-stars .star {
  color: #667887;
  background-color: #fff;
}
.rating-stars .star {
  font-family: 'icons2014';
  vertical-align: middle;
  display: inline-block;
  float: left;
  font-size: 24px;
  width: 25px;
  height: 30px;
}
.rating-stars.small {
  width: 85px;
  height: 25px;
  margin: 0;
  margin-top: 5px;
}
.rating-stars.small .fg-start-wrapper {
  height: 25px;
}
.rating-stars.small .fg-stars {
  width: 85px;
  height: 25px;
}
.rating-stars.small .bg-stars {
  width: 85px;
}
.rating-stars.small .star {
  font-size: 18px;
  width: 17px;
  height: 25px;
}
#main_popup_dp {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
  left: 0;
  top: 68px;
  display: flex;
  justify-content: center;
}
#block_shadow_popup {
  background-color: #0e0e0e;
  opacity: 0.5;
  width: 100%;
  height: 110%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#popup_container {
  width: 100%;
  max-width: 1000px;
  background-color: white;
  position: relative;
  top: 70px;
  z-index: 10002;
  height: 1px;
}
#popup_container.error {
  max-width: 300px;
}
#popup_container.error .popup_dp_button_go_shopping_cart {
  max-width: 220px;
  width: 100%;
}
#popup_container.error .popup_dp_button_go_shopping_cart:hover {
  cursor: pointer;
}
#popup_close {
  position: absolute;
  top: -13px;
  right: -8px;
  cursor: pointer;
  border: 2px solid #3b3b3b;
  border-radius: 30px;
  width: 30px;
  height: 30px;
  background-color: white;
  z-index: 1;
}
#popup_close:before,
#popup_close:after {
  content: "";
  position: absolute;
  background-color: black;
  height: 4px;
  width: 23px;
  top: 13px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 4px;
}
#popup_close:after {
  transform: rotate(45deg);
}
#popup_content_dp {
  width: 100%;
  max-width: 993px;
  position: absolute;
  border-radius: 10px;
  border: 1px solid #3b3b3b;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
#popup_title {
  width: 100%;
  height: 40px;
  background-color: #dbe1e4;
  font-size: 18px;
  font-weight: bold;
  color: black;
  border-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
}
#popup_title h1 {
  text-transform: none;
  margin: 0;
  padding: 0;
  font-family: 'Source Sans Pro', sans-serif;
  padding-left: 20px;
  line-height: 40px;
  font-size: 100%;
  color: black;
}
#about_book_shopping_cart {
  width: 100%;
  max-width: 993px;
  padding: 10px 0 10px 0;
  background-color: #FFFFFF;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
}
#popup_book_description {
  overflow: hidden;
  padding: 0 20px 20px 20px;
}
.pbd_title_isbn_price {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 24px;
  color: #323232;
  float: left;
  margin-right: 30px;
  max-width: 390px;
  width: 100%;
}
.pbd_title_isbn_price.pbd_big {
  font-size: 20px;
}
#author_isbn_style {
  font-size: 18px;
}
#pbd_price_style {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 54px;
  font-weight: bold;
  color: #0033a1;
  margin-top: 25px;
  margin-bottom: 35px;
}
#popup_main_button {
  display: block;
  width: 180px;
  height: 22px;
  line-height: 22px;
  padding: 18px 30px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 24px;
  font-weight: bold;
  background-color: #0033a1 !important;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  float: left;
}
#popup_main_button:hover,
#popup_main_button:focus {
  background-color: #00236e !important;
}
#pbd_cover {
  width: 225px;
  height: 250px;
  float: left;
  padding-right: 20px;
}
#pbd_cover img {
  width: auto;
  height: 250px;
  max-width: 235px;
  float: right;
  display: block;
}
.author_js_data {
  font-weight: bold;
}
.popup_condition_book {
  display: block;
  border-radius: 3px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 11px;
  line-height: 18px;
  font-weight: bold;
  background-color: #0033a1;
  color: white;
  text-transform: capitalize;
  padding: 0 6px;
  float: left;
}
#dp_popup_shopping_cart {
  width: 240px;
  height: 250px;
  float: left;
  padding-left: 20px;
  border-left: 1px solid #dee4e6;
}
#shopping_cart_tittle {
  overflow: hidden;
  margin: 0 0 10px 0;
}
#sc_label {
  float: left;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  color: #495358;
}
#sc_icon {
  float: right;
}
#sc_icon .hub-icon {
  font-family: 'icons2014', Verdana, Tahoma sans-serif;
  line-height: 24px;
}
#shopping_cart_list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 140px;
  overflow: auto;
}
.item_in_cart_dp {
  padding: 5px 0;
  border-bottom: 1px solid #dee4e6;
  display: block;
  overflow: hidden;
}
.link_item_shopping_cart_pdp {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
}
.pbd_small_cover {
  width: 32px;
  height: 32px;
  float: left;
  overflow: hidden;
}
.pbd_small_cover img {
  width: 100%;
}
.item_description_sc {
  float: left;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  line-height: 12px;
  font-weight: bold;
  color: #323232;
  width: 180px;
  margin-left: 7px;
}
.sc_list_condition_book {
  font-weight: normal;
  line-height: 16px;
  float: left;
  width: 85px;
  margin-right: 10px;
  text-transform: capitalize;
}
.sc_list_condition_book.sc_new {
  text-transform: uppercase;
}
.small_list_title_book {
  display: block;
}
.condition_price_book_container {
  overflow: hidden;
  margin-top: 7px;
}
.sc_small_price_style {
  float: right;
  font-weight: bold;
  text-align: right;
}
.popup_dp_button_go_shopping_cart {
  display: block;
  width: 199px;
  height: 20px;
  padding: 10px 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  line-height: 18px;
  font-weight: bold;
  background-color: #0033a1;
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 10px;
  text-align: center;
  float: left;
  margin-top: 10px;
}
.popup_dp_button_go_shopping_cart:hover,
.popup_dp_button_go_shopping_cart:focus {
  background-color: #00236e !important;
  text-decoration: none;
  color: white;
}
#total_price_popup {
  margin: 5px 0 0 0;
  overflow: hidden;
}
.total_price_label_popup {
  float: left;
  width: 134px;
}
.total_price_sum_popup {
  float: right;
  text-align: right;
  padding-right: 0;
}
h3 {
  text-transform: none;
  background: 0;
  background: none;
  margin: 0;
  padding: 0;
  display: block;
}
.recommendations-pane {
  padding-top: 5px !important;
}
ul.req-book-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.req-book-list > li.req-book-cell {
  position: relative;
  float: left;
  width: 145px;
  height: 240px;
  margin-top: 5px !important;
}
.req-book-block {
  height: 205px;
}
.req-book-block-bottom {
  height: 0;
}
div#required_books .recommendations-pane h3,
div#featured_books .recommendations-pane h3 {
  font-size: 12px;
}
div#featured_books {
  width: 100%;
  max-width: 993px;
  height: 280px;
  background: white;
  border-radius: 0 0 10px 10px;
}
div#featured_books .recommendations-pane {
  padding-top: 5px !important;
  border-radius: 0 0 10px 10px;
}
div#featured_books ul.req-book-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
div#featured_books ul.req-book-list > li.req-book-cell {
  position: relative;
  float: left;
  width: 145px;
  height: 232px !important;
  margin: 10px 0 12px 15px !important;
}
div#featured_books ul.req-book-list > li.req-book-cell .req-book-block {
  margin-top: 0;
  -webkit-transition: margin-top 0.1s ease, width 0.1s ease;
  -o-transition: margin-top 0.1s ease, width 0.1s ease;
  transition: margin-top 0.1s ease, width 0.1s ease;
}
div#featured_books ul.req-book-list > li.req-book-cell .req-book-block:hover {
  -webkit-transition: margin-top 0.3s ease, width 0.3s ease;
  -o-transition: margin-top 0.3s ease, width 0.3s ease;
  transition: margin-top 0.3s ease, width 0.3s ease;
}
div#featured_books ul.req-book-list > li.req-book-cell:last-child {
  margin-right: 10px !important;
}
.hover-section:hover,
.hover-section.focused {
  height: 366px;
  -webkit-transition: all 0.3s ease !important;
  -o-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
}
.hover-section:hover .req-book-block,
.hover-section.focused .req-book-block {
  height: 260px;
}
.hover-section:hover .req-book-block-bottom,
.hover-section.focused .req-book-block-bottom {
  height: 135px;
}
.hover-section:hover.bpc-1,
.hover-section.focused.bpc-1 {
  height: 263px;
}
.hover-section:hover.bpc-1 .req-book-block-bottom,
.hover-section.focused.bpc-1 .req-book-block-bottom {
  height: 35px;
}
.hover-section:hover.bpc-2,
.hover-section.focused.bpc-2 {
  height: 304px;
}
.hover-section:hover.bpc-2 .req-book-block-bottom,
.hover-section.focused.bpc-2 .req-book-block-bottom {
  height: 75px;
}
.hover-section:hover.bpc-3,
.hover-section.focused.bpc-3 {
  height: 345px;
}
.hover-section:hover.bpc-3 .req-book-block-bottom,
.hover-section.focused.bpc-3 .req-book-block-bottom {
  height: 115px;
}
.hover-section:hover.bpc-4,
.hover-section.focused.bpc-4 {
  height: 386px;
}
.hover-section:hover.bpc-4 .req-book-block-bottom,
.hover-section.focused.bpc-4 .req-book-block-bottom {
  height: 155px;
}
.hover-section:hover.bpc-5,
.hover-section.focused.bpc-5 {
  height: 427px;
}
.hover-section:hover.bpc-5 .req-book-block-bottom,
.hover-section.focused.bpc-5 .req-book-block-bottom {
  height: 200px;
}
#books_we_recommend_in_popup,
#my_coursebooks_popup {
  width: 100%;
  max-width: 1000px;
  overflow: hidden;
}
#books_we_recommend_in_popup .rec-title {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #323232;
  text-transform: uppercase;
  display: block;
  margin: 10px 0 0 0;
  padding: 0 0 3px 0;
  border-bottom: 1px solid #dee4e6;
  background: none;
}
#my_coursebooks_popup {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  color: #323232;
  text-transform: uppercase;
  display: block;
  margin: 15px 0 0 0;
  padding: 0 0 3px 0;
  border-bottom: 1px solid #dee4e6;
  background: none;
}
#bwr_popup_list_book,
#bic_popup_list_book {
  margin: 10px 0 0 0;
  padding: 0;
  overflow: hidden;
}
.bwr_popup_item_container {
  float: left;
  width: 126px;
  margin-left: 4px;
  list-style: none;
  padding: 2px 0 0 2px;
}
.bwr_popup_item_container:first-child {
  margin-left: 0;
}
.bwr_popup_item_cover {
  display: block;
  width: 106px;
  height: 110px;
  line-height: 117px;
  vertical-align: middle;
  margin-bottom: 15px;
}
.bwr_popup_item_cover img {
  width: 76px;
  height: 110px;
  padding: 3px;
  vertical-align: middle;
  -webkit-box-shadow: 0 0 2px 2px #cccccc;
  box-shadow: 0 0 2px 2px #cccccc;
  border: 0;
}
.bwr_popup_title {
  margin: 0;
  padding: 0;
  text-transform: none;
  background: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 90%;
  width: 100px;
  font-weight: bold;
}
.bwr_popup_title_link {
  color: black !important;
}
.bwr_popup_author {
  margin: 0;
  padding: 0;
  text-transform: none;
  background: none;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 90%;
  color: #33393d !important;
  font-weight: bold;
  width: 100px;
}
#required_books {
  overflow: visible !important;
  height: 275px !important;
  padding-bottom: 0;
}
#required_books.ready {
  height: 280px !important;
  overflow: visible !important;
  -webkit-transition: top 1.3s ease !important;
  -o-transition: top 1.3s ease !important;
  transition: top 1.3s ease !important;
}
#required_books h2 {
  display: none;
}
#required_books .recommendations-pane {
  margin-left: 1px !important;
}
#featured_books {
  padding-top: 0px;
}
.popup_my_courses {
  height: 55px;
  line-height: 55px;
  vertical-align: middle;
  border-radius: 10px;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  padding: 0 35px;
  text-align: center;
  border: 1px solid #BDC3C7;
  font-size: 16px;
  font-weight: 400;
  color: #33393d;
  background-color: #fff;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(189,195,199,0.5);
  box-shadow: 0px 1px 1px 0px rgba(189,195,199,0.5);
}
.popup_my_courses:hover {
  text-decoration: none !important;
  border: 1px solid #0033a1 !important;
  color: #0033a1 !important;
}
#books_in_course {
  width: 100%;
  max-width: 960px;
  overflow: hidden;
  display: flex;
}
#course_books_popup {
  display: inline;
  width: 75%;
  float: right;
}
#my_courses_popup {
  display: inline;
  width: 25%;
  float: left;
  padding-top: 50px;
  padding-left: 10px;
}
.item-in-cart {
  pointer-events: none;
  cursor: default;
}
