@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");
#ajs-maintitle *, #ajs * {
  font-family: "Roboto", sans-serif; }

#ajs a {
  color: #0071BC; }

input[type=checkbox] {
  min-width: 1.2em;
  max-width: 1.2em; }

.input-container[type=range] {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .input-container[type=range] label {
    width: 100%;
    margin-bottom: 0.2em; }
  .input-container[type=range] > input[type=range] {
    width: 10%;
    -webkit-box-flex: 10;
    -webkit-flex: 10 0 auto;
        -ms-flex: 10 0 auto;
            flex: 10 0 auto; }
  .input-container[type=range] > input[type=number] {
    margin-left: 0.5em;
    width: 4em;
    min-width: 4em;
    max-width: 4em; }

.input-container.filtered-out, .input-container.province-filtered-out, .input-container.county-filtered-out {
  display: none; }

#ajs-sidebar .input-container.filtered-out, #ajs-sidebar .input-container.province-filtered-out, #ajs-sidebar .input-container.county-filtered-out {
  display: none; }

#ajs-sidebar .input-container.emphasised label {
  font-size: 14px; }
  #ajs-sidebar .input-container.emphasised label::before {
    content: " ";
    position: absolute;
    right: -28px;
    top: -7px;
    background-image: url("svg/star-active.svg");
    -webkit-background-size: contain;
            background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px; }

#ajs-sidebar .input-container.child {
  margin-left: 1.25em; }

#ajs-sidebar .sidebar-filter-no-results {
  color: #C00;
  font-style: italic;
  display: none;
  margin-left: 1em; }

#ajs-sidebar .no-results .sidebar-filter-no-results {
  display: block; }

#ajs-sidebar .sidebar-filter-active {
  color: #C93;
  font-style: italic;
  display: none;
  margin-left: 1em;
  margin-bottom: 0.3em; }

#ajs-sidebar .filtered-results .sidebar-filter-active {
  display: block; }

#ajs-sidebar .category:not(.category--subliminal) h4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin: 0.5em 0em; }

#ajs-sidebar .category:not(.category--subliminal).category--flat h4 {
  margin-left: 0.275em; }

#ajs-sidebar .category:not(.category--subliminal) .title {
  color: #474747;
  font-size: 13px;
  font-weight: normal;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; }

#ajs-sidebar .category:not(.category--subliminal).category--flat .title {
  opacity: 0.7; }

#ajs-sidebar .category:not(.category--subliminal) .footnote {
  color: #888; }

#ajs-sidebar .category:not(.category--subliminal) .collapser {
  height: 5px;
  width: 5px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  margin-bottom: 2px;
  margin-right: .6em;
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
  opacity: .5;
  -webkit-transition: .15s all;
  transition: .15s all; }

#ajs-sidebar .category:not(.category--subliminal) .input-container, #ajs-sidebar .category:not(.category--subliminal) .footnote {
  margin-left: 0.65em; }

#ajs-sidebar .category:not(.category--subliminal).category--flat .input-container, #ajs-sidebar .category:not(.category--subliminal).category--flat .footnote {
  margin-left: 0.325em; }

#ajs-sidebar .category:not(.category--subliminal).collapsed .input-container, #ajs-sidebar .category:not(.category--subliminal).collapsed .footnote {
  display: none; }

#ajs-sidebar .category:not(.category--subliminal).collapsed .collapser {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: .3; }

#ajs-sidebar .category.category--subliminal h4, #ajs-sidebar .category.category--subliminal .title, #ajs-sidebar .category.category--subliminal .collapser {
  display: none; }

@-webkit-keyframes barberpole {
  0% {
    background-position: 0px 0px; }
  100% {
    background-position: 180px 90px; } }

@keyframes barberpole {
  0% {
    background-position: 0px 0px; }
  100% {
    background-position: 180px 90px; } }

#ajs-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }
  #ajs-modal.active {
    pointer-events: auto;
    opacity: 1; }
    #ajs-modal.active .box {
      -webkit-transform: translate(-50%, -50%) scale(1);
          -ms-transform: translate(-50%, -50%) scale(1);
              transform: translate(-50%, -50%) scale(1); }
  #ajs-modal .box {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    background-color: white;
    -webkit-border-radius: 2px;
            border-radius: 2px;
    -webkit-box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 12px 15px 0px rgba(0, 0, 0, 0.25);
    -webkit-transform: translate(-50%, -50%) scale(1.04);
        -ms-transform: translate(-50%, -50%) scale(1.04);
            transform: translate(-50%, -50%) scale(1.04);
    -webkit-transition: -webkit-transform 0.1s ease-out;
    transition: -webkit-transform 0.1s ease-out;
    transition: transform 0.1s ease-out;
    transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
    font-family: "Roboto", sans-serif; }
  #ajs-modal .close-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
    #ajs-modal .close-container .close {
      display: inline-block;
      margin: 3px;
      padding: 3px;
      cursor: pointer;
      background-image: url(svg/close.svg);
      -webkit-background-size: cover;
              background-size: cover;
      background-color: #DDD;
      width: 1em;
      min-width: 1em;
      max-width: 1em;
      height: 1em;
      min-height: 1em;
      max-height: 1em; }
  #ajs-modal h2 {
    margin-top: 1.5em;
    padding: 0px 10px;
    text-align: center;
    color: #FFF; }
  #ajs-modal ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1em 2em; }
    #ajs-modal ul li {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      height: 185px;
      width: 120px;
      margin: 0px 10px;
      cursor: pointer;
      padding-top: 15px;
      -webkit-transition: .1s all ease-in-out;
      transition: .1s all ease-in-out;
      -webkit-border-radius: 2px;
              border-radius: 2px; }
    #ajs-modal ul .preview {
      height: 155px;
      width: 100%;
      -webkit-background-size: contain;
              background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      -webkit-border-radius: 2px;
              border-radius: 2px; }
    #ajs-modal ul .title {
      text-align: center;
      color: #FFF; }

#ajs-maintitle {
  padding-bottom: 1em;
  margin-bottom: 2em; }
  #ajs-maintitle .branding {
    width: 222px;
    height: 160px;
    margin-left: 1em;
    display: inline-block;
    -webkit-background-size: contain;
            background-size: contain;
    background-position: center;
    background-repeat: no-repeat; }
  #ajs-maintitle .page-description {
    width: 715px;
    margin-left: 1em;
    display: inline-block;
    line-height: 1.5;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    #ajs-maintitle .page-description h1 {
      font-size: 24px;
      margin: .5em 0 0;
      font-weight: 500; }
      #ajs-maintitle .page-description h1 span {
        background: #FFFC31;
        font-size: .8em;
        padding: 5px 10px;
        -webkit-border-radius: 2px;
                border-radius: 2px;
        font-weight: bold;
        color: #1a8d9a; }
    #ajs-maintitle .page-description p {
      line-height: 1.5;
      margin-top: .5em;
      color: #FFF; }
      #ajs-maintitle .page-description p:nth-of-type(2) {
        margin-bottom: .3em;
        text-align: right; }
    #ajs-maintitle .page-description a:last-child {
      margin-left: 16px; }
  #ajs-maintitle .cao-description h1 {
    color: #FFF; }
  #ajs-maintitle .cao-description a {
    color: #FFF;
    font-size: 14px;
    padding: 8px 16px;
    background-color: #20acbc;
    border: 2px solid #20acbc;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in; }
    #ajs-maintitle .cao-description a:hover {
      background-color: #22b6c7; }
  #ajs-maintitle .plc-description h1 {
    color: #FFF; }
  #ajs-maintitle .plc-description a {
    color: #FFF;
    font-size: 14px;
    padding: 8px 16px;
    background-color: #908fdb; }
    #ajs-maintitle .plc-description a:hover {
      background-color: #9a99e0; }
  #ajs-maintitle .conserve-link {
    display: none !important; }

.cao-background {
  background-color: #1a8d9a; }

.plc-background {
  background-color: #6260cb; }

@media screen and (max-width: 1020px) {
  #ajs-maintitle .page-description {
    width: 493px; }
    #ajs-maintitle .page-description p:nth-of-type(2) {
      text-align: left; } }

@media screen and (max-width: 767px) {
  #headerwrapper #navbar {
    border-bottom: none; }
  #ajs-maintitle {
    padding-bottom: 0; }
    #ajs-maintitle .branding {
      width: 100%;
      height: 110px;
      margin-left: 0; }
    #ajs-maintitle .page-description {
      width: 100%;
      margin-left: 0; }
      #ajs-maintitle .page-description h1 {
        visibility: hidden;
        font-size: 0; }
      #ajs-maintitle .page-description p:nth-of-type(1) {
        display: none; }
      #ajs-maintitle .page-description p:nth-of-type(2) {
        text-align: left;
        margin-bottom: 0; }
      #ajs-maintitle .page-description p a {
        width: 100%;
        display: block;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
        font-size: 16px; }
        #ajs-maintitle .page-description p a:last-child {
          border-top: 1px solid #1B909C;
          margin-left: 0; }
        #ajs-maintitle .page-description p a.conserve-link {
          display: none; }
      #ajs-maintitle .page-description p .conserve-link {
        display: none !important; } }

@media screen and (max-width: 480px) {
  #ajs-maintitle .branding {
    height: 75px; } }

#ajs-sidebar {
  width: 250px;
  min-width: 245px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFF;
  z-index: 20;
  background: #F4F4F4;
  font-size: 13px;
  font-weight: normal;
  color: #474747; }
  #ajs-sidebar .ajs-filter {
    margin-top: 0.5em;
    padding-bottom: 0.5em; }
    #ajs-sidebar .ajs-filter:last-child {
      padding-bottom: 5em; }
    #ajs-sidebar .ajs-filter.concealed--by-type {
      display: none; }
    #ajs-sidebar .ajs-filter.college {
      padding: 0; }
    #ajs-sidebar .ajs-filter .caret {
      width: 0.8em;
      min-width: 0.8em;
      max-width: 0.8em;
      height: 0.8em;
      min-height: 0.8em;
      max-height: 0.8em;
      border-left: 3px solid rgba(255, 255, 255, 0.7);
      border-bottom: 3px solid rgba(255, 255, 255, 0.7);
      margin-right: 0.5em;
      -webkit-transform: rotate(-225deg) translate(0.3em, 0);
          -ms-transform: rotate(-225deg) translate(0.3em, 0);
              transform: rotate(-225deg) translate(0.3em, 0);
      -webkit-transition: border-color 0.2s, -webkit-transform 0.2s;
      transition: border-color 0.2s, -webkit-transform 0.2s;
      transition: transform 0.2s, border-color 0.2s;
      transition: transform 0.2s, border-color 0.2s, -webkit-transform 0.2s; }
    #ajs-sidebar .ajs-filter h3:hover .caret {
      border-color: rgba(255, 255, 255, 0.85); }
    #ajs-sidebar .ajs-filter.ajs-filter--collapsed {
      padding-bottom: 0; }
      #ajs-sidebar .ajs-filter.ajs-filter--collapsed .caret {
        -webkit-transform: rotate(-45deg) translate(0, -0.3em);
            -ms-transform: rotate(-45deg) translate(0, -0.3em);
                transform: rotate(-45deg) translate(0, -0.3em); }
      #ajs-sidebar .ajs-filter.ajs-filter--collapsed .box {
        display: none; }
    #ajs-sidebar .ajs-filter .filter-clear__wrapper {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      text-align: right; }
    #ajs-sidebar .ajs-filter input[type=checkbox]:not(old) {
      opacity: 0; }
    #ajs-sidebar .ajs-filter input[type=checkbox]:checked + label::after {
      content: "\2713";
      color: #FFF;
      font-size: 11px;
      text-align: center;
      line-height: 13px;
      font-weight: bold; }
    #ajs-sidebar .ajs-filter .box {
      padding-left: 13.5px; }
      #ajs-sidebar .ajs-filter .box .college {
        padding: 0 !important; }
      #ajs-sidebar .ajs-filter .box .sector.inputs {
        padding-left: 3px; }
    #ajs-sidebar .ajs-filter .hint {
      border-bottom: 1px solid #E2E2E2;
      padding-bottom: .5em;
      margin-bottom: .5em; }
    #ajs-sidebar .ajs-filter .region .input-container:nth-of-type(3) label::before {
      content: "(excl Dublin)";
      font-size: 11px;
      font-style: italic;
      position: absolute;
      top: 2px;
      right: -64px;
      color: #C93; }
  #ajs-sidebar h3:not(.print) {
    font-size: 14px;
    font-weight: 500;
    color: #FFF;
    margin-top: 0.3em;
    margin-bottom: 0.8em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 8px 15px;
    cursor: pointer; }
    #ajs-sidebar h3:not(.print) span {
      font-weight: normal;
      font-size: 13px;
      -webkit-transition: color 0.1s ease-in-out;
      transition: color 0.1s ease-in-out; }
    #ajs-sidebar h3:not(.print) .active {
      color: #FFF; }
      #ajs-sidebar h3:not(.print) .active:hover {
        text-decoration: underline; }
    #ajs-sidebar h3:not(.print) input[type=text] {
      border: 1px solid #CCC;
      -webkit-border-radius: 3px;
              border-radius: 3px;
      padding: 0.3em 0.7em;
      margin-left: 0.5em;
      font-size: 14px;
      color: #444;
      outline: 0;
      width: 10%;
      -webkit-box-flex: 10;
      -webkit-flex: 10 0 auto;
          -ms-flex: 10 0 auto;
              flex: 10 0 auto; }
  #ajs-sidebar .title-box .title {
    font-size: 1.1em;
    color: #808080; }
  #ajs-sidebar #clear-all-top {
    -webkit-border-radius: 3px;
            border-radius: 3px;
    background-color: #EAEAEA;
    color: #444;
    padding: 0.3em 0.8em;
    font-size: 0.85em;
    cursor: normal;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s; }
  #ajs-sidebar.active #clear-all-top {
    opacity: 1;
    pointer-events: auto; }
  #ajs-sidebar #id_txt {
    padding: 0.3em 0.7em;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    border: 1px solid #CCC;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 16px;
    width: 99%;
    margin-left: 1px;
    margin-right: 1px;
    margin-bottom: 0.5em;
    outline: 0;
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out; }
  #ajs-sidebar .input-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0.6em; }
    #ajs-sidebar .input-container.filtered-out--by-type {
      display: none; }
  #ajs-sidebar input[type=checkbox] {
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 0.4em;
    margin-left: 0; }
    #ajs-sidebar input[type=checkbox] + label {
      position: relative; }
      #ajs-sidebar input[type=checkbox] + label::after {
        content: " ";
        -webkit-border-radius: 1px;
                border-radius: 1px;
        border: 1px solid #bbb;
        width: 12px;
        height: 12px;
        position: absolute;
        top: 0;
        left: -21px;
        background: #FFF; }
      #ajs-sidebar input[type=checkbox] + label:hover {
        cursor: pointer; }
  #ajs-sidebar .large:not(.expanded) .box {
    max-height: 250px;
    overflow-x: hidden; }
  #ajs-sidebar .show-more, #ajs-sidebar .show-less {
    display: none !important; }
  #ajs-sidebar .large:not(.expanded) .show-more, #ajs-sidebar .large.expanded .show-less {
    display: block;
    cursor: pointer;
    font-size: 0.9em;
    margin: 0.5em 0;
    color: #0071BC; }
  #ajs-sidebar .ajs-sidebar-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 0.8em; }
    #ajs-sidebar .ajs-sidebar-top h2 {
      font-size: 1.4em;
      color: #666;
      font-weight: normal;
      padding-left: 15px;
      margin-bottom: 0; }
  #ajs-sidebar .input-container[type=range] {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 1px;
    margin-right: 15px; }
  #ajs-sidebar div:nth-of-type(4) .show-more {
    display: none !important; }

.show-less-top {
  display: none !important; }

.search-wrapper {
  margin-right: 15px; }

#ajs-sidebar .inputs.lang-connect .input-container:nth-child(3) {
  border-bottom: 1px solid #DDD;
  padding-bottom: 0.5em; }

/*#id_undefined_irish_skills,
	label[for=id_undefined_irish_skills]
		display: none*/
body.filters--open .cpbulba-header, body.filters--open .cpbulba-header--mobile {
  opacity: 0;
  pointer-events: none; }

/*.done
	@include button-done()
	position: fixed
	bottom: 0
	left: 0
	right: 0
	width: 768px
	margin: auto !important*/
#ajs-sidebar-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  padding: 0.5em;
  z-index: 25;
  background-color: #FFF; }
  #ajs-sidebar-mobile-header .done {
    -webkit-border-radius: 3px;
            border-radius: 3px;
    color: #FFF;
    padding: 16px 14px;
    font-size: 24px;
    text-align: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 2px solid #0071BC;
    background-color: #0071BC;
    cursor: pointer;
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
    font-size: 20px;
    padding: 18px 26px;
    margin-right: 1em;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    #ajs-sidebar-mobile-header .done:hover {
      background-color: #1c8ad4; }
  #ajs-sidebar-mobile-header .report {
    display: none; }
  #ajs-sidebar-mobile-header .total {
    font-weight: bold;
    margin: 0 0.3em; }
  #ajs-sidebar-mobile-header h3 {
    margin: 0;
    padding: 0.5em;
    text-shadow: 0 0 5px #1a8d9a; }
  #ajs-sidebar-mobile-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -10;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background-position: 0px 0px;
    -webkit-background-size: 90px 90px;
            background-size: 90px 90px;
    background-image: -webkit-linear-gradient(45deg, #AAFFAA 25%, #86e3a6 25%, #86e3a6 50%, #AAFFAA 50%, #AAFFAA 75%, #86e3a6 75%, #86e3a6);
    background-image: linear-gradient(45deg, #AAFFAA 25%, #86e3a6 25%, #86e3a6 50%, #AAFFAA 50%, #AAFFAA 75%, #86e3a6 75%, #86e3a6);
    -webkit-animation: barberpole 0.5s linear infinite;
            animation: barberpole 0.5s linear infinite;
    -webkit-border-radius: 0.25em;
            border-radius: 0.25em; }
    #ajs-sidebar-mobile-header .overlay.busy {
      opacity: 0.7; }

#ajs-sidebar a.done, #ajs a.done {
  display: none;
  color: #FFF !important;
  margin: 0.5em; }
  #ajs-sidebar a.done:hover, #ajs a.done:hover {
    color: #FFF; }

@media screen and (max-width: 1020px) {
  .noscroll {
    overflow: hidden; }
  #ajs.sidebar-open > #ajs-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 100px 0px;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    width: 100%;
    min-width: 768px;
    max-height: 100%;
    height: 100vh;
    overflow-y: scroll;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  #ajs-sidebar-mobile-header {
    width: 100%;
    min-width: 768px;
    margin: 0 auto;
    padding-right: 17px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: #1a8d9a; }
    #ajs-sidebar-mobile-header h3 {
      color: #FFF; }
  .clear-all {
    background-color: #FFF;
    color: #444; } }

#plc #ajs-sidebar-mobile-header {
  background-color: #6260cb; }

@media screen and (max-width: 767px) {
  #ajs.sidebar-open > #ajs-sidebar {
    width: 100%;
    min-width: 480px; }
  #ajs-sidebar-mobile-header {
    width: 100%;
    min-width: 480px; } }

@media screen and (max-width: 479px) {
  #ajs.sidebar-open > #ajs-sidebar {
    width: 100%;
    min-width: 320px; }
  #ajs-sidebar-mobile-header {
    width: 100%;
    min-width: 320px; }
    #ajs-sidebar-mobile-header .done {
      font-size: 16px;
      padding: 16px 16px; } }

#outerwrapper {
  position: static !important; }
  #outerwrapper > #contentsector-static {
    background: #FFF; }

#ajs-maintitle {
  padding-top: 1em; }

#ajs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 12px; }

#ajs-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  width: 100%; }

#ajs-table {
  position: relative;
  font-size: 13.3px; }

#ajs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  background-position: 0px 0px;
  -webkit-background-size: 90px 90px;
          background-size: 90px 90px;
  background-image: -webkit-linear-gradient(45deg, rgba(170, 255, 170, 0.8) 25%, rgba(170, 255, 170, 0.5) 25%, rgba(170, 255, 170, 0.5) 50%, rgba(170, 255, 170, 0.8) 50%, rgba(170, 255, 170, 0.8) 75%, rgba(170, 255, 170, 0.5) 75%, rgba(170, 255, 170, 0.5));
  background-image: linear-gradient(45deg, rgba(170, 255, 170, 0.8) 25%, rgba(170, 255, 170, 0.5) 25%, rgba(170, 255, 170, 0.5) 50%, rgba(170, 255, 170, 0.8) 50%, rgba(170, 255, 170, 0.8) 75%, rgba(170, 255, 170, 0.5) 75%, rgba(170, 255, 170, 0.5));
  -webkit-animation: barberpole 0.5s linear infinite;
          animation: barberpole 0.5s linear infinite; }
  #ajs-overlay.busy {
    opacity: 0.7; }

#ajs-window {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

body {
  position: relative; }

#ajs-options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-bottom: 0.3em;
  width: 100%;
  margin-top: .5em; }

#ajs-options-placeholder {
  display: none;
  margin-top: 1em; }

#ajs-bottom-clearall {
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFF;
  border-top: 1px solid #CCC;
  padding: 0.5em;
  z-index: 30; }

#ajs-options-clearall {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.clear-all {
  height: 32px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  border: 2px solid #0071BC;
  background-color: #0071BC;
  cursor: pointer;
  color: #FFF;
  padding: 0 16px;
  font-size: 13px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  white-space: nowrap;
  margin-right: 10px; }
  .clear-all:hover {
    background-color: #1c8ad4; }

#ajs-report {
  width: 98%;
  margin-bottom: 0.5em;
  margin-left: -1%;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: normal;
  color: #333; }
  #ajs-report .total {
    font-weight: bold;
    width: 2.4em; }

#ajs-options-buttons, #ajs-sort {
  width: 1px;
  position: relative; }

#ajs-sort div {
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -0.5em; }
  #ajs-sort div span {
    margin-right: 0.5em;
    white-space: nowrap; }
  #ajs-sort div select {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    padding: .25em .4em .2em;
    border: 1px solid #ccc; }
    #ajs-sort div select:hover {
      border-color: #aaa; }

#ajs-options-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline; }

#ajs-filter {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  margin-right: 0.5em; }
  #ajs-filter > .open {
    display: inline-block;
    padding: 8px 20px 8px 35px;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    border: 2px solid #0071BC;
    background-color: #0071BC;
    color: #FFF;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: .5em 0;
    -webkit-transition: background-color 0.2s ease-in;
    transition: background-color 0.2s ease-in;
    position: relative; }
    #ajs-filter > .open:hover {
      background-color: #1c8ad4; }
    #ajs-filter > .open:before {
      content: "";
      position: absolute;
      top: 8px;
      left: 9px;
      width: 17px;
      height: 17px;
      background: url("images/icons/filter.png");
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }

@media screen and (max-width: 1020px) {
  .clear-all {
    background-color: #F5F5F5;
    color: #666; }
  #ajs-report {
    width: 100%; }
  #ajs-options-buttons, #ajs-sort {
    width: initial; }
  #ajs-sort div {
    margin-top: 0; }
    #ajs-sort div span {
      position: absolute;
      top: -25px;
      right: 0; }
    #ajs-sort div select {
      background-color: #F1F1F1;
      padding: 8px 0 8px 20px;
      border: 0;
      color: #444;
      font-weight: 500;
      font-size: 16px;
      -webkit-border-radius: 3px;
              border-radius: 3px; }
      #ajs-sort div select:hover {
        cursor: pointer;
        background: #F4F4F4; } }

@media screen and (max-width: 479px) {
  #ajs-filter > .open {
    font-size: 14px; }
  #ajs-sort div select {
    font-size: 14px; }
  #ajs.locked:not(.sidebar-open) #ajs-options {
    padding-bottom: 0 !important;
    border-bottom: none !important;
    -webkit-box-shadow: 0px 3px 10px #CCC;
            box-shadow: 0px 3px 10px #CCC; }
    #ajs.locked:not(.sidebar-open) #ajs-options #ajs-report {
      margin-bottom: 0;
      color: #FFF; }
    #ajs.locked:not(.sidebar-open) #ajs-options #ajs-sort select {
      font-size: 14px;
      padding: 6px 0 6px 16px; } }

#ajs-pagination-top, #ajs-pagination-bot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.25em; }
  #ajs-pagination-top a, #ajs-pagination-bot a {
    border-bottom: 2px solid #FFF;
    padding: 0.5em 0.6em 0.3em 0.6em;
    cursor: pointer;
    font-size: 16px;
    -webkit-transition: border-color 0.2s, background-color 0.2s;
    transition: border-color 0.2s, background-color 0.2s; }
    #ajs-pagination-top a:hover, #ajs-pagination-bot a:hover {
      background-color: #F4F4F4;
      border-color: #F4F4F4; }
    #ajs-pagination-top a.current, #ajs-pagination-top a.current:hover, #ajs-pagination-bot a.current, #ajs-pagination-bot a.current:hover {
      border-color: #1F8AF5;
      font-weight: bold; }
    #ajs-pagination-top a.disabled a, #ajs-pagination-bot a.disabled a {
      color: #999; }

#ajs-page-container-top, #ajs-page-container-bot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px; }

#ajs-pagination-top {
  display: none; }

#ajs-content .disabled {
  display: none; }

#ajs s {
  position: relative;
  height: 0; }
  #ajs s#ajs-anchor-sidebar {
    top: -100px;
    display: block; }
  #ajs s#ajs-anchor-options {
    top: -16px; }

.result .tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  cursor: pointer; }
  .result .tag:hover > div {
    opacity: 1; }
  .result .tag > div {
    background-image: url("images/icons/star-sprite-min.png");
    -webkit-background-size: cover;
            background-size: cover;
    width: 1.8em;
    height: 1.8em;
    opacity: .6;
    cursor: pointer; }
    .result .tag > div:hover {
      opacity: 1; }
  .result .tag .tag-message {
    position: absolute;
    left: 5px;
    top: -25px;
    width: 105px;
    padding: .5em .8em;
    background-color: #616161;
    color: #FFF;
    -webkit-border-radius: 3px;
            border-radius: 3px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    z-index: 10; }
  .result .tag > img {
    position: relative;
    display: none;
    width: 2em;
    height: 0;
    margin-right: 2px;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px; }
  .result .tag.active > div {
    background-position: 95%;
    position: relative; }
  .result .tag > img:hover {
    opacity: 0.8; }

.tag.active.changed {
  -webkit-animation: jiggle 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: jiggle 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }

.tag.active {
  position: relative; }

@-webkit-keyframes jiggle {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-3px, 0, 0);
            transform: translate3d(-3px, 0, 0); }
  40%, 60% {
    -webkit-transform: translate3d(3px, 0, 0);
            transform: translate3d(3px, 0, 0); } }

@keyframes jiggle {
  10%, 90% {
    -webkit-transform: translate3d(-1px, 0, 0);
            transform: translate3d(-1px, 0, 0); }
  20%, 80% {
    -webkit-transform: translate3d(2px, 0, 0);
            transform: translate3d(2px, 0, 0); }
  30%, 50%, 70% {
    -webkit-transform: translate3d(-3px, 0, 0);
            transform: translate3d(-3px, 0, 0); }
  40%, 60% {
    -webkit-transform: translate3d(3px, 0, 0);
            transform: translate3d(3px, 0, 0); } }

#ajs-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 1em 1em 0;
  margin-left: 241px; }
  #ajs-nav a {
    -webkit-border-radius: 0.4em;
            border-radius: 0.4em;
    background-color: #E6E6E6;
    color: #555;
    padding: 0.3em 0.9em;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-transform: uppercase; }
    #ajs-nav a.active {
      background-color: #CCC;
      pointer-events: none; }
    #ajs-nav a:not(:last-child) {
      margin-right: 0.5em; }

#ajs-noresults {
  text-align: center;
  font-size: 1.15em; }
  #ajs-noresults > h3 {
    margin-top: 3em;
    font-size: 1.5em;
    font-weight: 500; }
  #ajs-noresults > p {
    color: #666; }
    #ajs-noresults > p:nth-of-type(1) {
      margin-bottom: -0.5em; }
  #ajs-noresults .clear-all {
    display: inline-block;
    padding: 16px 32px;
    font-size: 22px;
    color: #FFF;
    background: #0071BC;
    cursor: pointer;
    margin: 1.5em 0;
    height: auto; }
  #ajs-noresults .clear-all:hover {
    opacity: .9; }

#ajs-results-related > h3 {
  margin: 0.6em 0 0.6em 1em;
  padding: 0.6em 0.3em 0 0.3em;
  color: #444;
  border-top: 2px solid #DDD; }

.row-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.logo-wrapper {
  display: none;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-top: .7em;
  margin-right: 1.5em;
  width: 150px;
  min-width: 150px;
  max-width: 150px; }
  .logo-wrapper img {
    max-width: 150px; }

img {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.row .title a {
  font-weight: 500; }

.row .title .points .text {
  font-weight: bold; }

#ajs-results, #ajs-results-related {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  color: #666;
  border-collapse: collapse; }
  #ajs-results .result, #ajs-results-related .result {
    color: #474747; }
  #ajs-results .college, #ajs-results-related .college {
    padding: 0; }
    #ajs-results .college a:not(.colleges-direct--active), #ajs-results-related .college a:not(.colleges-direct--active) {
      cursor: default;
      pointer-events: none;
      color: #808080; }
    #ajs-results .college a.colleges-direct--active, #ajs-results-related .college a.colleges-direct--active {
      position: relative; }
      #ajs-results .college a.colleges-direct--active::after, #ajs-results-related .college a.colleges-direct--active::after {
        content: ' ';
        position: absolute;
        bottom: -1px;
        margin-left: 5px;
        width: 25px;
        height: 16px;
        background-image: url("../../images/courses/1College Profile.jpg");
        -webkit-background-size: contain;
                background-size: contain;
        background-repeat: no-repeat;
        display: none; }
  #ajs-results .duration > *, #ajs-results .points > *, #ajs-results .qqi > *, #ajs-results .award > *, #ajs-results-related .duration > *, #ajs-results-related .points > *, #ajs-results-related .qqi > *, #ajs-results-related .award > * {
    pointer-events: none; }
  #ajs-results .duration > .pips, #ajs-results-related .duration > .pips {
    width: 3.5em;
    min-width: 3.5em;
    max-width: 3.5em;
    height: 1.3125em;
    min-height: 1.3125em;
    max-height: 1.3125em;
    opacity: .8;
    display: none; }
  #ajs-results .points, #ajs-results-related .points {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    #ajs-results .points > .pt-diff, #ajs-results-related .points > .pt-diff {
      display: none; }
    #ajs-results .points > .sym, #ajs-results-related .points > .sym {
      margin: 0;
      font-weight: bold; }
      #ajs-results .points > .sym.active, #ajs-results-related .points > .sym.active {
        margin-left: 0.15em; }
    #ajs-results .points:after, #ajs-results-related .points:after {
      content: '';
      -webkit-box-ordinal-group: 11;
      -webkit-order: 10;
          -ms-flex-order: 10;
              order: 10;
      margin-left: 0.3em;
      position: relative;
      cursor: default; }
  #ajs-results .points.up:after, #ajs-results-related .points.up:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-bottom: 0.6em solid #39B54A; }
  #ajs-results .points.down:after, #ajs-results-related .points.down:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.6em solid #D41D25; }
  #ajs-results .points .new-this-year, #ajs-results-related .points .new-this-year {
    display: block;
    max-width: 2.2em;
    max-height: 2.2em; }
    #ajs-results .points .new-this-year:not(.active), #ajs-results-related .points .new-this-year:not(.active) {
      display: none; }
  #ajs-results .qqi:not(.active), #ajs-results-related .qqi:not(.active) {
    opacity: 0; }

.tip.up, .tip.down {
  font-weight: bold; }

.sym {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #519647;
  pointer-events: none;
  margin-left: 0.1em;
  margin-right: 0.2em; }

hr.tip {
  margin: 8px 4px;
  border: 0;
  height: 1px;
  background: #CCC; }

#ajs-results .points .text, #ajs-results-related .points .text {
  font-weight: 500; }

#ajs-breadcrumb {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-top: 20px;
  width: 92%; }
  #ajs-breadcrumb .crumb {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, border-color 0.3s; }
    #ajs-breadcrumb .crumb .title {
      display: none;
      padding: 6px 32px 6px 12px;
      background-color: #0071BC;
      margin: 1px;
      -webkit-border-radius: 12px;
              border-radius: 12px;
      -webkit-transition: background-color 0.3s;
      transition: background-color 0.3s;
      text-align: center;
      position: relative; }
      #ajs-breadcrumb .crumb .title .text {
        color: #FFF; }
        #ajs-breadcrumb .crumb .title .text::after {
          content: '\d7';
          position: absolute;
          top: -2px;
          right: 5px;
          font-size: 26px;
          height: 25px;
          width: 20px;
          text-align: center;
          -webkit-transition: .1s ease-in-out;
          transition: .1s ease-in-out;
          pointer-events: all;
          color: #BBB;
          color: #FFF;
          opacity: .8; }
        #ajs-breadcrumb .crumb .title .text:hover::after {
          opacity: 1; }
      #ajs-breadcrumb .crumb .title .background {
        content: '';
        z-index: -10;
        -webkit-border-radius: 12px;
                border-radius: 12px;
        -webkit-transition: border-color 0.3s, background-color 0.3s;
        transition: border-color 0.3s, background-color 0.3s;
        pointer-events: none; }
    #ajs-breadcrumb .crumb .values {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    #ajs-breadcrumb .crumb .value {
      position: relative;
      margin: 1px;
      white-space: nowrap;
      margin-right: 5px;
      margin-bottom: 19px; }
    #ajs-breadcrumb .crumb .label {
      -webkit-border-radius: 12px;
              border-radius: 12px;
      color: #FFF;
      padding: 6px 32px 6px 12px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border: 2px solid #0071BC;
      background-color: #0071BC;
      -webkit-transition: background-color 0.2s ease-in;
      transition: background-color 0.2s ease-in;
      position: relative; }
      #ajs-breadcrumb .crumb .label:hover {
        background-color: #1c8ad4; }
      #ajs-breadcrumb .crumb .label::after {
        content: '\d7';
        position: absolute;
        top: -2px;
        right: 5px;
        font-size: 26px;
        height: 25px;
        width: 20px;
        text-align: center;
        -webkit-transition: .1s ease-in-out;
        transition: .1s ease-in-out;
        pointer-events: all;
        color: #BBB;
        color: #f0f9ff;
        opacity: .7; }
      #ajs-breadcrumb .crumb .label:hover:after {
        opacity: 1; }
  #ajs-breadcrumb .search {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; }
  #ajs-breadcrumb .sector {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  #ajs-breadcrumb .interest {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  #ajs-breadcrumb .region {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  #ajs-breadcrumb .college {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    padding: 0; }
  #ajs-breadcrumb .undefined {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5; }
  #ajs-breadcrumb .other {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6; }

.code::before {
  display: block;
  font-size: 0.75em;
  color: #BBB; }

.result--category-1 .code::before {
  content: 'PLC'; }

.result--category-2 .code::before {
  content: 'CAO'; }

.result--category-3 .code::before {
  content: 'Direct Entry'; }

.result--category-5 .code::before {
  content: 'Apprenticeship'; }

.result--category-6 .code::before {
  content: 'Employment'; }
	
.result--category-10 .code::before {
  content: 'TEP'; }
	
#ajs-sidebar .ajs-filter.cao-reqs h3:not(.print) {
  background-color: #6699cc; }
  #ajs-sidebar .ajs-filter.cao-reqs h3:not(.print) .filter-clear {
    color: #6699cc; }
    #ajs-sidebar .ajs-filter.cao-reqs h3:not(.print) .filter-clear.active {
      color: white; }

#ajs-sidebar .ajs-filter.lang-connect h3:not(.print) {
  position: relative;
  background-color: #f8b47b; }
  #ajs-sidebar .ajs-filter.lang-connect h3:not(.print) .filter-clear {
    color: #f8b47b;
    margin-right: 3em; }
    #ajs-sidebar .ajs-filter.lang-connect h3:not(.print) .filter-clear.active {
      color: white; }
  #ajs-sidebar .ajs-filter.lang-connect h3:not(.print):after {
    content: '';
    position: absolute;
    top: -63px;
    bottom: -63px;
    right: 80px;
    width: 350px;
    background: url("svg/languages-connect.svg");
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center;
    -webkit-animation: languagesspinout 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
            animation: languagesspinout 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }

#ajs-sidebar .ajs-filter.lang-connect.active h3:not(.print):after {
  -webkit-animation: languagesspinin 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
          animation: languagesspinin 0.9s cubic-bezier(0.36, 0.07, 0.19, 0.97) both; }

@-webkit-keyframes languagesspinin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); } }

@keyframes languagesspinin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); } }

@-webkit-keyframes languagesspinout {
  0% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes languagesspinout {
  0% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

/*#ajs-sidebar .ajs-filter.lang-connect.active h3:not(.print):after
  animation: languagesspin 0.9s cubic-bezier(.36,.07,.19,.97) both

	@keyframes languagesspin
		0%
				transform: rotate(0deg)
		100%
				transform: rotate(180deg) */
@media screen and (min-width: 764px) {
  #ajs-sidebar .ajs-filter.lang-connect h3:not(.print):after {
    top: -0.5em;
    right: 0.1em;
    bottom: -0.5em;
    width: 3.36em;
    height: 3.36em; } }

@media screen and (max-width: 764px) {
  .result--category-2 .code::before {
    margin: 0.12em 0.3em; }
  #ajs-sidebar .ajs-filter.lang-connect h3:not(.print):after {
    top: -0.25em;
    right: 0.5em;
    bottom: -0.5em;
    width: 2.5em;
    height: 2.5em; } }

.result .expand {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2; }

.result .award {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1; }

.result .points {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2; }

.result .qqi {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.result .duration {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4; }

.result .award {
  padding-top: 0;
  padding-bottom: 0;
  width: 1em;
  min-width: 1em;
  max-width: 1em;
  height: 1em;
  min-height: 1em;
  max-height: 1em;
  /*.cplevel-0
				color: $award-color-0
			.cplevel-1
				color: $award-color-1
			.cplevel-2
				color: $award-color-2
			.cplevel-3
				color: $award-color-3*/ }
  .result .award .icon {
    font-size: 1.4em; }
  .result .award .cplevel-0 {
    display: none; }
  .result .award .cplevel-4 {
    color: #F57F4A; }
  .result .award .cplevel-5 {
    color: #F89748; }
  .result .award .cplevel-6 {
    color: #FEBE0F; }
  .result .award .cplevel-7 {
    color: #E7BF1F; }
  .result .award .cplevel-8 {
    color: #CEBF2B; }
  .result .award .cplevel-9 {
    color: #B6BF34; }

.result .code.no-code {
  color: #BBB; }

.result .points .word-points {
  display: none;
  font-weight: 500; }

@media screen and (min-width: 768px) and (max-width: 1367px) {
  #ajs-header > tr .expand,
  #ajs-results > .result > .row-wrapper > .row .expand,
  #ajs-results-related > .result > .row-wrapper > .row .expand {
    width: 3em;
    min-width: 3em;
    max-width: 3em; }
  #ajs-header > tr .code,
  #ajs-results > .result > .row-wrapper > .row .code,
  #ajs-results-related > .result > .row-wrapper > .row .code {
    width: 5.2em;
    min-width: 5.2em;
    max-width: 5.2em; }
  #ajs-header > tr .title,
  #ajs-results > .result > .row-wrapper > .row .title,
  #ajs-results-related > .result > .row-wrapper > .row .title {
    width: 13em;
    min-width: 13em;
    max-width: 13em; }
  #ajs-header > tr .college,
  #ajs-results > .result > .row-wrapper > .row .college,
  #ajs-results-related > .result > .row-wrapper > .row .college {
    width: 10em;
    min-width: 10em;
    max-width: 10em; }
  #ajs-header > tr .county,
  #ajs-results > .result > .row-wrapper > .row .county,
  #ajs-results-related > .result > .row-wrapper > .row .county {
    width: 6em;
    min-width: 6em;
    max-width: 6em; }
  #ajs-header > tr .points,
  #ajs-results > .result > .row-wrapper > .row .points,
  #ajs-results-related > .result > .row-wrapper > .row .points {
    width: 4em;
    min-width: 4em;
    max-width: 4em; }
  #ajs-header > tr .duration,
  #ajs-results > .result > .row-wrapper > .row .duration,
  #ajs-results-related > .result > .row-wrapper > .row .duration {
    width: 6em;
    min-width: 6em;
    max-width: 6em; }
  #ajs-header > tr .award,
  #ajs-results > .result > .row-wrapper > .row .award,
  #ajs-results-related > .result > .row-wrapper > .row .award {
    width: 3.5em;
    min-width: 3.5em;
    max-width: 3.5em; }
  #ajs-header > tr .qqi,
  #ajs-results > .result > .row-wrapper > .row .qqi,
  #ajs-results-related > .result > .row-wrapper > .row .qqi {
    width: 4em;
    min-width: 4em;
    max-width: 4em; }
  #ajs-header > tr .tag,
  #ajs-results > .result > .row-wrapper > .row .tag,
  #ajs-results-related > .result > .row-wrapper > .row .tag {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; } }

@media screen and (min-width: 1367px) {
  #ajs-header > tr .expand,
  #ajs-results > .result > .row-wrapper > .row .expand,
  #ajs-results-related > .result > .row-wrapper > .row .expand {
    width: 3em;
    min-width: 3em;
    max-width: 3em; }
  #ajs-header > tr .code,
  #ajs-results > .result > .row-wrapper > .row .code,
  #ajs-results-related > .result > .row-wrapper > .row .code {
    width: 5.2em;
    min-width: 5.2em;
    max-width: 5.2em; }
  #ajs-header > tr .title,
  #ajs-results > .result > .row-wrapper > .row .title,
  #ajs-results-related > .result > .row-wrapper > .row .title {
    width: 20em;
    min-width: 20em;
    max-width: 20em; }
  #ajs-header > tr .college,
  #ajs-results > .result > .row-wrapper > .row .college,
  #ajs-results-related > .result > .row-wrapper > .row .college {
    width: 14em;
    min-width: 14em;
    max-width: 14em; }
  #ajs-header > tr .county,
  #ajs-results > .result > .row-wrapper > .row .county,
  #ajs-results-related > .result > .row-wrapper > .row .county {
    width: 6em;
    min-width: 6em;
    max-width: 6em; }
  #ajs-header > tr .points,
  #ajs-results > .result > .row-wrapper > .row .points,
  #ajs-results-related > .result > .row-wrapper > .row .points {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; }
  #ajs-header > tr .duration,
  #ajs-results > .result > .row-wrapper > .row .duration,
  #ajs-results-related > .result > .row-wrapper > .row .duration {
    width: 6em;
    min-width: 6em;
    max-width: 6em; }
  #ajs-header > tr .award,
  #ajs-results > .result > .row-wrapper > .row .award,
  #ajs-results-related > .result > .row-wrapper > .row .award {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; }
  #ajs-header > tr .qqi,
  #ajs-results > .result > .row-wrapper > .row .qqi,
  #ajs-results-related > .result > .row-wrapper > .row .qqi {
    width: 4em;
    min-width: 4em;
    max-width: 4em; }
  #ajs-header > tr .tag,
  #ajs-results > .result > .row-wrapper > .row .tag,
  #ajs-results-related > .result > .row-wrapper > .row .tag {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; }
  #ajs-header > tr .award div {
    margin: 0 auto; } }

@media print {
  #ajs-header > tr .expand,
  #ajs-results > .result > .row-wrapper > .row .expand,
  #ajs-results-related > .result > .row-wrapper > .row .expand {
    width: 3em;
    min-width: 3em;
    max-width: 3em; }
  #ajs-header > tr .code,
  #ajs-results > .result > .row-wrapper > .row .code,
  #ajs-results-related > .result > .row-wrapper > .row .code {
    width: 5.2em;
    min-width: 5.2em;
    max-width: 5.2em; }
  #ajs-header > tr .title,
  #ajs-results > .result > .row-wrapper > .row .title,
  #ajs-results-related > .result > .row-wrapper > .row .title {
    width: 20em;
    min-width: 20em;
    max-width: 20em; }
  #ajs-header > tr .college,
  #ajs-results > .result > .row-wrapper > .row .college,
  #ajs-results-related > .result > .row-wrapper > .row .college {
    width: 14em;
    min-width: 14em;
    max-width: 14em; }
  #ajs-header > tr .county,
  #ajs-results > .result > .row-wrapper > .row .county,
  #ajs-results-related > .result > .row-wrapper > .row .county {
    width: 6em;
    min-width: 6em;
    max-width: 6em; }
  #ajs-header > tr .points,
  #ajs-results > .result > .row-wrapper > .row .points,
  #ajs-results-related > .result > .row-wrapper > .row .points {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; }
  #ajs-header > tr .duration,
  #ajs-results > .result > .row-wrapper > .row .duration,
  #ajs-results-related > .result > .row-wrapper > .row .duration {
    width: 6em;
    min-width: 6em;
    max-width: 6em; }
  #ajs-header > tr .award,
  #ajs-results > .result > .row-wrapper > .row .award,
  #ajs-results-related > .result > .row-wrapper > .row .award {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; }
  #ajs-header > tr .qqi,
  #ajs-results > .result > .row-wrapper > .row .qqi,
  #ajs-results-related > .result > .row-wrapper > .row .qqi {
    width: 4em;
    min-width: 4em;
    max-width: 4em; }
  #ajs-header > tr .tag,
  #ajs-results > .result > .row-wrapper > .row .tag,
  #ajs-results-related > .result > .row-wrapper > .row .tag {
    width: 4.5em;
    min-width: 4.5em;
    max-width: 4.5em; }
  #ajs-header > tr .award div {
    margin: 0 auto; } }

@media screen and (min-width: 768px) {
  #ajs-results > .result > .details,
  #ajs-results-related > .result > .details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-left: 3.5em;
    padding-right: 1em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    height: 0px;
    color: #474747; }
    #ajs-results > .result > .details > *,
    #ajs-results-related > .result > .details > * {
      -webkit-transition: all .2s;
      transition: all .2s;
      opacity: 0; }
    #ajs-results > .result > .details > .aside-left, #ajs-results > .result > .details > .aside-right, #ajs-results > .result > .details > .content,
    #ajs-results-related > .result > .details > .aside-left,
    #ajs-results-related > .result > .details > .aside-right,
    #ajs-results-related > .result > .details > .content {
      margin-top: 1em; }
    #ajs-results > .result > .details .aside-left,
    #ajs-results-related > .result > .details .aside-left {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 12em;
      margin-right: 1em; }
      #ajs-results > .result > .details .aside-left img,
      #ajs-results-related > .result > .details .aside-left img {
        width: 12em;
        height: 5.4588em;
        display: none; }
      #ajs-results > .result > .details .aside-left .colleges-direct,
      #ajs-results-related > .result > .details .aside-left .colleges-direct {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        margin-top: 0.5em; }
        #ajs-results > .result > .details .aside-left .colleges-direct img,
        #ajs-results-related > .result > .details .aside-left .colleges-direct img {
          width: 12em;
          height: auto;
          -webkit-border-radius: 3px;
                  border-radius: 3px;
          -webkit-transition: 0.1s ease-in-out;
          transition: 0.1s ease-in-out;
          margin-right: 0.3em; }
        #ajs-results > .result > .details .aside-left .colleges-direct:hover,
        #ajs-results-related > .result > .details .aside-left .colleges-direct:hover {
          opacity: .9; }
        #ajs-results > .result > .details .aside-left .colleges-direct.hidden,
        #ajs-results-related > .result > .details .aside-left .colleges-direct.hidden {
          display: none; }
    #ajs-results > .result > .details .content,
    #ajs-results-related > .result > .details .content {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 0;
          -ms-flex: 1 0 0px;
              flex: 1 0 0; }
      #ajs-results > .result > .details .content h2,
      #ajs-results-related > .result > .details .content h2 {
        margin: 0 0 0.5em; }
      #ajs-results > .result > .details .content div,
      #ajs-results-related > .result > .details .content div {
        line-height: 1.5; }
      #ajs-results > .result > .details .content p,
      #ajs-results-related > .result > .details .content p {
        line-height: 1.5; }
      #ajs-results > .result > .details .content p + br,
      #ajs-results-related > .result > .details .content p + br {
        display: none; }
      #ajs-results > .result > .details .content br + br,
      #ajs-results-related > .result > .details .content br + br {
        display: none; }
      #ajs-results > .result > .details .content ul > br,
      #ajs-results-related > .result > .details .content ul > br {
        display: none; }
      #ajs-results > .result > .details .content div br + br,
      #ajs-results-related > .result > .details .content div br + br {
        display: initial; }
      #ajs-results > .result > .details .content .opportunities,
      #ajs-results-related > .result > .details .content .opportunities {
        margin-top: 0.3em; }
    #ajs-results > .result > .details .aside-right,
    #ajs-results-related > .result > .details .aside-right {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      width: 6em;
      margin-left: 1em; }
      #ajs-results > .result > .details .aside-right .fb, #ajs-results > .result > .details .aside-right .tw, #ajs-results > .result > .details .aside-right .email, #ajs-results > .result > .details .aside-right .print-button,
      #ajs-results-related > .result > .details .aside-right .fb,
      #ajs-results-related > .result > .details .aside-right .tw,
      #ajs-results-related > .result > .details .aside-right .email,
      #ajs-results-related > .result > .details .aside-right .print-button {
        min-height: 2.5em;
        -webkit-border-radius: 3px;
                border-radius: 3px;
        margin-bottom: 0.3em; }
      #ajs-results > .result > .details .aside-right .fb,
      #ajs-results-related > .result > .details .aside-right .fb {
        background: #7C98C2;
        background-image: url("images/icons/fb-share.png");
        -webkit-background-size: cover;
                background-size: cover;
        background-repeat: no-repeat;
        display: block; }
      #ajs-results > .result > .details .aside-right .tw,
      #ajs-results-related > .result > .details .aside-right .tw {
        background-color: #12D2FF;
        background-image: url("images/icons/twitter-share.png");
        -webkit-background-size: cover;
                background-size: cover;
        background-repeat: no-repeat;
        display: block; }
    #ajs-results > .result > .details .footer,
    #ajs-results-related > .result > .details .footer {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: baseline;
      -webkit-align-items: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 100%;
      height: 4em;
      padding-left: 13em;
      margin-top: 0.5em; }
      #ajs-results > .result > .details .footer ul,
      #ajs-results-related > .result > .details .footer ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        list-style: none;
        cursor: default;
        padding-left: 0; }
        #ajs-results > .result > .details .footer ul > li,
        #ajs-results-related > .result > .details .footer ul > li {
          -webkit-border-radius: 3px;
                  border-radius: 3px;
          background-color: #EAEAEA;
          color: #444;
          padding: 0.3em 0.8em;
          font-size: 0.85em;
          cursor: normal;
          -webkit-box-flex: 0;
          -webkit-flex: 0 0 auto;
              -ms-flex: 0 0 auto;
                  flex: 0 0 auto;
          margin: 0; }
          #ajs-results > .result > .details .footer ul > li:not(:first-child),
          #ajs-results-related > .result > .details .footer ul > li:not(:first-child) {
            margin-left: 1em; }
    #ajs-results > .result > .details .read-more,
    #ajs-results-related > .result > .details .read-more {
      display: inline-block;
      padding: 0.6em 2em;
      -webkit-border-radius: 0.5em;
              border-radius: 0.5em;
      background-color: #0071BC;
      color: #FFF;
      text-align: center;
      cursor: pointer;
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 auto;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      -webkit-border-radius: 3px;
              border-radius: 3px;
      padding: 0.8em 2em; }
      #ajs-results > .result > .details .read-more:hover,
      #ajs-results-related > .result > .details .read-more:hover {
        background-color: #0983d4; }
  #ajs-results > .result.revealed > .details,
  #ajs-results-related > .result.revealed > .details {
    height: auto; }
    #ajs-results > .result.revealed > .details > *,
    #ajs-results-related > .result.revealed > .details > * {
      opacity: 1; }
    #ajs-results > .result.revealed > .details .aside-left img,
    #ajs-results-related > .result.revealed > .details .aside-left img {
      display: block; } }

#plc #ajs-results > .result > .details .content .opportunities, #plc #ajs-results-related > .result > .details .content .opportunities {
  display: none !important; }

#ajs-header > tr {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  text-align: left;
  color: #666;
  height: 3em;
  border-top: 2px solid #CCC;
  border-bottom: 2px solid #CCC;
  background-color: #FFF; }

#ajs-header .tag {
  white-space: nowrap; }

#ajs-header .qqi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  #ajs-header .qqi div {
    padding-left: 0.4em; }

@media screen and (max-width: 767px) {
  #ajs-header {
    display: none; }
  #ajs-results > .result,
  #ajs-results-related > .result {
    display: block;
    border-top: 1px solid #CCC;
    padding: 0.3em 0; }
    #ajs-results > .result .expand, #ajs-results > .result .tag, #ajs-results > .result .details, #ajs-results > .result .county,
    #ajs-results-related > .result .expand,
    #ajs-results-related > .result .tag,
    #ajs-results-related > .result .details,
    #ajs-results-related > .result .county {
      display: none; }
    #ajs-results > .result .row,
    #ajs-results-related > .result .row {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 0;
          -ms-flex: 1 0 0px;
              flex: 1 0 0; }
    #ajs-results > .result .title,
    #ajs-results-related > .result .title {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      font-size: 1.4em;
      margin-top: 0.3em; }
    #ajs-results > .result .code,
    #ajs-results-related > .result .code {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2;
      margin: .2em 0 0;
      font-family: "Roboto", sans-serif;
      font-weight: 500;
      color: #8CC63F; }
    #ajs-results > .result .college,
    #ajs-results-related > .result .college {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3;
      margin: .2em 0 0; }
      #ajs-results > .result .college a.active::after,
      #ajs-results-related > .result .college a.active::after {
        display: inline-block; }
    #ajs-results > .result .extras,
    #ajs-results-related > .result .extras {
      -webkit-box-ordinal-group: 5;
      -webkit-order: 4;
          -ms-flex-order: 4;
              order: 4;
      margin-top: 1.5em;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around;
      height: 6.5em;
      min-height: 6.5em;
      max-height: 6.5em; }
      #ajs-results > .result .extras > *:not(:last-child),
      #ajs-results-related > .result .extras > *:not(:last-child) {
        margin-bottom: 0.3em; }
    #ajs-results > .result .qqi, #ajs-results > .result .award, #ajs-results > .result .duration, #ajs-results > .result .points,
    #ajs-results-related > .result .qqi,
    #ajs-results-related > .result .award,
    #ajs-results-related > .result .duration,
    #ajs-results-related > .result .points {
      -webkit-box-flex: 1;
      -webkit-flex: 1 0 auto;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      max-width: none;
      max-height: none;
      min-width: auto;
      min-height: auto;
      width: auto;
      height: auto; }
      #ajs-results > .result .qqi span:not(.sym):not(.pt-diff), #ajs-results > .result .award span:not(.sym):not(.pt-diff), #ajs-results > .result .duration span:not(.sym):not(.pt-diff), #ajs-results > .result .points span:not(.sym):not(.pt-diff),
      #ajs-results-related > .result .qqi span:not(.sym):not(.pt-diff),
      #ajs-results-related > .result .award span:not(.sym):not(.pt-diff),
      #ajs-results-related > .result .duration span:not(.sym):not(.pt-diff),
      #ajs-results-related > .result .points span:not(.sym):not(.pt-diff) {
        display: inline-block;
        margin-left: 0.5em; }
      #ajs-results > .result .qqi span.word-points, #ajs-results > .result .award span.word-points, #ajs-results > .result .duration span.word-points, #ajs-results > .result .points span.word-points,
      #ajs-results-related > .result .qqi span.word-points,
      #ajs-results-related > .result .award span.word-points,
      #ajs-results-related > .result .duration span.word-points,
      #ajs-results-related > .result .points span.word-points {
        display: inline-block;
        margin-left: 0.3em;
        margin-top: 1px; }
      #ajs-results > .result .qqi span.pt-diff, #ajs-results > .result .award span.pt-diff, #ajs-results > .result .duration span.pt-diff, #ajs-results > .result .points span.pt-diff,
      #ajs-results-related > .result .qqi span.pt-diff,
      #ajs-results-related > .result .award span.pt-diff,
      #ajs-results-related > .result .duration span.pt-diff,
      #ajs-results-related > .result .points span.pt-diff {
        margin-left: 0.5em; }
      #ajs-results > .result .qqi img, #ajs-results > .result .award img, #ajs-results > .result .duration img, #ajs-results > .result .points img,
      #ajs-results-related > .result .qqi img,
      #ajs-results-related > .result .award img,
      #ajs-results-related > .result .duration img,
      #ajs-results-related > .result .points img {
        width: 1.5em;
        min-width: 1.5em;
        max-width: 1.5em;
        height: 1.5em;
        min-height: 1.5em;
        max-height: 1.5em; }
    #ajs-results > .result .points,
    #ajs-results-related > .result .points {
      -webkit-box-ordinal-group: 6;
      -webkit-order: 5;
          -ms-flex-order: 5;
              order: 5;
      -webkit-box-flex: initial;
      -webkit-flex: initial;
          -ms-flex: initial;
              flex: initial;
      -webkit-align-self: flex-end;
          -ms-flex-item-align: end;
              align-self: flex-end;
      -webkit-box-align: baseline;
      -webkit-align-items: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      margin-top: auto;
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end; }
      #ajs-results > .result .points::after,
      #ajs-results-related > .result .points::after {
        display: none; }
      #ajs-results > .result .points img,
      #ajs-results-related > .result .points img {
        display: none; }
      #ajs-results > .result .points span,
      #ajs-results-related > .result .points span {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2; }
      #ajs-results > .result .points .text,
      #ajs-results-related > .result .points .text {
        font-size: 16px; }
        #ajs-results > .result .points .text:empty + .word-points,
        #ajs-results-related > .result .points .text:empty + .word-points {
          display: none; }
      #ajs-results > .result .points .pt-diff::before,
      #ajs-results-related > .result .points .pt-diff::before {
        content: '';
        width: 0;
        height: 0;
        display: inline-block;
        margin-right: .3em; }
    #ajs-results > .result .up .pt-diff, #ajs-results > .result .down .pt-diff,
    #ajs-results-related > .result .up .pt-diff,
    #ajs-results-related > .result .down .pt-diff {
      display: inline-block;
      -webkit-flex-basis: 100%;
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
      text-align: right;
      margin-top: 2px; }
    #ajs-results > .result .down .pt-diff::before,
    #ajs-results-related > .result .down .pt-diff::before {
      border-left: .3em solid transparent;
      border-right: .3em solid transparent;
      border-top: .6em solid #D41D25; }
    #ajs-results > .result .up .pt-diff::before,
    #ajs-results-related > .result .up .pt-diff::before {
      border-left: .3em solid transparent;
      border-right: .3em solid transparent;
      border-bottom: .6em solid #39B45A; }
    #ajs-results > .result .qqi,
    #ajs-results-related > .result .qqi {
      -webkit-box-ordinal-group: 5;
      -webkit-order: 4;
          -ms-flex-order: 4;
              order: 4; }
    #ajs-results > .result .duration,
    #ajs-results-related > .result .duration {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3; }
      #ajs-results > .result .duration img,
      #ajs-results-related > .result .duration img {
        display: initial; }
    #ajs-results > .result .no-qqi,
    #ajs-results-related > .result .no-qqi {
      height: 4.5em;
      min-height: 4.5em;
      max-height: 4.5em; } }

@media screen and (min-width: 768px) {
  #ajs-results > .result, #ajs-results-related > .result {
    -webkit-transition: .25s ease;
    transition: .25s ease;
    border-bottom: 1px solid #F3F3F3; }
  #ajs-results > .result:hover, #ajs-results-related > .result:hover {
    background-color: #f4f4f4; }
  #ajs-results > .result.revealed, #ajs-results-related > .result.revealed {
    background-color: #f4f4f4; }
    #ajs-results > .result.revealed .expand div, #ajs-results-related > .result.revealed .expand div {
      border-left-color: #0071BC;
      border-bottom-color: #0071BC; }
  #ajs-results .award span, #ajs-results .qqi span, #ajs-results .points .cao-logo, #ajs-results-related .award span, #ajs-results-related .qqi span, #ajs-results-related .points .cao-logo {
    display: none; }
  #ajs-results .points, #ajs-results-related .points {
    height: 100%; }
  #ajs-results .award, #ajs-results-related .award {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  #ajs-results .award img, #ajs-results-related .award img {
    width: 2em;
    min-width: 2em;
    max-width: 2em;
    height: 2em;
    min-height: 2em;
    max-height: 2em; }
  #ajs-results .qqi img, #ajs-results-related .qqi img {
    width: 1.3em;
    min-width: 1.3em;
    max-width: 1.3em;
    height: 1.3em;
    min-height: 1.3em;
    max-height: 1.3em; }
  #ajs-results .expand, #ajs-results-related .expand {
    cursor: pointer; }
    #ajs-results .expand:hover > div, #ajs-results-related .expand:hover > div {
      opacity: .7; }
    #ajs-results .expand > div, #ajs-results-related .expand > div {
      margin-left: .5em;
      height: 6px;
      width: 6px;
      border-left: 3px solid #0071BC;
      border-bottom: 3px solid #0071BC;
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
      -webkit-transition: .15s all;
      transition: .15s all; }
  #ajs-results .result.revealed .expand > div, #ajs-results-related .result.revealed .expand > div {
    -webkit-transform: rotate(-225deg);
        -ms-transform: rotate(-225deg);
            transform: rotate(-225deg); }
  #ajs-header > tr,
  #ajs-results > .result > .row-wrapper > .row,
  #ajs-results-related > .result > .row-wrapper > .row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    #ajs-header > tr > .extras,
    #ajs-results > .result > .row-wrapper > .row > .extras,
    #ajs-results-related > .result > .row-wrapper > .row > .extras {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    #ajs-header > tr > .extras > span, #ajs-header > tr > span, #ajs-header > tr > th,
    #ajs-results > .result > .row-wrapper > .row > .extras > span,
    #ajs-results > .result > .row-wrapper > .row > span,
    #ajs-results > .result > .row-wrapper > .row > th,
    #ajs-results-related > .result > .row-wrapper > .row > .extras > span,
    #ajs-results-related > .result > .row-wrapper > .row > span,
    #ajs-results-related > .result > .row-wrapper > .row > th {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      padding: 0.5em;
      margin: 0; }
    #ajs-header > tr .code,
    #ajs-results > .result > .row-wrapper > .row .code,
    #ajs-results-related > .result > .row-wrapper > .row .code {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
  #ajs-results > .result > .row-wrapper > .row .code,
  #ajs-results-related > .result > .row-wrapper > .row .code {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
    margin-right: 0.2em;
    color: #808080; } }

@media screen and (max-width: 1020px) {
  #ajs-sidebar {
    width: 0;
    overflow: hidden;
    -webkit-transform: translateX(-250px);
        -ms-transform: translateX(-250px);
            transform: translateX(-250px);
    height: 0; }
    #ajs-sidebar > div:last-of-type {
      border-bottom: none !important; }
    #ajs-sidebar .input-container.emphasised label, #ajs-sidebar .category .title, #ajs-sidebar label {
      font-size: 17px; }
    #ajs-sidebar .input-container {
      margin-bottom: 1em; }
      #ajs-sidebar .input-container label:after {
        width: 15px;
        height: 15px;
        left: 24px; }
      #ajs-sidebar .input-container.emphasised label:before {
        font-size: 17px; }
    #ajs-sidebar > div:nth-of-type(3) .box {
      padding-left: 15px; }
    #ajs-sidebar #id_txt {
      font-size: 17px;
      color: #666;
      width: 100%;
      margin-left: -7px; }
    #ajs-sidebar .hint {
      font-size: 15px;
      margin-left: -7px; }
    #ajs-sidebar input[type=checkbox] + label:after {
      width: 17px;
      height: 17px;
      left: -30px; }
    #ajs-sidebar .ajs-filter {
      border-bottom: 1px solid #E2E2E2;
      padding-bottom: 2em; }
      #ajs-sidebar .ajs-filter input[type=checkbox]:checked + label:after {
        font-size: 17px;
        line-height: 17px; }
      #ajs-sidebar .ajs-filter .box {
        padding-left: 22px; }
        #ajs-sidebar .ajs-filter .box .sector.inputs > div:not(:first-of-type) {
          margin-top: 1em; }
      #ajs-sidebar .ajs-filter .region .input-container:nth-of-type(3) label:before {
        font-size: 15px;
        top: 2px;
        right: -90px; }
      #ajs-sidebar .ajs-filter .sidebar-filter-active, #ajs-sidebar .ajs-filter .sidebar-filter-no-results {
        font-size: 15px; }
    #ajs-sidebar .input-container[type=range] {
      padding-left: 20px; }
      #ajs-sidebar .input-container[type=range] > input[type=number] {
        width: 3.5em;
        min-width: 3.5em;
        font-size: 18px;
        padding-left: 3px; }
    #ajs-sidebar h3:not(.print) {
      font-size: 18px;
      color: #474747 !important; }
      #ajs-sidebar h3:not(.print) span {
        color: #F4F4F4 !important;
        font-size: 17px !important; }
      #ajs-sidebar h3:not(.print) .filter-clear {
        color: #1a8d9a !important; }
      #ajs-sidebar h3:not(.print) .active, #ajs-sidebar h3:not(.print) span.active {
        color: #F4F4F4 !important; }
      #ajs-sidebar h3:not(.print) input[type=text] {
        font-size: 17px; }
    #ajs-sidebar .large:not(.expanded) .box {
      max-height: 300px; }
  .done {
    -webkit-border-radius: 0;
            border-radius: 0; }
  #ajs.sidebar-open > #ajs-sidebar {
    padding: 100px 0; }
  #ajs-print {
    display: none !important; } }

@media screen and (max-width: 767px) {
  #ajs-content {
    padding-right: 17px; }
  #ajs-maintitle .page-description > p > a:not(:first-child) {
    border-top: 1px solid transparent; }
  #ajs.sidebar-open #ajs-sidebar-mobile-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    #ajs.sidebar-open #ajs-sidebar-mobile-header .done {
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex; }
    #ajs.sidebar-open #ajs-sidebar-mobile-header.busy .overlay {
      opacity: 1; }
  #ajs.locked:not(.sidebar-open) #ajs-options {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFF !important;
    padding: 0.15em 1em 0;
    z-index: 15;
    margin: 0;
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    #ajs.locked:not(.sidebar-open) #ajs-options #ajs-report {
      margin-bottom: 0;
      color: #FFF;
      font-size: 0; }
      #ajs.locked:not(.sidebar-open) #ajs-options #ajs-report #ajs-filter > .open {
        font-size: 14px;
        padding: 6px 16px;
        color: #FFF;
        background-color: #67d9e5; }
      #ajs.locked:not(.sidebar-open) #ajs-options #ajs-report #ajs-sort select {
        font-size: 14px;
        padding: 6px 0 6px 16px;
        background-color: #67d9e5;
        color: #FFF; }
  #ajs.locked:not(.sidebar-open) #ajs-options-placeholder {
    display: block; }
  display: none; }

@media screen and (max-width: 479px) {
  #ajs-content {
    padding-right: 17px; }
  #ajs-bottom-clearall, #ajs-options-clearall {
    display: none; }
  #ajs.sidebar-open > #ajs-sidebar {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-transform: translateX(0px);
        -ms-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); }
  #ajs.sidebar-open > #ajs-content {
    opacity: 0;
    width: 0;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto; }
  #ajs.locked:not(.sidebar-open) #ajs-options {
    width: 100%; }
  .print-list button {
    display: none; } }

@media screen and (min-width: 480px) and (max-width: 767px) {
  .logo-wrapper {
    display: block; } }

@media screen and (min-width: 480px) and (max-width: 1023px) {
  #ajs.sidebar-open > #ajs-content {
    opacity: 0.4;
    pointer-events: none; }
  #ajs.sidebar-open #ajs-options-clearall {
    display: none; }
  #ajs.sidebar-open #ajs-report {
    opacity: 0;
    height: 7px; }
  #ajs.sidebar-open #ajs-sidebar {
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); }
  .print-list button {
    display: none; } }

@media screen and (min-width: 768px) {
  #ajx-maintitle {
    font-size: 3.75em;
    margin: 0.9em 0em;
    margin-left: 288px; }
  #ajs-options-clearall {
    background-image: url("svg/button-retract.svg"); } }

@media screen and (min-width: 768px) and (max-width: 1023px) {
  #ajs-content {
    max-width: 738px; }
  #ajs.sidebar-open #ajs-sidebar-mobile-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    #ajs.sidebar-open #ajs-sidebar-mobile-header .done {
      display: inline-block; }
    #ajs.sidebar-open #ajs-sidebar-mobile-header.busy .overlay {
      opacity: 1; }
    #ajs.sidebar-open #ajs-sidebar-mobile-header .clear-all {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      background-color: #E5E5E5;
      border: 2px solid #E5E5E5;
      color: #666; }
      #ajs.sidebar-open #ajs-sidebar-mobile-header .clear-all:hover {
        background-color: #F5F5F5; }
  #ajs.sidebar-open #ajs-sidebar {
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); }
  .print-list button {
    left: 315px !important; } }

@media screen and (min-width: 1021px) and (max-width: 1367px) {
  #ajs {
    margin-left: 0; }
  #ajs-content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    margin-left: 12px;
    max-width: 714.7px; }
  #ajs-filter {
    display: none; } }

@media screen and (min-width: 1367px) {
  #ajs {
    margin-left: 0; }
  #ajs-content {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    margin-left: 12px;
    max-width: 906.7px; }
  #ajs-sidebar {
    width: 280px; }
  #ajs-filter {
    display: none; }
  .column-2 {
    width: 15em; } }

#WzTtDiV {
  -webkit-border-radius: 3px;
          border-radius: 3px; }

div[class^="tipz"] {
  line-height: 1.4;
  padding: 16px 32px;
  -webkit-border-radius: 3px;
          border-radius: 3px; }

.tipz-points {
  width: 180px; }

.tipz-qqi {
  width: 220px; }

.tipz-qqi p {
  margin: 0; }

#cao .tipz-qqi .tipz-qqi-plc {
  display: none !important; }

#plc .tipz-qqi .tipz-qqi-cao {
  display: none !important; }

.tipz-tag {
  width: 200px; }

#ajs-header > tr .tag div {
  display: none; }

#ajs-header > tr .tag div::after {
  content: 'i';
  position: absolute;
  top: 8px;
  right: -10px;
  display: none;
  width: 13px;
  height: 13px;
  text-align: center;
  font-weight: bold;
  font-style: italic;
  font-family: serif;
  font-size: 12px;
  border: 1px solid #0071BC;
  -webkit-border-radius: 13px;
          border-radius: 13px;
  color: #FFF;
  cursor: help;
  background: #0071BC; }

#ajs-header > tr .tag span::after {
  position: absolute;
  left: -60px;
  bottom: -59px;
  content: 'Click on a star to save a course.';
  display: none;
  padding: 10px;
  color: white;
  background-color: #616161;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  visibility: hidden;
  font-weight: normal;
  z-index: 1000;
  white-space: normal; }

@media screen and (max-width: 1023px) {
  #ajs-header > tr .tag div {
    margin-left: 0px !important; } }

@media screen and (max-width: 767px) {
  .tipz-points {
    display: none; } }

#ajs-print {
  position: absolute;
  right: 0;
  top: 40px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out; }
  #ajs-print span {
    color: #666;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    margin-right: 4px;
    display: inline-block; }
  #ajs-print img {
    width: 18px;
    min-width: 18px;
    max-width: 18px;
    height: 18px;
    min-height: 18px;
    max-height: 18px;
    margin-right: 5px; }
  #ajs-print:hover span {
    opacity: .8; }

.print {
  display: none; }

.cao-logo_print, .points .cao-logo {
  display: none; }

@media print {
  #outerwrapper {
    width: 100% !important; }
  #header {
    width: 100% !important; }
  #ajs-modal {
    display: none; }
  #ajs-print {
    display: none; }
  .noprint {
    display: none; }
  body {
    background-color: transparent !important;
    font-size: 14px !important; }
  #headertop1, #social, #navbar1,
  .cpbulba-blackbar, .cpbulba-header, .cpbulba-footer, .cpbulba-family {
    display: none !important; }
  #logoImage {
    float: right !important;
    text-align: right; }
    #logoImage img {
      width: 75%;
      height: 75%; }
  .cao-logo_print {
    display: initial;
    position: absolute;
    top: 5px;
    width: 222px;
    height: 101px; }
  #ajs a {
    color: #000 !important; }
  #ajs-maintitle {
    text-align: center;
    padding: 15px;
    background: none; }
    #ajs-maintitle .branding {
      display: none; }
    #ajs-maintitle .page-description {
      width: 100%; }
      #ajs-maintitle .page-description h1 {
        color: #000; }
      #ajs-maintitle .page-description p {
        display: none; }
  .print-list {
    display: none; }
  #ajs-sidebar {
    display: none; }
  #ajs-pagination-bot {
    display: none; }
  #footer1 {
    display: none; }
  #ajs-breadcrumb {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
    -webkit-align-items: initial;
        -ms-flex-align: initial;
            align-items: initial;
    padding: 8px;
    border: 1px solid #AAA;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    #ajs-breadcrumb:empty {
      display: none; }
    #ajs-breadcrumb .crumb {
      font-size: 11pt;
      margin-bottom: 10px; }
      #ajs-breadcrumb .crumb .title {
        display: inline-block;
        background-color: transparent;
        padding: 0;
        width: 200px;
        text-align: left; }
        #ajs-breadcrumb .crumb .title .text {
          color: #000;
          font-weight: bold; }
          #ajs-breadcrumb .crumb .title .text:after {
            content: ""; }
      #ajs-breadcrumb .crumb .values {
        display: inline-block; }
        #ajs-breadcrumb .crumb .values .value {
          margin-bottom: 0;
          display: block;
          line-height: 1.5; }
          #ajs-breadcrumb .crumb .values .value .label {
            padding: 0;
            background: transparent;
            color: #333; }
            #ajs-breadcrumb .crumb .values .value .label:after {
              content: ""; }
  .icon {
    width: 25px; }
  #ajs-table {
    font-size: 11pt; }
  #ajs-content {
    width: 100%; }
    #ajs-content #ajs-report {
      font-size: 16px;
      width: 100%;
      margin-left: 0;
      color: #000;
      padding-left: 8px; }
      #ajs-content #ajs-report #ajs-filter > .open {
        display: none; }
    #ajs-content #ajs-options {
      padding-bottom: 0; }
    #ajs-content #ajs-options-buttons {
      display: none; }
    #ajs-content #ajs-sort {
      display: none; }
    #ajs-content .expand {
      display: none; }
    #ajs-content #ajs-header {
      border-bottom: 2px solid #888;
      padding: 0 2px 3px 2px; }
      #ajs-content #ajs-header tr {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
            -ms-flex-align: end;
                align-items: flex-end;
        border: 0;
        height: auto; }
        #ajs-content #ajs-header tr th {
          color: #000; }
        #ajs-content #ajs-header tr .column-1 {
          -webkit-box-flex: 1.5;
          -webkit-flex: 1.5;
              -ms-flex: 1.5;
                  flex: 1.5; }
        #ajs-content #ajs-header tr .column-2 {
          -webkit-box-flex: 4;
          -webkit-flex: 4;
              -ms-flex: 4;
                  flex: 4; }
        #ajs-content #ajs-header tr .column-3 {
          -webkit-box-flex: 3;
          -webkit-flex: 3;
              -ms-flex: 3;
                  flex: 3;
          padding: 0;
          margin: 0; }
        #ajs-content #ajs-header tr .column-4 {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
        #ajs-content #ajs-header tr .column-5 {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
        #ajs-content #ajs-header tr .column-6 {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
        #ajs-content #ajs-header tr .column-7 {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1; }
        #ajs-content #ajs-header tr .column-8 {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
          #ajs-content #ajs-header tr .column-8 div {
            font-size: 0; }
    #ajs-content #ajs-results > .result .tag div, #ajs-content #ajs-results-related > .result .tag div {
      background-color: transparent;
      border: 1px solid #ddd;
      color: #222;
      display: none; }
    #ajs-content #ajs-results > .result .tag img, #ajs-content #ajs-results-related > .result .tag img {
      width: 22px;
      height: 22px;
      margin-right: 0; }
    #ajs-content #ajs-results > .result .tag.active img, #ajs-content #ajs-results-related > .result .tag.active img {
      display: block;
      width: 25px;
      height: 25px; }
    #ajs-content #ajs-results > .result:nth-child(odd), #ajs-content #ajs-results-related > .result:nth-child(odd) {
      background-color: #FFF;
      border-bottom: 1px solid #aaa; }
    #ajs-content #ajs-results > .result:nth-child(even), #ajs-content #ajs-results-related > .result:nth-child(even) {
      border-bottom: 1px solid #aaa; }
    #ajs-content #ajs-results > .result:last-child, #ajs-content #ajs-results-related > .result:last-child {
      border-bottom: none; }
    #ajs-content #ajs-results > .result .code, #ajs-content #ajs-results-related > .result .code {
      -webkit-box-flex: 1.5;
      -webkit-flex: 1.5;
          -ms-flex: 1.5;
              flex: 1.5;
      color: #000;
      line-height: 15px; }
      #ajs-content #ajs-results > .result .code:before, #ajs-content #ajs-results-related > .result .code:before {
        color: #666; }
    #ajs-content #ajs-results > .result .points.down:after, #ajs-content #ajs-results-related > .result .points.down:after {
      top: 11px; }
    #ajs-content #ajs-results > .result .points.up:after, #ajs-content #ajs-results-related > .result .points.up:after {
      bottom: 12px; }
    #ajs-content #ajs-results > .result > .row-wrapper > .row, #ajs-content #ajs-results-related > .result > .row-wrapper > .row {
      width: 100%;
      padding: 2px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      #ajs-content #ajs-results > .result > .row-wrapper > .row .title, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .title {
        margin: 0.2em 0em;
        -webkit-box-flex: 4;
        -webkit-flex: 4;
            -ms-flex: 4;
                flex: 4; }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .title > a, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .title > a {
          font-size: 0.94em; }
      #ajs-content #ajs-results > .result > .row-wrapper > .row .college, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .college {
        padding: 0 !important;
        -webkit-box-flex: 3;
        -webkit-flex: 3;
            -ms-flex: 3;
                flex: 3;
        color: #333 !important;
        margin-bottom: 0; }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .college > a, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .college > a {
          font-size: 0.9em; }
      #ajs-content #ajs-results > .result > .row-wrapper > .row .extras, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras {
        display: -webkit-inline-box;
        display: -webkit-inline-flex;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-flex: 4;
        -webkit-flex: 4;
            -ms-flex: 4;
                flex: 4; }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .points, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .points {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .points .icon, #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .points .cao-logo, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .points .icon, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .points .cao-logo {
            display: none; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .points .new-this-year, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .points .new-this-year {
            -webkit-transform: translate(1em, 0.5em);
                -ms-transform: translate(1em, 0.5em);
                    transform: translate(1em, 0.5em); }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .qqi, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .qqi {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center;
          opacity: 0.6; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .qqi .icon, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .qqi .icon {
            width: 20px; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .qqi span, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .qqi span {
            display: none; }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .award, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .award {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
          -webkit-justify-content: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .award span, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .award span {
            display: none; }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .duration, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .duration {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          color: #333; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .duration img, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .duration img {
            display: none; }
          #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .duration .text, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .duration .text {
            display: initial;
            color: #000; }
        #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .tag, #ajs-content #ajs-results-related > .result > .row-wrapper > .row .extras .tag {
          -webkit-box-flex: 1;
          -webkit-flex: 1;
              -ms-flex: 1;
                  flex: 1;
          text-align: center; }
    #ajs-content #ajs-results .details, #ajs-content #ajs-results-related .details {
      display: none; }
    #ajs-content #ajs-results .college a:not(.active), #ajs-content #ajs-results-related .college a:not(.active) {
      color: #222; }
  #plc #ajs-content #ajs-header .column-1 {
    -webkit-box-flex: 4;
    -webkit-flex: 4;
        -ms-flex: 4;
            flex: 4;
    padding-right: 15px; }
  #plc #ajs-content #ajs-header .column-2 {
    -webkit-box-flex: 3;
    -webkit-flex: 3;
        -ms-flex: 3;
            flex: 3;
    padding: 0 15px 0 0 !important;
    margin-bottom: 0; }
  #plc #ajs-content #ajs-header .column-3 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 0; }
  #plc #ajs-content #ajs-header .column-6 {
    text-align: left; }
  #plc #ajs-content #ajs-header .column-7 {
    padding-left: 0; }
    #plc #ajs-content #ajs-header .column-7 div {
      font-size: 0; }
  #plc #ajs-content #ajs-results > .result > .row-wrapper > .row .title {
    line-height: 28px; }
  #plc #ajs-content #ajs-results > .result > .row-wrapper > .row .college {
    margin-bottom: 0; }
  #plc #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .county {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  #plc #ajs-content #ajs-results > .result > .row-wrapper > .row .extras .duration {
    padding-left: 0; }
  .ie #ajs-modal {
    display: none !important; }
    .ie #ajs-modal h2, .ie #ajs-modal ul, .ie #ajs-modal li, .ie #ajs-modal div, .ie #ajs-modal p {
      display: none !important; }
  .ie #ajs-table {
    font-size: 13.3px !important; }
  .ie #ajs-breadcrumb {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .ie #ajs-breadcrumb .crumb {
      display: inline-block; }
      .ie #ajs-breadcrumb .crumb .title {
        display: inline-block;
        vertical-align: top; }
  .ie #ajs-content #ajs-header div:nth-of-type(2) {
    width: 9% !important;
    min-width: 9% !important;
    display: inline-block;
    float: left; }
  .ie #ajs-content #ajs-header div:nth-of-type(3) {
    width: 30% !important;
    min-width: 30% !important;
    display: inline-block;
    float: left; }
  .ie #ajs-content #ajs-header div:nth-of-type(4) {
    width: 30% !important;
    min-width: 30% !important;
    float: left; }
  .ie #ajs-content #ajs-header div:nth-of-type(5) {
    width: 40px;
    min-width: 40px;
    float: left; }
  .ie #ajs-content #ajs-header div:nth-of-type(6) {
    width: 40px;
    min-width: 40px;
    float: left; }
  .ie #ajs-content #ajs-header div:nth-of-type(7) {
    width: 40px;
    min-width: 40px;
    float: left; }
  .ie #ajs-content #ajs-header div:nth-of-type(8) {
    min-width: 1%;
    float: left; }
    .ie #ajs-content #ajs-header div:nth-of-type(8) div {
      font-size: 0; }
  .ie #ajs-content #ajs-header div:nth-of-type(9) {
    font-size: 0;
    clear: both; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(1) {
    width: 9% !important;
    min-width: 9% !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(2) {
    width: 30% !important;
    min-width: 30% !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(3) {
    width: 30% !important;
    min-width: 30% !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(4) {
    width: 60px !important;
    min-width: 60px !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(5) {
    width: 50px !important;
    min-width: 50px !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(6) {
    width: 40px !important;
    min-width: 40px !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(7) {
    width: 40px !important;
    min-width: 40px !important;
    float: left; }
  .ie #plc #ajs-content #ajs-header div:nth-of-type(8) {
    width: 2px !important;
    min-width: 2px !important;
    font-size: 0;
    clear: both !important;
    float: none !important; }
  .ie #ajs-results > .result > .row-wrapper > .row .code {
    width: 9%;
    min-width: 9%;
    max-width: 9%; }
  .ie #ajs-results > .result > .row-wrapper > .row .title {
    width: 28%;
    min-width: 28%;
    max-width: 28%; }
  .ie #ajs-results > .result > .row-wrapper > .row .college {
    width: 28%;
    min-width: 28%;
    max-width: 28%;
    margin-bottom: 0; }
  .ie #ajs-results > .result > .row-wrapper > .row .extras {
    width: 40%; }
    .ie #ajs-results > .result > .row-wrapper > .row .extras .county {
      -webkit-flex-basis: 0;
          -ms-flex-preferred-size: 0;
              flex-basis: 0;
      -webkit-box-flex: 2.2;
      -webkit-flex-grow: 2.2;
          -ms-flex-positive: 2.2;
              flex-grow: 2.2; }
    .ie #ajs-results > .result > .row-wrapper > .row .extras .award {
      -webkit-box-flex: 1.2;
      -webkit-flex-grow: 1.2;
          -ms-flex-positive: 1.2;
              flex-grow: 1.2; }
  #ajs.detailed #ajs-breadcrumb {
    margin-bottom: 8px; }
  #ajs.detailed #ajs-content #ajs-results > .result:nth-child(odd) {
    border-bottom: 1px solid #888; }
  #ajs.detailed #ajs-content #ajs-results > .result:nth-child(even) {
    border-bottom: 1px solid #888; }
  #ajs.detailed #ajs-content #ajs-results > .result .title {
    font-size: 1.12em; }
  #ajs.detailed #ajs-results > .result > .details,
  #ajs.detailed #ajs-results-related > .result > .details {
    display: block; }
    #ajs.detailed #ajs-results > .result > .details .aside-left,
    #ajs.detailed #ajs-results-related > .result > .details .aside-left {
      display: inline-block;
      width: 24%;
      margin-right: 10px;
      vertical-align: top;
      margin-top: 17px;
      border: 1px solid #DDD; }
      #ajs.detailed #ajs-results > .result > .details .aside-left img,
      #ajs.detailed #ajs-results-related > .result > .details .aside-left img {
        width: 100%;
        height: auto;
        vertical-align: middle; }
      #ajs.detailed #ajs-results > .result > .details .aside-left .colleges-direct,
      #ajs.detailed #ajs-results-related > .result > .details .aside-left .colleges-direct {
        display: none; }
    #ajs.detailed #ajs-results > .result > .details .content,
    #ajs.detailed #ajs-results-related > .result > .details .content {
      display: inline-block;
      width: 74%; }
      #ajs.detailed #ajs-results > .result > .details .content h2,
      #ajs.detailed #ajs-results-related > .result > .details .content h2 {
        margin: 0.5em 0;
        font-size: 11pt;
        color: #222; }
      #ajs.detailed #ajs-results > .result > .details .content div, #ajs.detailed #ajs-results > .result > .details .content p,
      #ajs.detailed #ajs-results-related > .result > .details .content div,
      #ajs.detailed #ajs-results-related > .result > .details .content p {
        line-height: 1.5;
        color: #444;
        font-size: 11pt; }
      #ajs.detailed #ajs-results > .result > .details .content p,
      #ajs.detailed #ajs-results-related > .result > .details .content p {
        margin-bottom: 0.5em; }
    #ajs.detailed #ajs-results > .result > .details .footer,
    #ajs.detailed #ajs-results-related > .result > .details .footer {
      width: 74%;
      margin-left: 24%;
      padding-left: 12px; }
      #ajs.detailed #ajs-results > .result > .details .footer ul,
      #ajs.detailed #ajs-results-related > .result > .details .footer ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        #ajs.detailed #ajs-results > .result > .details .footer ul li,
        #ajs.detailed #ajs-results-related > .result > .details .footer ul li {
          margin-right: 20px;
          border: 1px solid grey;
          -webkit-border-radius: 10px;
                  border-radius: 10px;
          padding: 4px 8px;
          display: inline-block;
          margin: 8px 12px 20px 0;
          color: #000; }
          #ajs.detailed #ajs-results > .result > .details .footer ul li:empty,
          #ajs.detailed #ajs-results-related > .result > .details .footer ul li:empty {
            border: none;
            margin-bottom: 20px; }
      #ajs.detailed #ajs-results > .result > .details .footer .read-more,
      #ajs.detailed #ajs-results-related > .result > .details .footer .read-more {
        display: none; } }

#ajs-sidebar .large:not(expanded) .show-more,
#ajs-sidebar .large.expanded .show-less {
  color: #0071BC; }

#ajs-sidebar #id_txt {
  color: #0071BC; }
  #ajs-sidebar #id_txt:focus {
    -webkit-box-shadow: 0 0 5px #0071BC;
            box-shadow: 0 0 5px #0071BC;
    border: 1px solid #0071BC; }

#ajs-sidebar h3:not(print) {
  background: #1a8d9a; }
  #ajs-sidebar h3:not(print) .filter-clear {
    color: #1a8d9a; }
  #ajs-sidebar h3:not(print) .active {
    color: #FFF; }
  #ajs-sidebar h3:not(print) .title {
    color: #FFF; }

#ajs-sidebar h3:not(print) input[type=text]:focus {
  border: 1px solid #0071BC;
  -webkit-box-shadow: 0 0 5px #0071BC;
          box-shadow: 0 0 5px #0071BC; }

#ajs-sidebar input[type=checkbox]:checked + label::after {
  border-color: #0071BC;
  background-color: #0071BC; }

#ajs-sidebar .input-container:not(.emphasised):hover input[type=checkbox] + label {
  color: #0071BC; }

#ajs-sidebar .input-container:not(.emphasised):hover input[type=checkbox]:not(:checked) + label::after {
  border-color: #0071BC;
  background-color: #FFF; }

#ajs-sidebar .category h4:hover .title {
  color: #0071BC; }

#ajs-sidebar .category h4:hover .collapser {
  border-bottom-color: #0071BC;
  border-left-color: #0071BC; }

#ajs-results > .result > .details .read-more,
#ajs-results-related > .result > .details .read-more {
  background-color: #1a8d9a;
  border: 2px solid #1a8d9a;
  color: #FFF; }
  #ajs-results > .result > .details .read-more:hover,
  #ajs-results-related > .result > .details .read-more:hover {
    background-color: #20acbc; }

#ajs-maintitle .page-description > p > a:not(:first-child) {
  border-top-color: #20acbc; }

#ajs-modal .box {
  background-color: #1a8d9a; }
  #ajs-modal .box .close-container .close {
    background-color: #67d9e5; }
  #ajs-modal .box .options li:hover {
    background-color: #20acbc; }

@media screen and (max-width: 767px) {
  #ajs.locked:not(.sidebar-open) #ajs-options {
    border-bottom: 4px solid #1a8d9a !important; } }

#ajs-maintitle .branding {
  background-image: url("images/branding/mob-blank_S.png"); }

@media screen and (min-width: 768px) {
  #ajs-maintitle .branding {
    background-image: url("images/branding/cao_180.png"); } }

#ajs a {
  color: #167580; }

#ajs-results .college a:not(.colleges-direct--active), #ajs-results-related .college a:not(.colleges-direct--active) {
  color: #808080; }

/*#cao
	@include ajs-brand-colours($link-color, $cao-colour, $cao-colour-medium, $cao-colour-dark)
	@include ajs-brand-images($cao-image-mobile, $cao-image-tablet)
	@include ajs-link-colours($cao-colour-link)*/
/*#plc
	@include ajs-brand-colours($link-color, $plc-colour, $plc-colour-medium, $plc-colour-dark)
	@include ajs-brand-images($plc-image-mobile, $plc-image-tablet)
	@include ajs-link-colours($plc-colour-link)*/
.ie #ajs-overlay {
  display: none; }

.ie #ajs-modal {
  display: none; }
  .ie #ajs-modal.active {
    display: block; }

.ie #ajs-results > .result > .details .aside-right .fb, .ie #ajs-results > .result > .details .aside-right .tw,
.ie #ajs-results-related > .result > .details .aside-right .fb,
.ie #ajs-results-related > .result > .details .aside-right .tw {
  display: block; }

.ie #ajs-options {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.ie #ajs-report {
  margin-left: 0; }

.ie #ajs-options-buttons, .ie #ajs-sort {
  width: auto;
  width: initial; }

.ie #ajs-sort div {
  margin-top: 0; }

.ie #ajs-header > tr > th div {
  width: auto; }

.ie #ajs-results > .result > .row-wrapper > .row .title a, .ie #ajs-results > .result > .row-wrapper > .row .college a,
.ie #ajs-results-related > .result > .row-wrapper > .row .title a,
.ie #ajs-results-related > .result > .row-wrapper > .row .college a {
  display: block;
  width: 100%; }

.ie #ajs-sidebar .category .input-container label {
  display: block;
  width: 100%; }

.ie #ajs-sidebar .category .collapser {
  display: none; }

.ie #ajs-sidebar #id_txt {
  width: auto;
  width: initial; }

.ie #ajs-sidebar h3 span {
  display: inline-block; }

.ie #ajs-breadcrumb .crumb .value {
  margin-bottom: 5px; }
  .ie #ajs-breadcrumb .crumb .value .label {
    display: inline-block; }

.ie #ajs-sidebar .ajs-filter .hint {
  width: 200px; }

.ie #ajs-results .points.down:after, .ie #ajs-results-related .points.down:after {
  display: none !important; }

.ie #ajs-results .points.up:after, .ie #ajs-results-related .points.up:after {
  display: none !important; }

.ie .result .tag .tag-message {
  display: none; }

.ios #ajs.sidebar-open > #ajs-sidebar {
  display: block; }

.agent--ipad--12 #ajs,
.agent--ipad--11 #ajs,
.agent--ipad--10 #ajs,
.agent--iphone--12 #ajs,
.agent--iphone--11 #ajs,
.agent--iphone--10 #ajs {
  padding: 12px;
  margin: 0; }

/*.agent--iphone-6
	.done
		position: initial
		bottom: initial
		left: initial
		right: initial

	#ajs-sidebar-mobile-header
		position: initial
		top: initial
		left: initial
		right: initial
	*/
.header {
  font-size: 13px; }
