@charset "UTF-8";
/* CONFIG */
/* FONT */
/* MONO */
/* BLUE */
/* YELLOW */
/* GREEN */
/* RED */
/* VIOLET */
/* PRIMARY COLOR */
/* SECONDARY COLOR */
/* FONT-SIZE */
/* TRANSITION */
/* COMMON PARAM*/
/* RESET */
* {
  -webkit-filter: inherit;
          filter: inherit;
  -webkit-text-size-adjust: none; }

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

html *,
html *::after,
html *::before {
  max-height: 999999px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

strong {
  font-weight: bold; }

em {
  font-style: italic; }

/* COMMON */
html, body {
  width: 100%;
  color: #000000;
  background-color: #ffffff; }
  html.loadingOpen, html.menuOpen, html.popupOpen, body.loadingOpen, body.menuOpen, body.popupOpen {
    -webkit-overflow-scrolling: touch !important;
    overflow: hidden;
    position: fixed; }

a,
input,
button,
select,
textarea {
  outline: none; }

input {
  -webkit-appearance: none;
  border-radius: 0; }

button {
  -webkit-appearance: none;
  border-radius: 0; }

select {
  -webkit-appearance: none;
  border-radius: 0; }
  select option {
    -webkit-appearance: none;
    border-radius: 0; }

textarea {
  -webkit-appearance: none;
  border-radius: 0; }

.block {
  display: block; }

.hide {
  display: none !important; }

.clear:after {
  content: "";
  display: block;
  clear: both; }

.noWrap {
  white-space: nowrap; }

.mobile .hideMobile {
  display: none !important; }

.tablet .hideTablet {
  display: none !important; }

.desktop .hideDesktop,
.largeDesktop .hideDesktop {
  display: none !important; }

.transitionFreeze * {
  transition: none !important; }

.loading {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #ffffff;
  opacity: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  transition: opacity 0.2s ease-out, -webkit-transform 0.01s linear 0.2s;
  transition: opacity 0.2s ease-out, transform 0.01s linear 0.2s;
  transition: opacity 0.2s ease-out, transform 0.01s linear 0.2s, -webkit-transform 0.01s linear 0.2s; }
  .tablet .loading,
  .desktop .loading,
  .largeDesktop .loading {
    background-size: 56px; }
  .mobile .loading {
    background-size: 28px; }
  .loadingOpen .loading {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    transition: none; }
  .ready.loadingOpen .loading {
    background-color: rgba(255, 255, 255, 0.7); }

.spinnerWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .spinnerWrapper .spinner {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(60deg) translate3d(0, 0, 0);
            transform: translate(-50%, -50%) rotate(60deg) translate3d(0, 0, 0);
    -webkit-animation: loader 1.2s infinite ease-in-out;
            animation: loader 1.2s infinite ease-in-out; }
    .spinnerWrapper .spinner span {
      position: absolute;
      display: block;
      width: 40px;
      height: 40px;
      -webkit-animation: loaderBlock 1.2s infinite ease-in-out both;
              animation: loaderBlock 1.2s infinite ease-in-out both; }
      .spinnerWrapper .spinner span:nth-child(1) {
        top: 0;
        left: 0;
        background-color: #db3883; }
      .spinnerWrapper .spinner span:nth-child(2) {
        top: 0;
        right: 0;
        background-color: #86c5f9;
        -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
                animation: loaderBlockInverse 1.2s infinite ease-in-out both; }
      .spinnerWrapper .spinner span:nth-child(3) {
        bottom: 0;
        left: 0;
        background-color: #77a845;
        -webkit-animation: loaderBlockInverse 1.2s infinite ease-in-out both;
                animation: loaderBlockInverse 1.2s infinite ease-in-out both; }
      .spinnerWrapper .spinner span:nth-child(4) {
        bottom: 0;
        right: 0;
        background-color: #fbe535; }

.editorContent {
  line-height: 1.3em; }
  .editorContent p {
    margin: 1em 0; }
  .editorContent b,
  .editorContent strong {
    font-weight: bold; }
  .editorContent i,
  .editorContent em {
    font-style: italic; }
  .editorContent u {
    text-decoration: underline; }
  .editorContent s,
  .editorContent strike {
    text-decoration: line-through; }
  .editorContent ol,
  .editorContent ul {
    list-style-position: outside; }
    .editorContent ol li,
    .editorContent ul li {
      margin: 0 0 0 1.3em; }
  .editorContent ol {
    list-style-type: decimal; }
  .editorContent ul {
    list-style-type: disc; }

/* CK EDITOR CLONE */
.cke_editable {
  line-height: 1.3em; }
  .cke_editable p {
    margin: 1em 0; }
  .cke_editable b,
  .cke_editable strong {
    font-weight: bold; }
  .cke_editable i,
  .cke_editable em {
    font-style: italic; }
  .cke_editable u {
    text-decoration: underline; }
  .cke_editable s,
  .cke_editable strike {
    text-decoration: line-through; }
  .cke_editable ol,
  .cke_editable ul {
    list-style-position: outside; }
    .cke_editable ol li,
    .cke_editable ul li {
      margin: 0 0 0 1.3em; }
  .cke_editable ol {
    list-style-type: decimal; }
  .cke_editable ul {
    list-style-type: disc; }

/* Z-INDEX */
.loading {
  z-index: 99; }

.backToTop {
  z-index: 4; }

.headerWrapper {
  z-index: 5; }
  .headerWrapper .alertBar .alertBox .alertBoxLink {
    z-index: 2; }
  .headerWrapper .alertBar .alertBox .closeBtn {
    z-index: 3; }

.menuWrapper {
  z-index: 4; }
  .menuWrapper .menu .closeBtn {
    z-index: 2; }

.fixedWrapper {
  z-index: 3; }

.mainWrapper {
  z-index: 2; }

.topSlider .slick-arrow.slick-prev {
  z-index: 2; }

.topSlider .slick-arrow.slick-next {
  z-index: 3; }

.veo_templateT1 .playgroup .slick-arrow.slick-prev,
.veo_templateT1 .experientialEducation .slick-arrow.slick-prev,
.veo_templateT1 .imgSlider .slick-arrow.slick-prev {
  z-index: 2; }

.veo_templateT1 .playgroup .slick-arrow.slick-next,
.veo_templateT1 .experientialEducation .slick-arrow.slick-next,
.veo_templateT1 .imgSlider .slick-arrow.slick-next {
  z-index: 3; }

.page_campus_faculty .staffPanel .staffTeam .title {
  z-index: 4; }

.page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem.active .staffDesc {
  z-index: 1; }

.page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo {
  z-index: 3; }

.page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc {
  z-index: -1; }

.page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDescMask {
  z-index: 2; }

.page_campus_whatsHappening .filterBtnWrapper {
  z-index: 2; }

.page_campus_whatsHappening_details .gallerySlider .slick-arrow.slick-prev {
  z-index: 2; }

.page_campus_whatsHappening_details .gallerySlider .slick-arrow.slick-next {
  z-index: 3; }

.veo_templateT1 .topSlider .slick-track {
  z-index: 2; }
  .veo_templateT1 .topSlider .slick-track .sliderItem .messageWrapper {
    z-index: 2; }

.veo_templateT9 .ibLearner .attributes .attribute .name {
  z-index: 2; }

.veo_templateT9 .ibLearner .attributes .attribute .toggleBtn {
  z-index: 3; }

.veo_templateT15 .filterBtnWrapper {
  z-index: 2; }

/* ANIMATION */
@-webkit-keyframes loader {
  0%, 10%, 100% {
    width: 80px;
    height: 80px; }
  65% {
    width: 120px;
    height: 120px; } }
@keyframes loader {
  0%, 10%, 100% {
    width: 80px;
    height: 80px; }
  65% {
    width: 120px;
    height: 120px; } }

@-webkit-keyframes loaderBlock {
  0%, 30% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@keyframes loaderBlock {
  0%, 30% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); } }

@-webkit-keyframes loaderBlockInverse {
  0%, 30% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); } }

@keyframes loaderBlockInverse {
  0%, 30% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  100% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); } }

/* FONT */
html, body {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em; }
  .tablet html,
  .desktop html,
  .largeDesktop html, .tablet body,
  .desktop body,
  .largeDesktop body {
    font-size: 24px;
    line-height: 1.3em; }

.headerWrapper .title {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 12px;
  line-height: 50px;
  text-transform: uppercase; }
  .desktop .headerWrapper .title {
    font-size: 20px;
    line-height: 28px; }
  .tablet .headerWrapper .title,
  .largeDesktop .headerWrapper .title {
    font-size: 20px;
    line-height: 28px; }

.headerWrapper .menu {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 12px;
  line-height: 16px; }
  .desktop .headerWrapper .menu {
    font-size: 20px;
    line-height: 28px; }
  .tablet .headerWrapper .menu,
  .largeDesktop .headerWrapper .menu {
    font-size: 20px;
    line-height: 28px; }
  .headerWrapper .menu > ul > li > a {
    line-height: 100px;
    text-transform: uppercase; }
    .headerWrapper .menu > ul > li > a span {
      line-height: 25px; }
  .headerWrapper .menu > ul > li > ul > li > a {
    font-size: 12px;
    line-height: 16px; }
    .desktop .headerWrapper .menu > ul > li > ul > li > a {
      font-size: 16px;
      line-height: 40px; }
    .tablet .headerWrapper .menu > ul > li > ul > li > a,
    .largeDesktop .headerWrapper .menu > ul > li > ul > li > a {
      font-size: 18px;
      line-height: 40px; }

.menuWrapper .menu {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 24px;
  line-height: 50px;
  text-transform: uppercase; }
  .tablet .menuWrapper .menu,
  .desktop .menuWrapper .menu,
  .largeDesktop .menuWrapper .menu {
    font-size: 24px;
    line-height: 50px; }
  .menuWrapper .menu ul.generalMenu {
    font-size: 20px;
    line-height: 50px; }
    .tablet .menuWrapper .menu ul.generalMenu,
    .desktop .menuWrapper .menu ul.generalMenu,
    .largeDesktop .menuWrapper .menu ul.generalMenu {
      font-size: 24px;
      line-height: 50px; }
  .menuWrapper .menu ul li ul {
    font-size: 20px;
    line-height: 50px; }
    .tablet .menuWrapper .menu ul li ul,
    .desktop .menuWrapper .menu ul li ul,
    .largeDesktop .menuWrapper .menu ul li ul {
      font-size: 24px;
      line-height: 50px; }
    .menuWrapper .menu ul li ul li {
      text-transform: none; }
  .menuWrapper .menu .searchBox .searchBoxInputWrapper input[type=text] {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 20px;
    line-height: 60px; }
    .tablet .menuWrapper .menu .searchBox .searchBoxInputWrapper input[type=text],
    .desktop .menuWrapper .menu .searchBox .searchBoxInputWrapper input[type=text],
    .largeDesktop .menuWrapper .menu .searchBox .searchBoxInputWrapper input[type=text] {
      font-size: 24px;
      line-height: 50px; }

.footer {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .desktop .footer,
  .largeDesktop .footer {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .footer .section {
    line-height: 64px;
    text-transform: uppercase; }
    .footer .section li a {
      font-size: 24px;
      line-height: 32px; }
      .desktop .footer .section li a {
        font-size: 24px;
        line-height: 32px; }
  .footer .toggleBtn {
    font-size: 16px;
    line-height: 70px; }
    .tablet .footer .toggleBtn {
      font-size: 22px; }
  .footer .campus_hk .title,
  .footer .campus_others .title {
    font-size: 30px;
    line-height: 36px; }
    .desktop .footer .campus_hk .title, .desktop
    .footer .campus_others .title {
      font-size: 20px;
      line-height: 1.3em; }
  .footer .campus_hk ul li,
  .footer .campus_others ul li {
    font-size: 16px;
    line-height: 70px; }
    .tablet .footer .campus_hk ul li, .tablet
    .footer .campus_others ul li {
      font-size: 22px; }
    .desktop .footer .campus_hk ul li, .desktop
    .footer .campus_others ul li {
      font-size: 18px;
      line-height: 24px; }
    .largeDesktop .footer .campus_hk ul li, .largeDesktop
    .footer .campus_others ul li {
      font-size: 18px;
      line-height: 24px; }
  .footer .appendixPanel {
    font-size: 14px;
    line-height: 20px; }
    .tablet .footer .appendixPanel {
      font-size: 20px;
      line-height: 36px; }
    .desktop .footer .appendixPanel {
      font-size: 18px;
      line-height: 36px; }
    .largeDesktop .footer .appendixPanel {
      font-size: 18px;
      line-height: 36px; }

.campusMenuWrapper .campusMenuBtn {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  text-transform: uppercase; }

.campusMenuWrapper .campusMenuContainer .campusMenu .itemOption label {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .desktop .campusMenuWrapper .campusMenuContainer .campusMenu .itemOption label {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .campusMenuWrapper .campusMenuContainer .campusMenu .itemOption label {
    font-size: 20px;
    line-height: 1.3em; }

.learningwithusMenuWrapper .learningwithusMenuBtn {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  text-transform: uppercase; }

.learningwithusMenuWrapper .learningwithusMenuContainer .learningwithusMenu .itemOption label {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .desktop .learningwithusMenuWrapper .learningwithusMenuContainer .learningwithusMenu .itemOption label,
  .largeDesktop .learningwithusMenuWrapper .learningwithusMenuContainer .learningwithusMenu .itemOption label {
    font-size: 20px;
    line-height: 1.3em; }

.breadcrumbWrapper .breadcrumb a {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 12px;
  line-height: 1.3em; }
  .desktop .breadcrumbWrapper .breadcrumb a {
    font-size: 14px;
    line-height: 1.3em; }
  .tablet .breadcrumbWrapper .breadcrumb a,
  .largeDesktop .breadcrumbWrapper .breadcrumb a {
    font-size: 18px;
    line-height: 1.3em; }

.alertMessage {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 14px;
  line-height: 1.3em; }
  .tablet .alertMessage,
  .desktop .alertMessage,
  .largeDesktop .alertMessage {
    font-size: 20px;
    line-height: 1.3em; }

.veoSection .title {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 27px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .veoSection .title {
    font-size: 32px;
    line-height: 1.3em; }
  .desktop .veoSection .title {
    font-size: 42px;
    line-height: 1.3em; }
  .largeDesktop .veoSection .title {
    font-size: 48px;
    line-height: 1.3em; }

.veoSection .desc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 17px;
  line-height: 1.3em; }
  .tablet .veoSection .desc {
    font-size: 18px;
    line-height: 1.3em; }
  .desktop .veoSection .desc {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .veoSection .desc {
    font-size: 24px;
    line-height: 1.3em; }

.veoSlider.topSlider + .veoSliderTitle {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .veoSlider.topSlider + .veoSliderTitle {
    font-size: 36px;
    line-height: 1.3em;
    font-weight: 500; }
  .desktop .veoSlider.topSlider + .veoSliderTitle {
    font-size: 40px;
    line-height: 1.3em;
    font-weight: 500; }
  .largeDesktop .veoSlider.topSlider + .veoSliderTitle {
    font-size: 60px;
    line-height: 1.3em;
    font-weight: 500; }

.veo_map_infowindow {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 17px;
  line-height: 1.3em; }
  .tablet .veo_map_infowindow,
  .desktop .veo_map_infowindow,
  .largeDesktop .veo_map_infowindow {
    font-size: 24px;
    line-height: 1.3em; }

.searchBar {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100px; }
  .searchBar .searchBox .searchBoxInputWrapper input[type=text] {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 24px;
    line-height: 60px; }

.veo_templateT1 .title {
  /*
		font-family:							$font_oswald_fontFamily;
		font-size:								28px;
		line-height:							36px;
		font-weight:							bold;
		text-transform: 						uppercase;
		.tablet &,
		.desktop &,
		.largeDesktop &
		{
			font-size:							76px;
			line-height:						84px;
		}
		*/ }

.veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title {
  font-family: "Dancing Script", Comic Sans, Comic Sans MS, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, cursive;
  font-size: 24px;
  line-height: 32px;
  font-weight: normal;
  text-transform: none; }
  .tablet .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title,
  .desktop .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title {
    font-size: 36px;
    line-height: 48px; }
  .largeDesktop .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title {
    font-size: 48px;
    line-height: 64px; }
  .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title .desc {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title .desc,
    .desktop .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title .desc {
      font-size: 16px;
      line-height: 1.3em; }
    .largeDesktop .veo_templateT1 .topSlider .sliderItem .messageWrapper .message .title .desc {
      font-size: 20px;
      line-height: 1.3em; }

.veo_templateT1 .topSliderMessage .title {
  font-family: "Dancing Script", Comic Sans, Comic Sans MS, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, cursive;
  font-size: 24px;
  line-height: 32px;
  font-weight: normal;
  text-transform: none; }
  .tablet .veo_templateT1 .topSliderMessage .title,
  .desktop .veo_templateT1 .topSliderMessage .title,
  .largeDesktop .veo_templateT1 .topSliderMessage .title {
    font-size: 36px;
    line-height: 48px; }
  .veo_templateT1 .topSliderMessage .title .desc {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 14px;
    line-height: 1.3em; }
    .tablet .veo_templateT1 .topSliderMessage .title .desc,
    .desktop .veo_templateT1 .topSliderMessage .title .desc,
    .largeDesktop .veo_templateT1 .topSliderMessage .title .desc {
      font-size: 22px;
      line-height: 1.3em; }

.veo_templateT1 .whyVictoria .title {
  /*
			font-family:							$font_oswald_fontFamily;
			font-size:								28px;
			line-height:							1.3em;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				font-size:							76px;
				line-height:						1.3em;
			}
			*/ }

.veo_templateT1 .whyVictoria .desc {
  /*
			font-family:			$font_lato_fontFamily;
			font-size:				16px;
			line-height:			1.3em;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				font-size:			30px;
				line-height:		1.3em;
				font-weight:		bold;
			}
			*/ }

.veo_templateT1 .playgroup .playgroupItem .playgroupMessage .title {
  /*
					font-family:			$font_oswald_fontFamily;
					font-size:				28px;
					line-height:			1.3em;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						font-size:			76px;
						line-height:		1.3em;
					}
					*/ }

.veo_templateT1 .playgroup .playgroupItem .playgroupMessage .desc {
  text-transform: uppercase;
  /*
					font-family:			$font_oswald_fontFamily;
					font-size:				16px;
					line-height:			1.3em;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						font-size:			30px;
						line-height:		1.3em;
						font-weight:		bold;
					}
					*/ }

.veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage .title {
  /*
					font-family:			$font_oswald_fontFamily;
					font-size:				28px;
					line-height:			1.3em;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						font-size:			76px;
						line-height:		1.3em;
					}
					*/ }

.veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage .desc {
  text-transform: uppercase;
  /*
					font-family:			$font_oswald_fontFamily;
					font-size:				16px;
					line-height:			1.3em;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						font-size:			30px;
						line-height:		1.3em;
						font-weight:		bold;
					}
					*/ }

.veo_templateT1 .studentCases .desc {
  /*
			font-family:						$font_lato_fontFamily;
			font-size:							13px;
			line-height:						16px;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				font-size:						24px;
				line-height:					32px;
			}
			*/ }

.veo_templateT1 .studentCases .caseWrapper {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT1 .studentCases .caseWrapper .caseTitle {
    font-size: 24px;
    line-height: 32px; }
  .veo_templateT1 .studentCases .caseWrapper .caseInfo .title {
    font-size: 16px;
    line-height: 1.3em;
    /*
					font-family:				$font_lato_fontFamily;
					font-size:					16px;
					line-height:				24px;
					font-weight:				bold;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						font-size:				30px;
						line-height:			36px;
					}
					*/ }
    .desktop .veo_templateT1 .studentCases .caseWrapper .caseInfo .title {
      font-size: 30px;
      line-height: 1.3em; }
    .tablet .veo_templateT1 .studentCases .caseWrapper .caseInfo .title,
    .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseInfo .title {
      font-size: 40px;
      line-height: 1.3em; }
  .veo_templateT1 .studentCases .caseWrapper .caseInfo .desc {
    /*
					font-size:					13px;
					line-height:				16px;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						font-size:				22px;
						line-height:			26px;
					}
					*/ }

.veo_templateT1 .maxim .message {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 200; }
  .desktop .veo_templateT1 .maxim .message {
    font-size: 40px;
    line-height: 1.3em; }
  .tablet .veo_templateT1 .maxim .message,
  .largeDesktop .veo_templateT1 .maxim .message {
    font-size: 45px;
    line-height: 60px; }

.veo_templateT1 .maxim .name {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold; }
  .desktop .veo_templateT1 .maxim .name {
    font-size: 25px;
    line-height: 1.3em; }
  .tablet .veo_templateT1 .maxim .name,
  .largeDesktop .veo_templateT1 .maxim .name {
    font-size: 30px;
    line-height: 36px; }

.veo_templateT1 .maxim .title {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: normal;
  text-transform: none; }
  .desktop .veo_templateT1 .maxim .title {
    font-size: 20px;
    line-height: 1.3em; }
  .tablet .veo_templateT1 .maxim .title,
  .largeDesktop .veo_templateT1 .maxim .title {
    font-size: 24px;
    line-height: 32px; }

.page_campus_overview .features .featureItem .featureTitle {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .page_campus_overview .features .featureItem .featureTitle {
    font-size: 14px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .features .featureItem .featureTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .features .featureItem .featureTitle {
    font-size: 28px;
    line-height: 1.3em; }

.page_campus_overview .features .featureItem .featureDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 17px;
  line-height: 1.3em; }
  .tablet .page_campus_overview .features .featureItem .featureDesc {
    font-size: 12px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .features .featureItem .featureDesc {
    font-size: 14px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .features .featureItem .featureDesc {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_overview .features .featureMessage {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 12px;
  line-height: 1.3em; }
  .tablet .page_campus_overview .features .featureMessage {
    font-size: 14px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .features .featureMessage {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .features .featureMessage {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_overview .faculty .staffWrapper .staffItem .staffName {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .tablet .page_campus_overview .faculty .staffWrapper .staffItem .staffName {
    font-size: 14px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .faculty .staffWrapper .staffItem .staffName {
    font-size: 26px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem .staffName {
    font-size: 30px;
    line-height: 1.3em; }

.page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em; }
  .tablet .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
    font-size: 12px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_overview .faculty .moreBtn {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .desktop .page_campus_overview .faculty .moreBtn {
    font-size: 16px;
    line-height: 1.3em; }
  .tablet .page_campus_overview .faculty .moreBtn,
  .largeDesktop .page_campus_overview .faculty .moreBtn {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_overview .calendar .messageWrapper table td .year,
.page_campus_overview .timetable .messageWrapper table td .year {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 17px;
  line-height: 1.3em; }
  .tablet .page_campus_overview .calendar .messageWrapper table td .year, .tablet
  .page_campus_overview .timetable .messageWrapper table td .year {
    font-size: 18px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .calendar .messageWrapper table td .year, .desktop
  .page_campus_overview .timetable .messageWrapper table td .year {
    font-size: 16px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .calendar .messageWrapper table td .year, .largeDesktop
  .page_campus_overview .timetable .messageWrapper table td .year {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_overview .calendar .messageWrapper table td .label,
.page_campus_overview .timetable .messageWrapper table td .label {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 26px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .page_campus_overview .calendar .messageWrapper table td .label, .tablet
  .page_campus_overview .timetable .messageWrapper table td .label {
    font-size: 42px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .calendar .messageWrapper table td .label, .desktop
  .page_campus_overview .timetable .messageWrapper table td .label {
    font-size: 48px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .calendar .messageWrapper table td .label, .largeDesktop
  .page_campus_overview .timetable .messageWrapper table td .label {
    font-size: 76px;
    line-height: 1.3em; }

.page_campus_overview .calendar .messageWrapper table td .more,
.page_campus_overview .timetable .messageWrapper table td .more {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .page_campus_overview .calendar .messageWrapper table td .more, .tablet
  .page_campus_overview .timetable .messageWrapper table td .more {
    font-size: 18px;
    line-height: 1.3em; }
  .desktop .page_campus_overview .calendar .messageWrapper table td .more, .desktop
  .page_campus_overview .timetable .messageWrapper table td .more {
    font-size: 16px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_overview .calendar .messageWrapper table td .more, .largeDesktop
  .page_campus_overview .timetable .messageWrapper table td .more {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 27px;
    line-height: 1.3em; }
    .desktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle {
      font-size: 28px;
      line-height: 1.3em; }
    .tablet .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle,
    .largeDesktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle {
      font-size: 48px;
      line-height: 1.3em; }
  .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoDesc {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoDesc {
      font-size: 24px;
      line-height: 1.6em; }
    .desktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoDesc {
      font-size: 14px;
      line-height: 1.6em; }
    .largeDesktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoDesc {
      font-size: 24px;
      line-height: 1.6em; }
  .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn {
    font-size: 24px;
    line-height: 1.3em;
    text-transform: uppercase; }
    .desktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn {
      font-size: 16px;
      line-height: 1.3em; }

.page_campus_overview .contact .contactInfoWrapper .contactInfo {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 27px;
    line-height: 1.3em; }
    .desktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle {
      font-size: 28px;
      line-height: 1.3em; }
    .tablet .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle,
    .largeDesktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle {
      font-size: 48px;
      line-height: 1.3em; }
  .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoDesc {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoDesc {
      font-size: 24px;
      line-height: 1.6em; }
    .desktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoDesc {
      font-size: 14px;
      line-height: 1.6em; }
    .largeDesktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoDesc {
      font-size: 24px;
      line-height: 1.6em; }
  .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn {
    font-size: 24px;
    line-height: 1.3em;
    text-transform: uppercase; }
    .desktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn {
      font-size: 16px;
      line-height: 1.3em; }

.page_campus_faculty .staffPanel .staffTeam .title {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .page_campus_faculty .staffPanel .staffTeam .title {
    font-size: 32px;
    line-height: 1.3em; }
  .desktop .page_campus_faculty .staffPanel .staffTeam .title,
  .largeDesktop .page_campus_faculty .staffPanel .staffTeam .title {
    font-size: 40px;
    line-height: 1.3em; }

.page_campus_faculty .staffPanel .staffTeam .staffWrapper {
  overflow: hidden; }
  .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase; }
    .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
      font-size: 14px;
      line-height: 1.3em; }
    .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
      font-size: 26px;
      line-height: 1.3em; }
    .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
      font-size: 30px;
      line-height: 1.3em; }
  .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
      font-size: 12px;
      line-height: 1.3em; }
    .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
      font-size: 20px;
      line-height: 1.3em; }
    .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
      font-size: 22px;
      line-height: 1.3em; }
  .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
    .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle {
      font-size: 22px;
      line-height: 1.3em;
      font-weight: 700;
      text-transform: uppercase; }
      .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle {
        font-size: 20px;
        line-height: 1.3em; }
      .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle,
      .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle {
        font-size: 30px;
        line-height: 1.3em; }
    .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message {
      font-size: 17px;
      line-height: 1.3em; }
      .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message {
        font-size: 16px;
        line-height: 1.3em; }
      .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message,
      .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message {
        font-size: 20px;
        line-height: 1.3em; }

.page_campus_calendar .calendarWrapper {
  position: relative; }
  .page_campus_calendar .calendarWrapper .calendar .calendarTitle {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 22px;
    line-height: 1.3em; }
    .tablet .page_campus_calendar .calendarWrapper .calendar .calendarTitle,
    .desktop .page_campus_calendar .calendarWrapper .calendar .calendarTitle,
    .largeDesktop .page_campus_calendar .calendarWrapper .calendar .calendarTitle {
      font-size: 30px;
      line-height: 1.3em; }
  .page_campus_calendar .calendarWrapper .btnPanel {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 17px;
    line-height: 1.3em; }
    .tablet .page_campus_calendar .calendarWrapper .btnPanel,
    .desktop .page_campus_calendar .calendarWrapper .btnPanel,
    .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel {
      font-size: 22px;
      line-height: 1.3em; }

.page_campus_contactus .contactInfoWrapper .generalContact .contactTitle,
.page_campus_contactus .contactInfoWrapper .howToGo .contactTitle,
.page_campus_contactus .contactInfoWrapper .carPark .contactTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 22px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .tablet .page_campus_contactus .contactInfoWrapper .generalContact .contactTitle, .tablet
  .page_campus_contactus .contactInfoWrapper .howToGo .contactTitle, .tablet
  .page_campus_contactus .contactInfoWrapper .carPark .contactTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .desktop .page_campus_contactus .contactInfoWrapper .generalContact .contactTitle, .desktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactTitle, .desktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_contactus .contactInfoWrapper .generalContact .contactTitle, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactTitle, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactTitle {
    font-size: 28px;
    line-height: 1.3em; }

.page_campus_contactus .contactInfoWrapper .generalContact .contactAddress,
.page_campus_contactus .contactInfoWrapper .generalContact .contactTel,
.page_campus_contactus .contactInfoWrapper .generalContact .contactFax,
.page_campus_contactus .contactInfoWrapper .generalContact .contactEmail,
.page_campus_contactus .contactInfoWrapper .generalContact .messsage,
.page_campus_contactus .contactInfoWrapper .howToGo .contactAddress,
.page_campus_contactus .contactInfoWrapper .howToGo .contactTel,
.page_campus_contactus .contactInfoWrapper .howToGo .contactFax,
.page_campus_contactus .contactInfoWrapper .howToGo .contactEmail,
.page_campus_contactus .contactInfoWrapper .howToGo .messsage,
.page_campus_contactus .contactInfoWrapper .carPark .contactAddress,
.page_campus_contactus .contactInfoWrapper .carPark .contactTel,
.page_campus_contactus .contactInfoWrapper .carPark .contactFax,
.page_campus_contactus .contactInfoWrapper .carPark .contactEmail,
.page_campus_contactus .contactInfoWrapper .carPark .messsage {
  font-size: 17px;
  line-height: 1.3em; }
  .tablet .page_campus_contactus .contactInfoWrapper .generalContact .contactAddress, .tablet
  .page_campus_contactus .contactInfoWrapper .generalContact .contactTel, .tablet
  .page_campus_contactus .contactInfoWrapper .generalContact .contactFax, .tablet
  .page_campus_contactus .contactInfoWrapper .generalContact .contactEmail, .tablet
  .page_campus_contactus .contactInfoWrapper .generalContact .messsage, .tablet
  .page_campus_contactus .contactInfoWrapper .howToGo .contactAddress, .tablet
  .page_campus_contactus .contactInfoWrapper .howToGo .contactTel, .tablet
  .page_campus_contactus .contactInfoWrapper .howToGo .contactFax, .tablet
  .page_campus_contactus .contactInfoWrapper .howToGo .contactEmail, .tablet
  .page_campus_contactus .contactInfoWrapper .howToGo .messsage, .tablet
  .page_campus_contactus .contactInfoWrapper .carPark .contactAddress, .tablet
  .page_campus_contactus .contactInfoWrapper .carPark .contactTel, .tablet
  .page_campus_contactus .contactInfoWrapper .carPark .contactFax, .tablet
  .page_campus_contactus .contactInfoWrapper .carPark .contactEmail, .tablet
  .page_campus_contactus .contactInfoWrapper .carPark .messsage {
    font-size: 16px;
    line-height: 1.3em; }
  .desktop .page_campus_contactus .contactInfoWrapper .generalContact .contactAddress, .desktop
  .page_campus_contactus .contactInfoWrapper .generalContact .contactTel, .desktop
  .page_campus_contactus .contactInfoWrapper .generalContact .contactFax, .desktop
  .page_campus_contactus .contactInfoWrapper .generalContact .contactEmail, .desktop
  .page_campus_contactus .contactInfoWrapper .generalContact .messsage, .desktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactAddress, .desktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactTel, .desktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactFax, .desktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactEmail, .desktop
  .page_campus_contactus .contactInfoWrapper .howToGo .messsage, .desktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactAddress, .desktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactTel, .desktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactFax, .desktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactEmail, .desktop
  .page_campus_contactus .contactInfoWrapper .carPark .messsage {
    font-size: 16px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_contactus .contactInfoWrapper .generalContact .contactAddress, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .generalContact .contactTel, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .generalContact .contactFax, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .generalContact .contactEmail, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .generalContact .messsage, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactAddress, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactTel, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactFax, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .howToGo .contactEmail, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .howToGo .messsage, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactAddress, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactTel, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactFax, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .carPark .contactEmail, .largeDesktop
  .page_campus_contactus .contactInfoWrapper .carPark .messsage {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_contactus .contactInfoWrapper .contactInfoList .listTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 22px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .tablet .page_campus_contactus .contactInfoWrapper .contactInfoList .listTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .desktop .page_campus_contactus .contactInfoWrapper .contactInfoList .listTitle,
  .largeDesktop .page_campus_contactus .contactInfoWrapper .contactInfoList .listTitle {
    font-size: 28px;
    line-height: 1.3em; }

.page_campus_contactus .contactInfoWrapper .contactInfoList .generalContact .contactTitle {
  font-size: 20px;
  line-height: 1.3em;
  text-transform: none; }
  .tablet .page_campus_contactus .contactInfoWrapper .contactInfoList .generalContact .contactTitle {
    font-size: 18px;
    line-height: 1.3em; }
  .desktop .page_campus_contactus .contactInfoWrapper .contactInfoList .generalContact .contactTitle,
  .largeDesktop .page_campus_contactus .contactInfoWrapper .contactInfoList .generalContact .contactTitle {
    font-size: 26px;
    line-height: 1.3em; }

.page_campus_contactus .campusMapWrapper .campusMap .title {
  font-size: 14px;
  line-height: 1.3em; }

.page_campus_contactus .enquiryFormWrapper .enquiryForm .title {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .tablet .page_campus_contactus .enquiryFormWrapper .enquiryForm .title,
  .desktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .title,
  .largeDesktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .title {
    font-size: 30px;
    line-height: 1.3em; }

.page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="text"],
.page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="tel"],
.page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="email"] {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="text"],
  .desktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="text"],
  .largeDesktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="text"], .tablet
  .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="tel"],
  .desktop
  .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="tel"],
  .largeDesktop
  .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="tel"], .tablet
  .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="email"],
  .desktop
  .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="email"],
  .largeDesktop
  .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput input[type="email"] {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput button[type="submit"] {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput button[type="submit"],
  .desktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput button[type="submit"],
  .largeDesktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput button[type="submit"] {
    font-size: 30px;
    line-height: 1.3em; }

.page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput select {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput select,
  .desktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput select,
  .largeDesktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput select {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput textarea {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput textarea,
  .desktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput textarea,
  .largeDesktop .page_campus_contactus .enquiryFormWrapper .enquiryForm .formInput textarea {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .desktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn {
    font-size: 20px;
    line-height: 1.3em; }
  .tablet .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder:before {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 24px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder:before {
    font-size: 20px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em; }
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
    font-size: 20px;
    line-height: 1.3em; }
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .desktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .tablet .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
    font-size: 24px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn {
  font-size: 16px;
  line-height: 1.3em; }
  .mobile .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-weight: 600;
    text-transform: uppercase; }
  .tablet .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn,
  .desktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle,
  .desktop .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle {
    font-size: 22px;
    line-height: 1.3em; }

.page_campus_whatsHappening_details {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel {
    text-transform: uppercase; }
    .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date {
      font-size: 18px;
      line-height: 24px; }
      .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date {
        font-size: 22px;
        line-height: 1.3em; }
      .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date {
        font-size: 30px;
        line-height: 36px; }
    .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .month {
      font-size: 12px;
      line-height: 16px; }
      .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .month {
        font-size: 16px;
        line-height: 1.3em; }
      .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .month {
        font-size: 20px;
        line-height: 28px; }
  .page_campus_whatsHappening_details .newsDetails .galleryMessage {
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .page_campus_whatsHappening_details .newsDetails .galleryMessage,
    .desktop .page_campus_whatsHappening_details .newsDetails .galleryMessage,
    .largeDesktop .page_campus_whatsHappening_details .newsDetails .galleryMessage {
      font-size: 22px;
      line-height: 1.3em; }
  .page_campus_whatsHappening_details .newsDetailsMessage {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .page_campus_whatsHappening_details .newsDetailsMessage,
    .desktop .page_campus_whatsHappening_details .newsDetailsMessage,
    .largeDesktop .page_campus_whatsHappening_details .newsDetailsMessage {
      font-size: 22px;
      line-height: 1.3em; }
  .page_campus_whatsHappening_details .sharePanel .sharePanelTitle {
    font-size: 18px;
    line-height: 1.3em;
    text-transform: uppercase; }
    .tablet .page_campus_whatsHappening_details .sharePanel .sharePanelTitle,
    .desktop .page_campus_whatsHappening_details .sharePanel .sharePanelTitle,
    .largeDesktop .page_campus_whatsHappening_details .sharePanel .sharePanelTitle {
      font-size: 24px;
      line-height: 1.3em; }
  .page_campus_whatsHappening_details .backPanel .backBtn {
    font-size: 18px;
    line-height: 1.3em; }
    .tablet .page_campus_whatsHappening_details .backPanel .backBtn,
    .desktop .page_campus_whatsHappening_details .backPanel .backBtn,
    .largeDesktop .page_campus_whatsHappening_details .backPanel .backBtn {
      font-size: 24px;
      line-height: 1.3em; }

.page_editorTemplate table {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .page_editorTemplate table tr.langRow th {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3em; }
    .tablet .page_editorTemplate table tr.langRow th,
    .desktop .page_editorTemplate table tr.langRow th,
    .largeDesktop .page_editorTemplate table tr.langRow th {
      font-size: 18px;
      line-height: 1.3em; }
  .page_editorTemplate table tr.headRow th {
    font-weight: 900; }
  .page_editorTemplate table th {
    text-transform: uppercase; }
  .page_editorTemplate table th, .page_editorTemplate table td {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .page_editorTemplate table th,
    .desktop .page_editorTemplate table th,
    .largeDesktop .page_editorTemplate table th, .tablet .page_editorTemplate table td,
    .desktop .page_editorTemplate table td,
    .largeDesktop .page_editorTemplate table td {
      font-size: 14px;
      line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 18px;
  line-height: 1.3em; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem,
  .desktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsIndex {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsIndex,
  .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsIndex,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsIndex {
    font-size: 36px;
    line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsTitle {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 27px;
  line-height: 1.3em;
  font-weight: 600; }
  .desktop.en .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsTitle {
    font-size: 32px;
    line-height: 1.3em; }
  .desktop.tc .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsTitle {
    font-size: 30px;
    line-height: 1.3em; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsTitle,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsTitle {
    font-size: 48px;
    line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsShortDescWrapper .detailsShortDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsShortDescWrapper .detailsShortDesc,
  .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsShortDescWrapper .detailsShortDesc,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsShortDescWrapper .detailsShortDesc {
    font-size: 18px;
    line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsDesc,
  .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsDesc,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsDesc {
    font-size: 18px;
    line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 18px;
  line-height: 1.3em;
  font-weight: 700; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconTitle,
  .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconTitle,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconTitle {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconDesc,
  .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconDesc,
  .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconDesc {
    font-size: 18px;
    line-height: 1.3em; }

.veo_templateT4 .maxim .message {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 200; }
  .desktop .veo_templateT4 .maxim .message {
    font-size: 40px;
    line-height: 1.3em; }
  .tablet .veo_templateT4 .maxim .message,
  .largeDesktop .veo_templateT4 .maxim .message {
    font-size: 45px;
    line-height: 60px; }

.veo_templateT4 .maxim .name {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold; }
  .tablet .veo_templateT4 .maxim .name,
  .desktop .veo_templateT4 .maxim .name,
  .largeDesktop .veo_templateT4 .maxim .name {
    font-size: 30px;
    line-height: 36px; }

.veo_templateT4 .maxim .title {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: normal;
  text-transform: none; }
  .tablet .veo_templateT4 .maxim .title,
  .desktop .veo_templateT4 .maxim .title,
  .largeDesktop .veo_templateT4 .maxim .title {
    font-size: 24px;
    line-height: 32px; }

.veo_templateT5 .history .historyTimeline .historyTimestamp .year {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 600; }
  .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp .year,
  .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp .year,
  .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp .year {
    font-size: 60px;
    line-height: 1.3em;
    font-weight: 500; }

.veo_templateT5 .history .historyTimeline .historyTimestamp .message {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp .message,
  .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp .message,
  .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp .message {
    font-size: 22px;
    line-height: 1.3em; }

.veo_templateT6 .leadin {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 18px;
  line-height: 1.3em; }
  .tablet .veo_templateT6 .leadin,
  .desktop .veo_templateT6 .leadin,
  .largeDesktop .veo_templateT6 .leadin {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT6 .placementList {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT6 .placementList .listRowWrapper {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .veo_templateT6 .placementList .listRowWrapper,
    .desktop .veo_templateT6 .placementList .listRowWrapper,
    .largeDesktop .veo_templateT6 .placementList .listRowWrapper {
      font-size: 22px;
      line-height: 1.3em; }
    .veo_templateT6 .placementList .listRowWrapper.listTitleRow {
      font-size: 14px;
      line-height: 1.3em;
      text-transform: uppercase; }
      .tablet .veo_templateT6 .placementList .listRowWrapper.listTitleRow,
      .desktop .veo_templateT6 .placementList .listRowWrapper.listTitleRow,
      .largeDesktop .veo_templateT6 .placementList .listRowWrapper.listTitleRow {
        font-size: 24px;
        line-height: 1.3em; }
  .veo_templateT6 .placementList .moreBtn {
    font-size: 13px;
    line-height: 1.3em;
    text-transform: uppercase; }
    .tablet .veo_templateT6 .placementList .moreBtn,
    .desktop .veo_templateT6 .placementList .moreBtn,
    .largeDesktop .veo_templateT6 .placementList .moreBtn {
      font-size: 24px;
      line-height: 1.3em; }

.veo_templateT6 .download .downloadBtn {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 700; }
  .tablet .veo_templateT6 .download .downloadBtn,
  .desktop .veo_templateT6 .download .downloadBtn,
  .largeDesktop .veo_templateT6 .download .downloadBtn {
    font-size: 20px;
    line-height: 1.3em; }

.veo_templateT9 .maxim .message {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 200; }
  .desktop .veo_templateT9 .maxim .message {
    font-size: 40px;
    line-height: 1.3em; }
  .tablet .veo_templateT9 .maxim .message,
  .largeDesktop .veo_templateT9 .maxim .message {
    font-size: 45px;
    line-height: 60px; }

.veo_templateT9 .maxim .name {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold; }
  .tablet .veo_templateT9 .maxim .name,
  .desktop .veo_templateT9 .maxim .name,
  .largeDesktop .veo_templateT9 .maxim .name {
    font-size: 30px;
    line-height: 36px; }

.veo_templateT9 .maxim .title {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: normal;
  text-transform: none; }
  .tablet .veo_templateT9 .maxim .title,
  .desktop .veo_templateT9 .maxim .title,
  .largeDesktop .veo_templateT9 .maxim .title {
    font-size: 24px;
    line-height: 32px; }

.veo_templateT9 .ibLearner .learnerTitle {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 27px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .veo_templateT9 .ibLearner .learnerTitle,
  .desktop .veo_templateT9 .ibLearner .learnerTitle,
  .largeDesktop .veo_templateT9 .ibLearner .learnerTitle {
    font-size: 48px;
    line-height: 1.3em; }

.veo_templateT9 .ibLearner .learnerDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 14px;
  line-height: 1.3em; }
  .tablet .veo_templateT9 .ibLearner .learnerDesc,
  .desktop .veo_templateT9 .ibLearner .learnerDesc,
  .largeDesktop .veo_templateT9 .ibLearner .learnerDesc {
    font-size: 22px;
    line-height: 1.3em; }

.veo_templateT9 .ibLearner .attributes .attribute .name {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .veo_templateT9 .ibLearner .attributes .attribute .name,
  .desktop .veo_templateT9 .ibLearner .attributes .attribute .name,
  .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute .name {
    font-size: 30px;
    line-height: 1.3em; }

.veo_templateT9 .ibLearner .attributes .attribute .message .messageTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 900;
  text-transform: uppercase; }

.veo_templateT9 .ibLearner .attributes .attribute .message .messageDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 14px;
  line-height: 1.3em; }

.veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 30px;
  line-height: 1.3em;
  font-weight: 900;
  text-transform: uppercase; }
  .tablet.en .veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageTitle,
  .desktop.en .veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageTitle {
    font-size: 24px;
    line-height: 1.3em; }
  .tablet.tc .veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageTitle,
  .desktop.tc .veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageTitle {
    font-size: 20px;
    line-height: 1.3em; }

.veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 22px;
  line-height: 1.3em; }

.veo_templateT12 .tabMenuWrapper .tabMenuBtn {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .veo_templateT12 .tabMenuWrapper .tabMenuBtn {
    font-size: 24px; }

.veo_templateT12 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .veo_templateT12 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label {
    font-size: 20px; }
  .desktop .veo_templateT12 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label,
  .largeDesktop .veo_templateT12 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label {
    font-size: 22px;
    line-height: 1.3em; }

.veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headTitle {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headTitle,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headTitle,
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headTitle {
      font-size: 34px;
      line-height: 1.3em; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headDesc {
    font-size: 14px;
    line-height: 1.3em; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headDesc,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headDesc,
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tabHead .headDesc {
      font-size: 22px;
      line-height: 1.3em; }

.veo_templateT12 .tabWrapper .tabItem .tabContent .editorContent {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 14px;
  line-height: 1.3em; }
  .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .editorContent,
  .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .editorContent,
  .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .editorContent {
    font-size: 22px;
    line-height: 1.3em; }

.veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc {
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc {
      font-size: 20px;
      line-height: 1.3em; }
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc {
      font-size: 24px;
      line-height: 1.3em; }
    .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc .appendix {
      font-size: 12px;
      line-height: 1.3em; }
      .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc .appendix,
      .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc .appendix,
      .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc .appendix {
        font-size: 18px;
        line-height: 1.3em; }

.veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel .headTitle {
    font-size: 20px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel .headTitle,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel .headTitle {
      font-size: 26px;
      line-height: 1.3em; }
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel .headTitle {
      font-size: 34px;
      line-height: 1.3em; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel a span {
    font-size: 14px;
    line-height: 1.3em; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel a span,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel a span,
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .infoPanel a span {
      font-size: 22px;
      line-height: 1.3em; }

.veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel .tableCaption {
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel .tableCaption,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel .tableCaption,
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel .tableCaption {
      font-size: 24px;
      line-height: 1.3em; }
  .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr th,
  .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr td {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr th,
    .desktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr th,
    .largeDesktop .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr th, .tablet
    .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr td,
    .desktop
    .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr td,
    .largeDesktop
    .veo_templateT12 .tabWrapper .tabItem .tabContent .tablePanel table tr td {
      font-size: 18px;
      line-height: 1.3em; }

.veo_templateT14 .tabMenuWrapper .tabMenuBtn {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .veo_templateT14 .tabMenuWrapper .tabMenuBtn {
    font-size: 24px; }

.veo_templateT14 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase; }
  .tablet .veo_templateT14 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label {
    font-size: 24px; }
  .desktop .veo_templateT14 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label,
  .largeDesktop .veo_templateT14 .tabMenuWrapper .tabMenuContainer .tabMenu .itemOption label {
    font-size: 30px;
    line-height: 1.3em; }

.veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question {
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question,
    .desktop .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question,
    .largeDesktop .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question {
      font-size: 24px;
      line-height: 1.3em; }
  .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper .answer {
    font-size: 14px;
    line-height: 1.3em; }
    .tablet .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper .answer,
    .desktop .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper .answer,
    .largeDesktop .veo_templateT14 .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper .answer {
      font-size: 20px;
      line-height: 1.3em; }

.veo_templateT14 .contactSection .contactWrapper .contactContent .contactTitle {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 18px;
  line-height: 1.3em; }
  .tablet .veo_templateT14 .contactSection .contactWrapper .contactContent .contactTitle {
    font-size: 36px;
    line-height: 1.3em; }
  .desktop .veo_templateT14 .contactSection .contactWrapper .contactContent .contactTitle,
  .largeDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .contactTitle {
    font-size: 48px;
    line-height: 1.3em; }

.veo_templateT14 .contactSection .contactWrapper .contactContent .contactDesc {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 12px;
  line-height: 1.3em; }
  .tablet .veo_templateT14 .contactSection .contactWrapper .contactContent .contactDesc {
    font-size: 18px;
    line-height: 1.3em; }
  .desktop .veo_templateT14 .contactSection .contactWrapper .contactContent .contactDesc,
  .largeDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .contactDesc {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 14px;
  line-height: 1.3em;
  text-transform: uppercase; }
  .tablet .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn {
    font-size: 18px;
    line-height: 1.3em; }
  .desktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn,
  .largeDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .tableTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .tablet .veo_templateT15 .tableSection .tableTitle,
  .desktop .veo_templateT15 .tableSection .tableTitle,
  .largeDesktop .veo_templateT15 .tableSection .tableTitle {
    font-size: 34px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .desktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn {
    font-size: 20px;
    line-height: 1.3em; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper {
  /*
				.toggleSelectionHolder
				{
					&:before
					{
						font-family:				$font_lato_fontFamily;
						font-size:					24px;
						line-height:				1.3em;
						font-weight:				$font_leto_bold;
						text-transform:				uppercase;
					}
					.toggleSelectionBtn
					{
						font-family:				$font_lato_fontFamily;
						font-size:					19px;
						line-height:				1.3em;
						text-transform:				uppercase;
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							font-size:				24px;
							line-height:			1.3em;
						}
					}
					.toggleSelectionContainer
					{
						.toggleSelection
						{
							.itemOption
							{
								label
								{
									font-family:						$font_lato_fontFamily;
									font-size:							19px;
									line-height:						1.3em;
	//								text-transform:						uppercase;
									.desktop &,
									.largeDesktop &
									{
										font-size:						22px;
										line-height:					1.3em;
									}
								}
							}
						}
					}
				}
				*/ }
  .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder:before {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 700;
    text-transform: uppercase; }
    .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder:before {
      font-size: 20px;
      line-height: 1.3em; }
  .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 19px;
    line-height: 1.3em;
    text-transform: uppercase; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
    .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
      font-size: 24px;
      line-height: 1.3em; }
  .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 16px;
    line-height: 1.3em; }
    .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
      font-size: 20px;
      line-height: 1.3em; }
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
      font-size: 22px;
      line-height: 1.3em; }

.veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 19px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
    font-size: 20px;
    line-height: 1.3em; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
    font-size: 24px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn {
  font-size: 16px;
  line-height: 1.3em; }
  .mobile .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-weight: 600;
    text-transform: uppercase; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn,
  .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 22px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.3em; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle,
  .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle {
    font-size: 22px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .tableWrapper .tableCaption {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase; }
  .tablet .veo_templateT15 .tableSection .tableWrapper .tableCaption,
  .desktop .veo_templateT15 .tableSection .tableWrapper .tableCaption,
  .largeDesktop .veo_templateT15 .tableSection .tableWrapper .tableCaption {
    font-size: 30px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .tableWrapper .tableIndex {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 13px;
  line-height: 1.6em; }
  .tablet .veo_templateT15 .tableSection .tableWrapper .tableIndex,
  .desktop .veo_templateT15 .tableSection .tableWrapper .tableIndex,
  .largeDesktop .veo_templateT15 .tableSection .tableWrapper .tableIndex {
    font-size: 14px;
    line-height: 1.3em; }

.veo_templateT15 .tableSection .tableWrapper table {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT15 .tableSection .tableWrapper table tr.langRow th {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3em; }
    .tablet .veo_templateT15 .tableSection .tableWrapper table tr.langRow th,
    .desktop .veo_templateT15 .tableSection .tableWrapper table tr.langRow th,
    .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr.langRow th {
      font-size: 18px;
      line-height: 1.3em; }
  .veo_templateT15 .tableSection .tableWrapper table tr.headRow th {
    font-weight: 900; }
  .veo_templateT15 .tableSection .tableWrapper table th {
    text-transform: uppercase; }
  .veo_templateT15 .tableSection .tableWrapper table th, .veo_templateT15 .tableSection .tableWrapper table td {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .veo_templateT15 .tableSection .tableWrapper table th,
    .desktop .veo_templateT15 .tableSection .tableWrapper table th,
    .largeDesktop .veo_templateT15 .tableSection .tableWrapper table th, .tablet .veo_templateT15 .tableSection .tableWrapper table td,
    .desktop .veo_templateT15 .tableSection .tableWrapper table td,
    .largeDesktop .veo_templateT15 .tableSection .tableWrapper table td {
      font-size: 14px;
      line-height: 1.3em; }
  .veo_templateT15 .tableSection .tableWrapper table td.campus {
    font-weight: 700; }
    .mobile .veo_templateT15 .tableSection .tableWrapper table td.campus {
      font-size: 14px;
      line-height: 1.3em; }

.veo_templateT15 .tableSection .tableWrapper .tableRemarks {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksCaption {
    font-size: 14px;
    line-height: 1.3em;
    text-transform: uppercase; }
    .tablet .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksCaption,
    .desktop .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksCaption,
    .largeDesktop .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksCaption {
      font-size: 16px;
      line-height: 1.3em; }
  .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksDesc {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksDesc,
    .desktop .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksDesc,
    .largeDesktop .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksDesc {
      font-size: 12px;
      line-height: 1.3em; }

.veo_template_searchResult .searchBox .searchBoxInputWrapper input[type=text] {
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 20px;
  line-height: 60px; }
  .tablet .veo_template_searchResult .searchBox .searchBoxInputWrapper input[type=text],
  .desktop .veo_template_searchResult .searchBox .searchBoxInputWrapper input[type=text],
  .largeDesktop .veo_template_searchResult .searchBox .searchBoxInputWrapper input[type=text] {
    font-size: 24px;
    line-height: 50px; }

.veo_template_searchResult .searchContent {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .veo_template_searchResult .searchContent .searchheading {
    font-size: 18px;
    line-height: 1.3em; }
    .tablet .veo_template_searchResult .searchContent .searchheading,
    .desktop .veo_template_searchResult .searchContent .searchheading,
    .largeDesktop .veo_template_searchResult .searchContent .searchheading {
      font-size: 32px;
      line-height: 1.3em; }
  .veo_template_searchResult .searchContent .summary {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .veo_template_searchResult .searchContent .summary,
    .desktop .veo_template_searchResult .searchContent .summary,
    .largeDesktop .veo_template_searchResult .searchContent .summary {
      font-size: 16px;
      line-height: 1.3em; }
  .veo_template_searchResult .searchContent .results .result_block .result_index,
  .veo_template_searchResult .searchContent .results .result_altblock .result_index {
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 700; }
    .tablet .veo_template_searchResult .searchContent .results .result_block .result_index,
    .desktop .veo_template_searchResult .searchContent .results .result_block .result_index,
    .largeDesktop .veo_template_searchResult .searchContent .results .result_block .result_index, .tablet
    .veo_template_searchResult .searchContent .results .result_altblock .result_index,
    .desktop
    .veo_template_searchResult .searchContent .results .result_altblock .result_index,
    .largeDesktop
    .veo_template_searchResult .searchContent .results .result_altblock .result_index {
      font-size: 24px;
      line-height: 1.3em; }
  .veo_template_searchResult .searchContent .results .result_block .result_title,
  .veo_template_searchResult .searchContent .results .result_altblock .result_title {
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 700; }
    .tablet .veo_template_searchResult .searchContent .results .result_block .result_title,
    .desktop .veo_template_searchResult .searchContent .results .result_block .result_title,
    .largeDesktop .veo_template_searchResult .searchContent .results .result_block .result_title, .tablet
    .veo_template_searchResult .searchContent .results .result_altblock .result_title,
    .desktop
    .veo_template_searchResult .searchContent .results .result_altblock .result_title,
    .largeDesktop
    .veo_template_searchResult .searchContent .results .result_altblock .result_title {
      font-size: 24px;
      line-height: 1.3em; }
  .veo_template_searchResult .searchContent .results .result_block .result_path,
  .veo_template_searchResult .searchContent .results .result_altblock .result_path {
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 700; }
    .tablet .veo_template_searchResult .searchContent .results .result_block .result_path,
    .desktop .veo_template_searchResult .searchContent .results .result_block .result_path,
    .largeDesktop .veo_template_searchResult .searchContent .results .result_block .result_path, .tablet
    .veo_template_searchResult .searchContent .results .result_altblock .result_path,
    .desktop
    .veo_template_searchResult .searchContent .results .result_altblock .result_path,
    .largeDesktop
    .veo_template_searchResult .searchContent .results .result_altblock .result_path {
      font-size: 16px;
      line-height: 1.3em; }
  .veo_template_searchResult .searchContent .results .result_block .context,
  .veo_template_searchResult .searchContent .results .result_altblock .context {
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 700; }
    .tablet .veo_template_searchResult .searchContent .results .result_block .context,
    .desktop .veo_template_searchResult .searchContent .results .result_block .context,
    .largeDesktop .veo_template_searchResult .searchContent .results .result_block .context, .tablet
    .veo_template_searchResult .searchContent .results .result_altblock .context,
    .desktop
    .veo_template_searchResult .searchContent .results .result_altblock .context,
    .largeDesktop
    .veo_template_searchResult .searchContent .results .result_altblock .context {
      font-size: 18px;
      line-height: 1.3em; }
  .veo_template_searchResult .searchContent .result_pages {
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .veo_template_searchResult .searchContent .result_pages,
    .desktop .veo_template_searchResult .searchContent .result_pages,
    .largeDesktop .veo_template_searchResult .searchContent .result_pages {
      font-size: 20px;
      line-height: 1.3em; }
    .veo_template_searchResult .searchContent .result_pages span.active {
      font-weight: 700; }

/* FRAMEWORK */
.backToTop {
  display: block;
  width: 48px;
  height: 48px;
  margin: 10px auto 0;
  position: fixed;
  bottom: 30px;
  right: 10px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-color: rgba(61, 166, 206, 0.7);
  background-image: url("../images/common/topBannerMoreArrow.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  border-radius: 50px;
  transition: all 0.2s ease-out; }
  .tablet .backToTop,
  .desktop .backToTop,
  .largeDesktop .backToTop {
    bottom: 50px; }
  .scrolledTop .backToTop {
    -webkit-transform: translate(0, 200px) rotate(180deg);
            transform: translate(0, 200px) rotate(180deg); }
  .deviceDesktop .backToTop:hover, .deviceDesktop .backToTop:active {
    background-color: rgba(44, 137, 172, 0.7); }

.commonBtn {
  display: inline-block;
  min-width: 80px;
  padding: 8px 16px;
  background-color: transparent;
  font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  color: #006cb0;
  text-align: center;
  text-transform: uppercase;
  border-color: #006cb0;
  border-style: dotted;
  border-width: 1px;
  transition: all 0.2s ease-out; }
  .tablet .commonBtn,
  .desktop .commonBtn,
  .largeDesktop .commonBtn {
    min-width: 120px;
    padding: 12px 24px;
    border-width: 2px;
    line-height: 1.3em; }
  .desktop .commonBtn {
    font-size: 16px; }
  .tablet .commonBtn,
  .largeDesktop .commonBtn {
    font-size: 24px; }
  .deviceDesktop .commonBtn:hover, .deviceDesktop .commonBtn:active {
    background-color: #006cb0;
    color: #ffffff; }

.fixedWrapper {
  width: 100%;
  position: fixed; }
  .menuOpen .fixedWrapper,
  .popupOpen .fixedWrapper {
    height: 100%; }
  .menuOpen .fixedWrapper {
    overflow-y: auto; }

.mainWrapper {
  width: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .menuOpen .tablet .mainWrapper, .menuOpen
  .desktop .mainWrapper, .menuOpen
  .largeDesktop .mainWrapper {
    -webkit-transform: translate(-463px, 0);
            transform: translate(-463px, 0); }
  .loadingOpen .mainWrapper,
  .menuOpen .mainWrapper,
  .popupOpen .mainWrapper {
    position: relative; }
  .mainWrapper .content {
    width: 100%;
    margin: 50px auto 0;
    /*
		.topPanel
		{
			z-index: 2;
			position: relative;
			padding: 10px 0;
			.desktop &,
			.largeDesktop &
			{
				padding: 10px;
			}
			.banner
			{
				img
				{
					display: block;
					width: 100%;
				}
			}
		}
		*/ }
    .tablet .mainWrapper .content,
    .desktop .mainWrapper .content,
    .largeDesktop .mainWrapper .content {
      margin: 0 auto; }
    .loadingOpen .mainWrapper .content,
    .menuOpen .mainWrapper .content,
    .popupOpen .mainWrapper .content {
      margin: 0 auto; }
    .mobile.menuOpen .mainWrapper .content {
      margin: 50px auto 0px; }

.mobile .searchBar,
.tablet .searchBar {
  display: none; }

.searchOpen.desktop .searchBar,
.searchOpen.largeDesktop .searchBar {
  height: 100px; }

.desktop .searchBar,
.largeDesktop .searchBar {
  height: 0;
  background-color: #006cb0;
  transition: height 0.2s ease-out; }

.searchBar .searchBox {
  display: block;
  position: relative;
  line-height: 100px;
  /*
		color: $menu_searchBoxColor;
		.tablet &
		{
		padding: 20px 0;
		}
		.desktop &,
		.largeDesktop &
		{
			display: none;
		}
		*/ }
  .searchBar .searchBox .searchBtn {
    display: inline-block;
    width: 30px;
    height: 100px;
    margin: 0 0 0 20px;
    vertical-align: middle; }
    .searchBar .searchBox .searchBtn:before {
      content: "";
      display: block;
      width: 30px;
      height: 100px;
      position: absolute;
      background-image: url("../images/common/menuSearchBtn.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center center; }
  .searchBar .searchBox .searchBoxInputWrapper {
    display: inline-block;
    width: 80%;
    position: relative;
    vertical-align: middle; }
    .searchBar .searchBox .searchBoxInputWrapper input[type=text] {
      display: block;
      width: 100%;
      height: 60px;
      padding: 0 10px;
      border-width: 0;
      color: #ffffff;
      background-color: transparent; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]::-webkit-input-placeholder {
        color: #ffffff; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]::-moz-placeholder {
        color: #ffffff; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]:-ms-input-placeholder {
        color: #ffffff; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]:-moz-placeholder {
        color: #ffffff; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]:focus::-webkit-input-placeholder {
        color: #c6c6c6; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]:focus::-moz-placeholder {
        color: #c6c6c6; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]:focus:-ms-input-placeholder {
        color: #c6c6c6; }
      .searchBar .searchBox .searchBoxInputWrapper input[type=text]:focus:-moz-placeholder {
        color: #c6c6c6; }
  .tablet .searchBar .searchBox .closeBtn,
  .mobile .searchBar .searchBox .closeBtn {
    display: none; }

.searchBar .closeBtn,
.alertBar .closeBtn {
  display: block;
  width: 60px;
  height: 100px;
  position: absolute;
  right: 10px;
  top: 0;
  background-image: url("../images/common/menuCloseBtn.png");
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center center; }

.alertBar {
  position: relative;
  display: none;
  width: 100%;
  background-color: #ffb129;
  overflow: hidden; }
  .alertOpen .alertBar {
    display: block; }
  .alertBar .alertBox {
    display: block;
    margin: 0 auto;
    min-height: 100px;
    padding: 10px;
    position: relative; }
    .mobile .alertBar .alertBox {
      min-height: 50px; }
  .alertBar .alertIcon {
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url("../images/common/alertIcon.png");
    background-size: 100% auto;
    top: -14px;
    left: 15%;
    -webkit-transform: translate(-70px, 0);
            transform: translate(-70px, 0); }
    .mobile .alertBar .alertIcon {
      width: 30px;
      height: 30px;
      top: -5px;
      left: 0;
      -webkit-transform: none;
              transform: none; }
  .alertBar table {
    width: 100%;
    min-height: 80px;
    position: relative; }
    .alertBar table td {
      vertical-align: middle; }
  .alertBar .alertBoxLink {
    display: block;
    width: 100%;
    position: relative;
    color: #ffffff; }
  .alertBar .alertMessage {
    position: relative;
    display: block;
    width: 70%;
    margin: 0 auto;
    box-sizing: border-box; }
    .mobile .alertBar .alertMessage {
      width: 100%;
      padding: 0 40px; }
  .mobile .alertBar,
  .tablet .alertBar,
  .desktop .alertBar,
  .largeDesktop .alertBar {
    transition: height 0.2s ease-out; }
  .tablet .alertBar .closeBtn {
    right: 5px; }
  .mobile .alertBar .closeBtn {
    right: 0px; }
  .tablet .alertBar .closeBtn,
  .mobile .alertBar .closeBtn {
    width: 40px;
    height: 50px;
    background-size: 40px; }

.veoSection {
  display: block;
  padding: 30px 0 0;
  text-align: center;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out; }
  .tablet .veoSection,
  .desktop .veoSection,
  .largeDesktop .veoSection {
    padding: 50px 0 0; }
  .veoSection.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veoSection .title {
    max-width: 1200px;
    margin: 0 auto;
    color: #006cb0; }
    .veoSection .title.titleLine:after {
      content: "";
      display: block;
      width: 30px;
      height: 2px;
      margin: 30px auto 0; }
      .tablet .veoSection .title.titleLine:after,
      .desktop .veoSection .title.titleLine:after,
      .largeDesktop .veoSection .title.titleLine:after {
        width: 100px;
        height: 4px;
        margin: 50px auto 0; }
  .veoSection.pageTop {
    padding-left: 30px;
    padding-right: 30px; }
    .tablet .veoSection.pageTop,
    .desktop .veoSection.pageTop,
    .largeDesktop .veoSection.pageTop {
      padding-left: 50px;
      padding-right: 50px; }
    .veoSection.pageTop .title:after {
      background-color: #e6b319; }
    .veoSection.pageTop .desc {
      margin: 30px auto 0;
      color: #000000; }
      .tablet .veoSection.pageTop .desc,
      .desktop .veoSection.pageTop .desc,
      .largeDesktop .veoSection.pageTop .desc {
        margin: 50px 10vw 0; }

.veoSlider .slick-arrow {
  width: 25px;
  height: 40px; }
  .tablet .veoSlider .slick-arrow,
  .desktop .veoSlider .slick-arrow,
  .largeDesktop .veoSlider .slick-arrow {
    width: 50px;
    height: 80px; }
  .veoSlider .slick-arrow:before {
    content: "";
    display: block;
    width: 25px;
    height: 40px;
    background-image: url("../images/common/bannerArrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center; }
    .tablet .veoSlider .slick-arrow:before,
    .desktop .veoSlider .slick-arrow:before,
    .largeDesktop .veoSlider .slick-arrow:before {
      width: 50px;
      height: 80px; }
  .veoSlider .slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: 50% 25%;
            transform-origin: 50% 25%; }
  .veoSlider .slick-arrow.slick-next {
    right: 0; }

.veoSlider.topSlider.slick-dotted.slick-slider {
  margin: 0; }

.veoSlider.topSlider + .veoSliderTitle {
  display: block;
  width: 100%;
  padding: 0 30px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(0, -24px) translate(-50%, -100%);
          transform: translate(0, -24px) translate(-50%, -100%);
  text-align: center;
  line-height: 36px;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #ffffff;
  pointer-events: none; }
  .tablet .veoSlider.topSlider + .veoSliderTitle,
  .desktop .veoSlider.topSlider + .veoSliderTitle,
  .largeDesktop .veoSlider.topSlider + .veoSliderTitle {
    padding: 0 50px; }
  .tablet .veoSlider.topSlider + .veoSliderTitle {
    -webkit-transform: translate(0, -50px) translate(-50%, -100%);
            transform: translate(0, -50px) translate(-50%, -100%); }
  .desktop .veoSlider.topSlider + .veoSliderTitle,
  .largeDesktop .veoSlider.topSlider + .veoSliderTitle {
    -webkit-transform: translate(0, -80px) translate(-50%, -100%);
            transform: translate(0, -80px) translate(-50%, -100%); }

.veoSlider.topSlider.active .slick-track {
  -webkit-transform: scale(1);
          transform: scale(1); }

.veoSlider.topSlider .slick-track {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  transition: all 1s ease-out; }

.veoSlider.topSlider .slick-list:after {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.5)); }
  .tablet .veoSlider.topSlider .slick-list:after,
  .desktop .veoSlider.topSlider .slick-list:after,
  .largeDesktop .veoSlider.topSlider .slick-list:after {
    padding: 0 50px; }
  .tablet .veoSlider.topSlider .slick-list:after {
    height: 110px; }
  .desktop .veoSlider.topSlider .slick-list:after,
  .largeDesktop .veoSlider.topSlider .slick-list:after {
    height: 200px; }

.veoSlider.topSlider .sliderItem {
  height: 41.0vw;
  position: relative; }
  .veoSlider.topSlider .sliderItem.active img {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    transition: opacity 2s ease-out, -webkit-transform 2s ease-out;
    transition: transform 2s ease-out, opacity 2s ease-out;
    transition: transform 2s ease-out, opacity 2s ease-out, -webkit-transform 2s ease-out; }
  .veoSlider.topSlider .sliderItem.active .videoWrapper {
    -webkit-transform: scale(1);
            transform: scale(1);
    transition: opacity 2s ease-out, -webkit-transform 2s ease-out;
    transition: transform 2s ease-out, opacity 2s ease-out;
    transition: transform 2s ease-out, opacity 2s ease-out, -webkit-transform 2s ease-out; }
  .veoSlider.topSlider .sliderItem img {
    width: 100%;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
    transition: opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s;
    transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s;
    transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s; }
  .veoSlider.topSlider .sliderItem .videoWrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    transition: opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s;
    transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s;
    transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s; }
    .devicePortable .veoSlider.topSlider .sliderItem .videoWrapper {
      background-color: transparent; }
    .veoSlider.topSlider .sliderItem .videoWrapper video {
      width: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn {
      display: block;
      width: 40px;
      height: 40px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(0, -20px) translate(-50%, -50%);
              transform: translate(0, -20px) translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 40px;
      border-style: solid;
      border-color: #ffffff;
      border-width: 2px; }
      .tablet .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn,
      .desktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn,
      .largeDesktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn {
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .tablet .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn,
      .desktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn,
      .largeDesktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn {
        width: 100px;
        height: 100px;
        border-radius: 100px; }
      .deviceDesktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn:hover:after, .deviceDesktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn:active:after {
        -webkit-transform: translate(-40%, -50%) scale(1.4);
                transform: translate(-40%, -50%) scale(1.4); }
      .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-40%, -50%);
                transform: translate(-40%, -50%);
        border-style: solid;
        border-color: transparent transparent transparent #ffffff;
        border-width: 10px 0 10px 20px;
        transition: -webkit-transform 0.4s ease-out;
        transition: transform 0.4s ease-out;
        transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out; }
        .tablet .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn:after,
        .desktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn:after,
        .largeDesktop .veoSlider.topSlider .sliderItem .videoWrapper .videoBtn:after {
          width: 30px;
          height: 30px;
          border-width: 15px 0 15px 30px; }

.veoSlider.topSlider .slick-dots {
  bottom: 10px;
  border-width: 2px; }
  .tablet .veoSlider.topSlider .slick-dots,
  .desktop .veoSlider.topSlider .slick-dots,
  .largeDesktop .veoSlider.topSlider .slick-dots {
    bottom: 20px; }
  .veoSlider.topSlider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 10px; }
    .veoSlider.topSlider .slick-dots li button {
      width: 12px;
      height: 12px; }
      .veoSlider.topSlider .slick-dots li button:before {
        content: "";
        width: 12px;
        height: 12px;
        background-color: #ffffff;
        border-radius: 12px;
        opacity: 1;
        transition: opacity 0.2s ease-out; }
    .veoSlider.topSlider .slick-dots li.slick-active button:before {
      background-color: transparent;
      border-style: solid;
      border-width: 1px;
      border-color: #ffffff;
      -webkit-transform: scale(1.4);
              transform: scale(1.4); }

.mobile .veoSlider.topSlider .slick-arrow {
  display: none !important; }

.veo_map_infowindow {
  display: block;
  text-align: left;
  color: #000000; }
  .mobile .veo_map_infowindow {
    max-width: 240px; }
  .veo_map_infowindow:after {
    content: "";
    display: block;
    clear: both; }
  .veo_map_infowindow a {
    color: #006cb0;
    transition: all 0.2s ease-out; }
    .veo_map_infowindow a:hover .deviceDesktop, .veo_map_infowindow a:active .deviceDesktop {
      color: #e6b319; }
  .veo_map_infowindow img {
    float: left;
    margin: 0 10px 0 -10px; }
    .mobile .veo_map_infowindow img {
      max-width: 100% !important; }

.pageScrollHolder {
  position: relative;
  display: block;
  width: 100%;
  height: 0px; }

.pageScrollMenu {
  position: relative;
  display: block;
  width: 100%;
  z-index: 3;
  top: 0px;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }
  .fixedSubMenu.largeDesktop .pageScrollMenu,
  .fixedSubMenu.desktop .pageScrollMenu,
  .fixedSubMenu.tablet .pageScrollMenu,
  .fixedSubMenu.mobile .pageScrollMenu {
    position: fixed;
    top: 0px; }

.fixedSubMenu.largeDesktop .pageScrollHolder,
.fixedSubMenu.desktop .pageScrollHolder {
  padding-top: 84px; }

.fixedSubMenu.tablet .pageScrollHolder,
.fixedSubMenu.mobile .pageScrollHolder {
  padding-top: 75px; }

.searchBar,
.header {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s; }

.headerWrapper .innerShadowTop {
  transition: all 0.2s ease-out; }

.headerWrapper .header {
  transition: all 0.2s ease-out; }

.hideHeaderContent.largeDesktop .headerWrapper .innerShadowTop,
.hideHeaderContent.desktop .headerWrapper .innerShadowTop,
.hideHeaderContent.tablet .headerWrapper .innerShadowTop,
.hideHeaderContent.mobile .headerWrapper .innerShadowTop {
  display: none; }

.hideHeaderContent.largeDesktop .headerWrapper .header,
.hideHeaderContent.desktop .headerWrapper .header,
.hideHeaderContent.tablet .headerWrapper .header,
.hideHeaderContent.mobile .headerWrapper .header {
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: visibility 0s linear 0.25s, opacity 0.15s linear, height 0s linear 0.25s; }
  .hideHeaderContent.largeDesktop .headerWrapper .header h1,
  .hideHeaderContent.desktop .headerWrapper .header h1,
  .hideHeaderContent.tablet .headerWrapper .header h1,
  .hideHeaderContent.mobile .headerWrapper .header h1 {
    display: none; }

.hideHeaderContent.largeDesktop .searchBar,
.hideHeaderContent.desktop .searchBar,
.hideHeaderContent.tablet .searchBar,
.hideHeaderContent.mobile .searchBar {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.15s,opacity 0.15s linear; }

/* HEADER */
.headerWrapper {
  position: fixed;
  width: 100%;
  transition: top 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, top 0.2s ease-out;
  transition: transform 0.2s ease-out, top 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .headerWrapper .header {
    position: relative;
    display: block;
    width: 100%;
    height: 50px; }
    .tablet .headerWrapper .header,
    .desktop .headerWrapper .header,
    .largeDesktop .headerWrapper .header {
      width: 100%;
      height: 100px;
      background-color: transparent; }
    .mobile .headerWrapper .header {
      background-color: #00467c; }
    .headerWrapper .header .searchBtn {
      display: block;
      width: 30px;
      height: 100px;
      position: absolute;
      right: 4vw;
      top: 0;
      background-image: url("../images/common/menuSearchBtn.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center center; }
      .mobile .headerWrapper .header .searchBtn,
      .tablet .headerWrapper .header .searchBtn {
        display: none; }
  .tablet .headerWrapper,
  .desktop .headerWrapper,
  .largeDesktop .headerWrapper {
    width: 100%;
    top: 0; }
    .menuOpen .tablet .headerWrapper, .menuOpen
    .desktop .headerWrapper, .menuOpen
    .largeDesktop .headerWrapper {
      -webkit-transform: translate(-480px, 0);
              transform: translate(-480px, 0); }
  .popupOpen .tablet .headerWrapper, .popupOpen
  .desktop .headerWrapper, .popupOpen
  .largeDesktop .headerWrapper {
    -webkit-transform: translate(0, -100%);
            transform: translate(0, -100%); }
  .tablet .headerWrapper .innerShadowTop,
  .desktop .headerWrapper .innerShadowTop,
  .largeDesktop .headerWrapper .innerShadowTop {
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;
    background: linear-gradient(rgba(15, 32, 49, 0.5), rgba(15, 32, 49, 0)); }
  .tablet.pageScrolled .headerWrapper .innerShadowTop,
  .desktop.pageScrolled .headerWrapper .innerShadowTop,
  .largeDesktop.pageScrolled .headerWrapper .innerShadowTop {
    background-color: rgba(15, 32, 49, 0.7); }
  .searchOpen .desktop .headerWrapper .innerShadowTop, .searchOpen
  .largeDesktop .headerWrapper .innerShadowTop {
    top: 100px; }
  .headerWrapper .title {
    position: relative; }
    .headerWrapper .title a {
      display: inline-block;
      color: #ffffff;
      vertical-align: middle; }
      .tablet .headerWrapper .title a,
      .desktop .headerWrapper .title a,
      .largeDesktop .headerWrapper .title a {
        line-height: 100px; }
      .headerWrapper .title a:before {
        content: "";
        display: block;
        float: left;
        width: 50px;
        height: 50px;
        background-image: url("../images/common/logoVictoria.png");
        background-repeat: no-repeat;
        background-size: 75%;
        background-position: center center;
        vertical-align: middle; }
        .tablet .headerWrapper .title a:before,
        .desktop .headerWrapper .title a:before,
        .largeDesktop .headerWrapper .title a:before {
          width: 75px;
          height: 100px;
          margin: 0 10px;
          background-size: 100%; }
  .headerWrapper .menuBtn {
    display: block;
    width: 40px;
    height: 50px;
    padding: 15px 10px;
    position: absolute;
    right: 0;
    top: 0; }
    .tablet .headerWrapper .menuBtn,
    .desktop .headerWrapper .menuBtn,
    .largeDesktop .headerWrapper .menuBtn {
      padding: 40px 10px;
      right: 0.5vw; }
    .headerWrapper .menuBtn span {
      display: block;
      height: 3px;
      margin: 0 0 5px;
      background-color: #fff;
      border-radius: 3px;
      transition: margin 0.2s ease-out, -webkit-transform 0.2s ease-out;
      transition: transform 0.2s ease-out, margin 0.2s ease-out;
      transition: transform 0.2s ease-out, margin 0.2s ease-out, -webkit-transform 0.2s ease-out; }
      .menuOpen .mobile .headerWrapper .menuBtn span:nth-child(1) {
        -webkit-transform: translate(0, 8px) rotate(45deg);
                transform: translate(0, 8px) rotate(45deg); }
      .headerWrapper .menuBtn span:nth-child(2) {
        margin: 0 4px 5px 0; }
        .menuOpen .mobile .headerWrapper .menuBtn span:nth-child(2) {
          margin: 0 0px 5px 0;
          -webkit-transform: scale(0);
                  transform: scale(0); }
      .menuOpen .mobile .headerWrapper .menuBtn span:nth-child(3) {
        -webkit-transform: translate(0, -8px) rotate(-45deg);
                transform: translate(0, -8px) rotate(-45deg); }

/* FOOTER */
.footer {
  color: #ffffff;
  background-color: #006cb0;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px 0 0; }
  .footer.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .footer a {
    color: #ffffff;
    transition: all 0.2s ease-out; }
    .deviceDesktop .footer a:hover, .deviceDesktop .footer a:active {
      color: #e6b319; }
  .footer .section {
    padding: 60px 40px;
    position: relative; }
    .mobile .footer .section,
    .tablet .footer .section {
      display: none; }
    .footer .section li {
      display: block;
      width: 16.66%;
      float: left; }
      .footer .section li a {
        display: inline-block;
        vertical-align: top; }
  .footer .hLine {
    height: 2px;
    margin: 0 40px;
    background-color: #3da6ce; }
    .mobile .footer .hLine,
    .tablet .footer .hLine {
      display: none; }
  .footer .toggleBtn {
    display: block;
    height: 70px;
    padding: 0 20px;
    position: relative;
    background-color: #006cb0;
    margin: 0;
    transition: margin 0.2s ease-out; }
    .desktop .footer .toggleBtn,
    .largeDesktop .footer .toggleBtn {
      display: none; }
    .footer .toggleBtn:after {
      content: "";
      display: block;
      width: 40px;
      height: 70px;
      margin: 0 auto;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/common/topBannerMoreArrow.png");
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: center center;
      transition: -webkit-transform 0.2s ease-out;
      transition: transform 0.2s ease-out;
      transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .desktop .footer .campusWrapper,
  .largeDesktop .footer .campusWrapper {
    padding: 60px 0; }
  .mobile .footer .campusWrapper:after,
  .tablet .footer .campusWrapper:after {
    border-style: solid;
    border-width: 0 0 1px;
    border-color: #ffffff; }
  .footer .campusWrapper .campus_hk,
  .footer .campusWrapper .campus_others {
    position: relative;
    overflow: hidden; }
    .desktop .footer .campusWrapper .campus_hk,
    .largeDesktop .footer .campusWrapper .campus_hk, .desktop
    .footer .campusWrapper .campus_others,
    .largeDesktop
    .footer .campusWrapper .campus_others {
      padding: 0 40px;
      float: left; }
    .footer .campusWrapper .campus_hk.active .toggleBtn:after,
    .footer .campusWrapper .campus_others.active .toggleBtn:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .mobile .footer .campusWrapper .campus_hk .title,
    .tablet .footer .campusWrapper .campus_hk .title, .mobile
    .footer .campusWrapper .campus_others .title,
    .tablet
    .footer .campusWrapper .campus_others .title {
      display: none; }
    .desktop .footer .campusWrapper .campus_hk .title:after,
    .largeDesktop .footer .campusWrapper .campus_hk .title:after, .desktop
    .footer .campusWrapper .campus_others .title:after,
    .largeDesktop
    .footer .campusWrapper .campus_others .title:after {
      content: "";
      display: block;
      width: 100px;
      height: 4px;
      margin: 40px 0;
      background-color: #ffffff; }
    .mobile .footer .campusWrapper .campus_hk ul,
    .tablet .footer .campusWrapper .campus_hk ul, .mobile
    .footer .campusWrapper .campus_others ul,
    .tablet
    .footer .campusWrapper .campus_others ul {
      text-align: center;
      width: 100%;
      padding: 0;
      position: absolute;
      top: 70px; }
      .mobile .footer .campusWrapper .campus_hk ul li,
      .tablet .footer .campusWrapper .campus_hk ul li, .mobile
      .footer .campusWrapper .campus_others ul li,
      .tablet
      .footer .campusWrapper .campus_others ul li {
        display: block; }
    .footer .campusWrapper .campus_hk ul li,
    .footer .campusWrapper .campus_others ul li {
      display: block; }
      .desktop .footer .campusWrapper .campus_hk ul li,
      .largeDesktop .footer .campusWrapper .campus_hk ul li, .desktop
      .footer .campusWrapper .campus_others ul li,
      .largeDesktop
      .footer .campusWrapper .campus_others ul li {
        float: left; }
      .footer .campusWrapper .campus_hk ul li a,
      .footer .campusWrapper .campus_others ul li a {
        display: block; }
        .mobile .footer .campusWrapper .campus_hk ul li a,
        .tablet .footer .campusWrapper .campus_hk ul li a, .mobile
        .footer .campusWrapper .campus_others ul li a,
        .tablet
        .footer .campusWrapper .campus_others ul li a {
          width: 100%;
          height: 70px;
          background-color: #3da6ce; }
        .desktop .footer .campusWrapper .campus_hk ul li a,
        .largeDesktop .footer .campusWrapper .campus_hk ul li a, .desktop
        .footer .campusWrapper .campus_others ul li a,
        .largeDesktop
        .footer .campusWrapper .campus_others ul li a {
          margin: 10px 0; }
  .desktop .footer .campusWrapper .campus_hk,
  .largeDesktop .footer .campusWrapper .campus_hk {
    width: 52%; }
  .desktop .footer .campusWrapper .campus_hk.single,
  .largeDesktop .footer .campusWrapper .campus_hk.single {
    width: 100%; }
  .desktop .footer .campusWrapper .campus_hk.single ul li,
  .largeDesktop .footer .campusWrapper .campus_hk.single ul li {
    width: 25%; }
  .desktop .footer .campusWrapper .campus_hk ul li,
  .largeDesktop .footer .campusWrapper .campus_hk ul li {
    width: 33.33%; }
  .mobile .footer .campusWrapper .campus_others {
    border-style: solid;
    border-color: #ffffff;
    border-width: 1px 0 0; }
  .desktop .footer .campusWrapper .campus_others,
  .largeDesktop .footer .campusWrapper .campus_others {
    width: 48%; }
  .desktop .footer .campusWrapper .campus_others ul li,
  .largeDesktop .footer .campusWrapper .campus_others ul li {
    width: 50%; }
  .footer .socialPanel {
    margin: 10px auto;
    text-align: center; }
    .desktop .footer .socialPanel {
      margin: 0 auto;
      padding: 30px 0 30px 40px;
      float: left; }
    .largeDesktop .footer .socialPanel {
      margin: 0 auto;
      padding: 30px 0 0 40px;
      float: left; }
    .footer .socialPanel a,
    .footer .socialPanel .app {
      display: inline-block;
      width: 40px;
      height: 40px;
      background-repeat: no-repeat;
      background-size: 30px;
      background-position: center center;
      /*
			&.app
			{
				background-image: $footer_socialPanelAppImg;
			}
			*/ }
      .desktop .footer .socialPanel a,
      .largeDesktop .footer .socialPanel a, .desktop
      .footer .socialPanel .app,
      .largeDesktop
      .footer .socialPanel .app {
        display: block;
        margin: 0 20px 0 0;
        padding: 0;
        float: left;
        background-size: 100%; }
      .desktop .footer .socialPanel a, .desktop
      .footer .socialPanel .app {
        width: 30px;
        height: 30px; }
      .largeDesktop .footer .socialPanel a, .largeDesktop
      .footer .socialPanel .app {
        width: 60px;
        height: 60px; }
      .deviceDesktop .footer .socialPanel a:hover, .deviceDesktop .footer .socialPanel a:active, .deviceDesktop
      .footer .socialPanel .app:hover, .deviceDesktop
      .footer .socialPanel .app:active {
        -webkit-transform: scale(1.2) !important;
                transform: scale(1.2) !important; }
      .footer .socialPanel a.facebook,
      .footer .socialPanel .app.facebook {
        background-image: url("../images/common/socialBtnFacebook.png"); }
      .footer .socialPanel a.youtube,
      .footer .socialPanel .app.youtube {
        background-image: url("../images/common/socialBtnYoutube.png"); }
      .footer .socialPanel a.share,
      .footer .socialPanel .app.share {
        background-image: url("../images/common/socialBtnShare.png"); }
    .footer .socialPanel .app {
      position: relative;
      background-image: url("../images/common/socialBtnApp.png");
      cursor: pointer; }
      .footer .socialPanel .app .appLink {
        display: none; }
      .deviceDesktop .tablet .footer .socialPanel .app:hover .appLink, .deviceDesktop
      .desktop .footer .socialPanel .app:hover .appLink, .deviceDesktop
      .largeDesktop .footer .socialPanel .app:hover .appLink, .deviceDesktop .tablet .footer .socialPanel .app:active .appLink, .deviceDesktop
      .desktop .footer .socialPanel .app:active .appLink, .deviceDesktop
      .largeDesktop .footer .socialPanel .app:active .appLink {
        display: block;
        width: 360px;
        padding: 10px;
        position: absolute;
        -webkit-transform: translate(0, -100%);
                transform: translate(0, -100%);
        text-align: left;
        background-color: #ffffff; }
      .deviceDesktop .footer .socialPanel .app:hover .appLink .iosBtn, .deviceDesktop .footer .socialPanel .app:active .appLink .iosBtn {
        display: inline-block;
        width: 150px;
        height: 53px;
        background-image: url("../images/common/ios_store_button.jpg");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-transform: none !important;
                transform: none !important; }
      .deviceDesktop .footer .socialPanel .app:hover .appLink .androidBtn, .deviceDesktop .footer .socialPanel .app:active .appLink .androidBtn {
        display: inline-block;
        width: 150px;
        height: 53px;
        margin: 0 20px 0 0;
        background-image: url("../images/common/google_play_button.jpg");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-transform: none !important;
                transform: none !important; }
      .deviceDesktop .footer .socialPanel .app:hover .appLink .iosQrCode, .deviceDesktop .footer .socialPanel .app:active .appLink .iosQrCode {
        display: inline-block;
        width: 150px;
        height: 150px;
        margin: 0 20px 0 0;
        background-image: url("../images/common/ios-qrcode.png");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-transform: none;
                transform: none; }
      .deviceDesktop .footer .socialPanel .app:hover .appLink .androidQrCode, .deviceDesktop .footer .socialPanel .app:active .appLink .androidQrCode {
        display: inline-block;
        width: 150px;
        height: 150px;
        background-image: url("../images/common/google-qrcode.png");
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center center; }
    .footer .socialPanel .addthis_inline_share_toolbox {
      position: relative;
      left: 0;
      top: 0; }
      .footer .socialPanel .addthis_inline_share_toolbox .at-share-tbx-element .at-share-btn {
        position: absolute;
        left: 0;
        top: 0; }
        .footer .socialPanel .addthis_inline_share_toolbox .at-share-tbx-element .at-share-btn .at-icon-wrapper {
          vertical-align: top !important; }
  .footer .appendixPanel {
    padding: 10px 0;
    text-align: center; }
    .desktop .footer .appendixPanel {
      padding: 30px 40px 0 0;
      float: right;
      text-align: left; }
    .largeDesktop .footer .appendixPanel {
      padding: 0 40px 40px 0;
      float: right;
      text-align: left; }
    .footer .appendixPanel .linkage {
      display: block; }
      .desktop .footer .appendixPanel .linkage,
      .largeDesktop .footer .appendixPanel .linkage {
        text-align: right; }
      .footer .appendixPanel .linkage a {
        display: inline-block;
        margin: 0 4px; }
        .desktop .footer .appendixPanel .linkage a,
        .largeDesktop .footer .appendixPanel .linkage a {
          margin: 0 10px; }
        .footer .appendixPanel .linkage a:first-child {
          margin: 0 4px 0 0; }
          .desktop .footer .appendixPanel .linkage a:first-child,
          .largeDesktop .footer .appendixPanel .linkage a:first-child {
            margin: 0 10px 0 0; }
    .footer .appendixPanel .copyright {
      display: block; }
      .desktop .footer .appendixPanel .copyright,
      .largeDesktop .footer .appendixPanel .copyright {
        margin: 0 10px; }

/*
.footer
{
	margin: 30px 0 0;
	background-color: #f3f3f3;
	border-style: solid;
	border-color: #c8c8c8;
	border-width: 1px 0 0;
	&:before
	{
		content: "";
		display: block;
		width: 100%;
		height: 6px;
		position: absolute;
		background-color: #eee;
	}
	.linkagePanel
	{
		z-index: 5;
		position: relative;
		.tablet &,
		.desktop &,
		.largeDesktop &
		{
			position: absolute;
			left: 50%;
			transform: translate(-50%, 0);
		}
		.desktop &,
		.largeDesktop &
		{
			width: 940px;
		}
		.tablet &
		{
			width: 720px;
		}
		.mobile &
		{
			height: 64px;
		}
		&:before
		{
			content: "";
			display: block;
			width: 1px;
			height: 55px;
			position: absolute;
			left: 50%;
			background-color: #c8c8c8;
			.desktop &,
			.largeDesktop &
			{
				transform: translate(317px, 0);
			}
			.tablet &
			{
				transform: translate(207px, 0);
			}
		}
		.wrapper
		{
			width: 100%;
			position: absolute;
			left: 50%;
			transform: translate(-50%, -25px);
			text-align: center;
			.desktop &,
			.largeDesktop &
			{
				width: auto;
				transform: translate(165px, -25px);
			}
			.tablet &
			{
				width: auto;
				transform: translate(55px, -25px);
			}
			.item
			{
				display: inline-block;
				width: 150px;
				transition: transform 0.2s ease-out;
				&:hover,
				&:active
				{
					transform: scale(1.1);
				}
				img
				{
					display: block;
					width: 100%;
				}
			}
		}
	}
	.appendixPanel
	{
		z-index: 4;
		position: relative;
		text-align: center;
		.tablet &,
		.desktop &,
		.largeDesktop &
		{
			min-height: 54px;
			margin: 10px auto 0;
			text-align: left;
		}
		.desktop &,
		.largeDesktop &
		{
			width: 940px;

			p
			{
				width: 60%;
			}

		}
		.tablet &
		{
			width: 720px;
		}
		a
		{
			text-decoration: none;
			&:hover,
			&:active
			{
				text-decoration: underline;
			}
		}
	}
}
*/
.addthis_inline_share_toolbox {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  padding: 0; }
  .largeDesktop .addthis_inline_share_toolbox,
  .desktop .addthis_inline_share_toolbox {
    width: 60px;
    height: 60px;
    float: left;
    clear: none !important;
    margin: 0 20px 0 0; }
  .desktop .addthis_inline_share_toolbox {
    width: 30px;
    height: 30px; }
  .largeDesktop .addthis_inline_share_toolbox {
    width: 60px;
    height: 60px; }

.at-share-btn {
  background-color: transparent !important;
  padding: 0px !important;
  margin: 0px !important;
  background-size: 100%;
  background-image: url("../images/common/socialBtnShare.png"); }

.at-share-btn svg {
  display: none; }

/* MENU */
.headerWrapper .menu {
  position: absolute;
  right: 6.8vw;
  top: 0; }
  .mobile .headerWrapper .menu,
  .tablet .headerWrapper .menu {
    display: none; }
  .headerWrapper .menu ul {
    display: block; }
    .headerWrapper .menu ul li {
      display: block; }
      .headerWrapper .menu ul li a {
        display: block;
        padding: 0 1vw;
        color: #ffffff; }
        .headerWrapper .menu ul li a span {
          display: inline-block;
          vertical-align: middle; }
  .headerWrapper .menu > ul > li {
    height: 100px;
    float: left; }
    .headerWrapper .menu > ul > li:hover > a, .headerWrapper .menu > ul > li:active > a {
      color: #f2bf5d;
      background-color: rgba(15, 32, 49, 0.8); }
      .headerWrapper .menu > ul > li:hover > a + ul, .headerWrapper .menu > ul > li:active > a + ul {
        display: block;
        min-width: 160px;
        padding: 10px 0;
        position: absolute;
        top: 100%;
        background-color: rgba(15, 32, 49, 0.8); }
        .headerWrapper .menu > ul > li:hover > a + ul > li, .headerWrapper .menu > ul > li:active > a + ul > li {
          height: 40px; }
          .headerWrapper .menu > ul > li:hover > a + ul > li > a:hover, .headerWrapper .menu > ul > li:hover > a + ul > li > a:active, .headerWrapper .menu > ul > li:active > a + ul > li > a:hover, .headerWrapper .menu > ul > li:active > a + ul > li > a:active {
            color: #f2bf5d; }
            .headerWrapper .menu > ul > li:hover > a + ul > li > a:hover span:after, .headerWrapper .menu > ul > li:hover > a + ul > li > a:active span:after, .headerWrapper .menu > ul > li:active > a + ul > li > a:hover span:after, .headerWrapper .menu > ul > li:active > a + ul > li > a:active span:after {
              width: 100%; }
          .headerWrapper .menu > ul > li:hover > a + ul > li > a span, .headerWrapper .menu > ul > li:active > a + ul > li > a span {
            position: relative; }
            .headerWrapper .menu > ul > li:hover > a + ul > li > a span:after, .headerWrapper .menu > ul > li:active > a + ul > li > a span:after {
              content: "";
              display: block;
              width: 0;
              height: 10px;
              position: absolute;
              bottom: 0;
              background-image: url("../images/common/menuHoverLine.png");
              background-repeat: repeat-x;
              background-position: center center;
              background-size: 189px;
              transition: width 0.2s ease-out; }
    .headerWrapper .menu > ul > li > a {
      height: 100px;
      transition: color 0.2s ease-out; }
    .headerWrapper .menu > ul > li > ul {
      display: none; }

.menuWrapper {
  width: 100%;
  height: 100%;
  padding: 50px 0 0;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #006cb0;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .tablet .menuWrapper,
  .desktop .menuWrapper,
  .largeDesktop .menuWrapper {
    width: 480px; }
    .menuOpen .tablet .menuWrapper, .menuOpen
    .desktop .menuWrapper, .menuOpen
    .largeDesktop .menuWrapper {
      padding: 0; }
  .mobile.alertOpen.menuOpen .menuWrapper {
    padding-top: 100px; }
  .menuOpen .menuWrapper {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0); }
  .menuWrapper .menu {
    height: 100%;
    position: relative;
    overflow-y: auto; }
    .menuWrapper .menu .closeBtn {
      display: block;
      width: 60px;
      height: 60px;
      position: absolute;
      right: 5px;
      top: 5px;
      background-image: url("../images/common/menuCloseBtn.png");
      background-repeat: no-repeat;
      background-size: 60px;
      background-position: center center; }
      .mobile .menuWrapper .menu .closeBtn {
        display: none; }
    .menuWrapper .menu ul {
      position: relative;
      padding: 10px 0;
      overflow: hidden; }
      .tablet .menuWrapper .menu ul.sectionMenu {
        padding: 70px 0 10px; }
      .desktop .menuWrapper .menu ul.sectionMenu,
      .largeDesktop .menuWrapper .menu ul.sectionMenu {
        display: none; }
      .menuWrapper .menu ul.sectionMenu > li > a {
        margin: 0;
        transition: margin 0.2s ease-out; }
      .menuWrapper .menu ul.sectionMenu > li > ul + a:after {
        content: "";
        display: block;
        width: 40px;
        height: 50px;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 0;
        background-image: url("../images/common/topBannerMoreArrow.png");
        background-repeat: no-repeat;
        background-size: 24px;
        background-position: center center;
        transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
      .desktop .menuWrapper .menu ul.generalMenu,
      .largeDesktop .menuWrapper .menu ul.generalMenu {
        padding: 80px 0 10px; }
        .desktop .menuWrapper .menu ul.generalMenu:before,
        .largeDesktop .menuWrapper .menu ul.generalMenu:before {
          width: 60px;
          height: 4px;
          top: 70px; }
        .desktop .menuWrapper .menu ul.generalMenu:after,
        .largeDesktop .menuWrapper .menu ul.generalMenu:after {
          display: none; }
      .menuWrapper .menu ul.generalMenu:before {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        position: absolute;
        left: 30px;
        top: 0;
        background-color: #e6b319; }
      .menuWrapper .menu ul.generalMenu:after {
        content: "";
        display: block;
        width: 50px;
        height: 2px;
        position: absolute;
        left: 30px;
        bottom: 0;
        background-color: #e6b319; }
      .menuWrapper .menu ul.generalMenu > li.parents > a {
        margin: 0;
        transition: margin 0.2s ease-out; }
      .menuWrapper .menu ul.generalMenu > li.parents > ul + a:after {
        content: "";
        display: block;
        width: 40px;
        height: 50px;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 0;
        background-image: url("../images/common/topBannerMoreArrow.png");
        background-repeat: no-repeat;
        background-size: 24px;
        background-position: center center;
        transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
      .menuWrapper .menu ul.generalMenu li.alumni a:before {
        background-position: -40px center; }
      .menuWrapper .menu ul.generalMenu li.parents a:before {
        background-position: -80px center; }
      .menuWrapper .menu ul.generalMenu li.calendar a:before {
        background-position: -120px center; }
      .menuWrapper .menu ul.generalMenu li.contact a:before {
        background-position: -160px center; }
      .menuWrapper .menu ul.generalMenu li a {
        padding: 0 30px 0 80px; }
        .menuWrapper .menu ul.generalMenu li a:before {
          content: "";
          display: block;
          width: 40px;
          height: 50px;
          position: absolute;
          left: 30px;
          top: 0;
          background-image: url("../images/common/sptMenuGeneralIcons.png");
          background-repeat: no-repeat;
          background-size: 240px; }
      .menuWrapper .menu ul.langMenu li {
        float: left; }
        .tablet .menuWrapper .menu ul.langMenu li a,
        .desktop .menuWrapper .menu ul.langMenu li a,
        .largeDesktop .menuWrapper .menu ul.langMenu li a {
          padding: 0 40px; }
        .en .menuWrapper .menu ul.langMenu li:nth-child(1) a {
          color: #f2bf5d; }
        .tc .menuWrapper .menu ul.langMenu li:nth-child(2) a {
          color: #f2bf5d; }
        .sc .menuWrapper .menu ul.langMenu li:nth-child(3) a {
          color: #f2bf5d; }
      .tablet .menuWrapper .menu ul.langMenu,
      .desktop .menuWrapper .menu ul.langMenu,
      .largeDesktop .menuWrapper .menu ul.langMenu {
        width: 100%;
        position: absolute;
        top: 0; }
      .menuWrapper .menu ul li {
        display: block;
        position: relative; }
        .deviceDesktop .menuWrapper .menu ul li:hover a, .deviceDesktop .menuWrapper .menu ul li:active a {
          color: #f2bf5d; }
        .deviceDesktop .menuWrapper .menu ul li:hover ul li a, .deviceDesktop .menuWrapper .menu ul li:active ul li a {
          color: #ffffff; }
        .deviceDesktop .menuWrapper .menu ul li:hover ul li:hover a, .deviceDesktop .menuWrapper .menu ul li:hover ul li:active a, .deviceDesktop .menuWrapper .menu ul li:active ul li:hover a, .deviceDesktop .menuWrapper .menu ul li:active ul li:active a {
          color: #f2bf5d; }
        .menuWrapper .menu ul li.active a {
          color: #f2bf5d; }
          .menuWrapper .menu ul li.active a:after {
            -webkit-transform: rotate(180deg);
                    transform: rotate(180deg); }
        .menuWrapper .menu ul li.active ul li a {
          color: #ffffff;
          background-color: #3da6ce; }
        .menuWrapper .menu ul li a {
          display: block;
          padding: 0 30px;
          overflow: hidden;
          position: relative;
          color: #ffffff;
          background-color: #006cb0; }
        .menuWrapper .menu ul li ul {
          width: 100%;
          padding: 0;
          position: absolute;
          top: 50px; }
          .menuWrapper .menu ul li ul li {
            display: block; }
    .menuWrapper .menu .searchBox {
      display: block;
      padding: 10px 0 20px;
      position: relative;
      color: #000000; }
      .tablet .menuWrapper .menu .searchBox {
        padding: 20px 0; }
      .desktop .menuWrapper .menu .searchBox,
      .largeDesktop .menuWrapper .menu .searchBox {
        display: none; }
      .menuWrapper .menu .searchBox .searchBoxInputWrapper {
        display: block;
        margin: 0 92px 0 30px;
        position: relative; }
        .menuWrapper .menu .searchBox .searchBoxInputWrapper input[type=text] {
          display: block;
          width: 100%;
          height: 60px;
          padding: 0 10px;
          border-width: 0; }
      .menuWrapper .menu .searchBox .searchBtn {
        display: block;
        width: 60px;
        height: 60px;
        position: absolute;
        right: 30px;
        top: 10px;
        background-color: #ffffff; }
        .tablet .menuWrapper .menu .searchBox .searchBtn {
          top: 20px; }
        .menuWrapper .menu .searchBox .searchBtn:before {
          content: "";
          display: block;
          width: 40px;
          height: 40px;
          position: absolute;
          left: 10px;
          top: 10px;
          background-image: url("../images/common/sptMenuGeneralIcons.png");
          background-repeat: no-repeat;
          background-size: 240px;
          background-position: -200px center; }

/* CAMPUS MENU */
.campusMenuWrapper .campusMenuHolder .campusMenuBtn {
  display: block;
  height: 50px;
  padding: 0 30px;
  position: relative;
  color: #ffffff;
  line-height: 50px;
  background-color: #e6b319; }
  .tablet .campusMenuWrapper .campusMenuHolder .campusMenuBtn {
    padding: 0 50px; }
  .desktop .campusMenuWrapper .campusMenuHolder .campusMenuBtn,
  .largeDesktop .campusMenuWrapper .campusMenuHolder .campusMenuBtn {
    display: none; }
  .campusMenuWrapper .campusMenuHolder .campusMenuBtn.active {
    background-color: #006cb0; }
    .campusMenuWrapper .campusMenuHolder .campusMenuBtn.active:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .campusMenuWrapper .campusMenuHolder .campusMenuBtn:before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #ffffff; }
  .campusMenuWrapper .campusMenuHolder .campusMenuBtn:after {
    content: "";
    display: block;
    width: 40px;
    height: 50px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("../images/common/topBannerMoreArrow.png");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center center;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }

.campusMenuWrapper .campusMenuHolder .campusMenuContainer {
  display: block;
  overflow: hidden;
  position: relative; }
  .desktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer,
  .largeDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer {
    background-color: #006cb0; }
  .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu {
    display: block;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: margin 0.2s ease-out; }
    .desktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu,
    .largeDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu {
      max-width: 1300px;
      margin: 0 auto !important;
      padding: 0 50px;
      left: -30px; }
    .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption {
      display: block;
      height: 50px;
      position: relative;
      background-color: #006cb0; }
      .desktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption,
      .largeDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption {
        display: inline-block;
        height: 54px; }
      .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption:before {
        content: "";
        display: block;
        height: 1px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        background-color: #ffffff; }
        .desktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption:before,
        .largeDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption:before {
          display: none; }
      .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption label {
        display: block;
        height: 50px;
        padding: 0 50px;
        color: #ffffff;
        line-height: 50px;
        cursor: pointer;
        transition: background-color 0.2s ease-out; }
        .tablet .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption label {
          padding: 0 80px; }
        .desktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption label,
        .largeDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption label {
          height: 54px;
          padding: 0 30px;
          line-height: 54px;
          white-space: nowrap;
          /*
							height: auto;
							margin: 0;
							padding: 2px 10px;
							font-size: 16px;
							line-height: 20px;
							*/ }
        .deviceDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption label:hover, .deviceDesktop .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption label:active {
          background-color: #e6b319; }
      .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption input[type="radio"] {
        position: absolute;
        left: -9999px; }
        .campusMenuWrapper .campusMenuHolder .campusMenuContainer .campusMenu .itemOption input[type="radio"]:checked + label {
          background-color: #e6b319; }

/* LEARNINGWITHUS MENU */
.learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn {
  display: block;
  height: 50px;
  padding: 0 30px;
  position: relative;
  color: #ffffff;
  line-height: 50px;
  background-color: #e6b319; }
  .tablet .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn {
    padding: 0 50px; }
  .desktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn,
  .largeDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn {
    display: none; }
  .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn.active {
    background-color: #006cb0; }
    .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn.active:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn:before {
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    background-color: #ffffff; }
  .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuBtn:after {
    content: "";
    display: block;
    width: 40px;
    height: 50px;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    background-image: url("../images/common/topBannerMoreArrow.png");
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center center;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }

.learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer {
  display: block;
  overflow: hidden;
  position: relative; }
  .desktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer,
  .largeDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer {
    background-color: #006cb0; }
  .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu {
    display: block;
    height: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    transition: margin 0.2s ease-out; }
    .desktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu,
    .largeDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu {
      max-width: 1300px;
      margin: 0 auto !important;
      padding: 0 50px;
      left: -30px; }
    .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption {
      display: block;
      height: 50px;
      position: relative;
      background-color: #006cb0; }
      .desktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption,
      .largeDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption {
        display: inline-block;
        height: 54px; }
      .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption:before {
        content: "";
        display: block;
        height: 1px;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        background-color: #ffffff; }
        .desktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption:before,
        .largeDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption:before {
          display: none; }
      .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption label {
        display: block;
        height: 50px;
        padding: 0 50px;
        color: #ffffff;
        line-height: 50px;
        cursor: pointer;
        transition: background-color 0.2s ease-out; }
        .tablet .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption label {
          padding: 0 80px; }
        .desktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption label,
        .largeDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption label {
          height: 54px;
          padding: 0 30px;
          line-height: 54px;
          white-space: nowrap;
          /*
							height: auto;
							margin: 0;
							padding: 2px 10px;
							font-size: 16px;
							line-height: 20px;
							*/ }
        .deviceDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption label:hover, .deviceDesktop .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption label:active {
          background-color: #e6b319; }
      .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption input[type="radio"] {
        position: absolute;
        left: -9999px; }
        .learningwithusMenuWrapper .learningwithusMenuHolder .learningwithusMenuContainer .learningwithusMenu .itemOption input[type="radio"]:checked + label {
          background-color: #e6b319; }

/* BREADCRUMB */
.breadcrumbWrapper {
  padding: 4px 30px; }
  .tablet .breadcrumbWrapper,
  .desktop .breadcrumbWrapper,
  .largeDesktop .breadcrumbWrapper {
    padding: 8px 50px; }
  .breadcrumbWrapper .breadcrumb {
    text-align: left; }
    .tablet .breadcrumbWrapper .breadcrumb,
    .desktop .breadcrumbWrapper .breadcrumb,
    .largeDesktop .breadcrumbWrapper .breadcrumb {
      max-width: 1200px;
      margin: 0 auto; }
    .breadcrumbWrapper .breadcrumb a {
      display: inline-block;
      color: #888888;
      transition: all 0.2s ease-out; }
      .deviceDesktop .breadcrumbWrapper .breadcrumb a:hover, .deviceDesktop .breadcrumbWrapper .breadcrumb a:active {
        color: #e6b319; }
      .breadcrumbWrapper .breadcrumb a.active {
        color: #006cb0; }
        .breadcrumbWrapper .breadcrumb a.active:after {
          content: ""; }
        .deviceDesktop .breadcrumbWrapper .breadcrumb a.active:hover, .deviceDesktop .breadcrumbWrapper .breadcrumb a.active:active {
          color: #e6b319; }
      .breadcrumbWrapper .breadcrumb a:after {
        content: ">";
        display: inline-block;
        margin: 0 4px;
        color: #888888; }

/* COMPONENT NEWS WRAPPER */
.newsWrapper .newsItem .descWrapper {
  z-index: 2; }

.newsWrapper {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .newsWrapper .newsItem .dateLabel {
    text-transform: uppercase; }
    .newsWrapper .newsItem .dateLabel .date {
      font-size: 16px;
      line-height: 1.3em; }
      .desktop .newsWrapper .newsItem .dateLabel .date {
        font-size: 22px;
        line-height: 1.3em; }
      .largeDesktop .newsWrapper .newsItem .dateLabel .date {
        font-size: 30px;
        line-height: 1.3em; }
    .newsWrapper .newsItem .dateLabel .month {
      font-size: 12px;
      line-height: 1.3em; }
      .desktop .newsWrapper .newsItem .dateLabel .month {
        font-size: 16px;
        line-height: 1.3em; }
      .largeDesktop .newsWrapper .newsItem .dateLabel .month {
        font-size: 20px;
        line-height: 1.3em; }
  .newsWrapper .newsItem .descWrapper table td {
    font-size: 12px;
    line-height: 1.3em; }
    .tablet .newsWrapper .newsItem .descWrapper table td,
    .desktop .newsWrapper .newsItem .descWrapper table td,
    .largeDesktop .newsWrapper .newsItem .descWrapper table td {
      font-size: 18px;
      line-height: 1.3em; }

.newsWrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: left; }
  .tablet .newsWrapper,
  .desktop .newsWrapper,
  .largeDesktop .newsWrapper {
    width: 100%; }
  .newsWrapper .newsItem {
margin: 16px 10px;
    padding: 0 0 200px 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 30%;
    display: -webkit-inline-box;
}
    .tablet .newsWrapper .newsItem,
    .desktop .newsWrapper .newsItem,
    .largeDesktop .newsWrapper .newsItem {
      width: 32%;
      max-width: 750px;
      margin: 1%;
      float: left; }
    .newsWrapper .newsItem:after {
      content: "";
      display: block;
      width: 100%;
      height: 40%;
      position: absolute;
      bottom: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
      transition: all 0.2s ease-out; }
    .deviceDesktop .desktop .newsWrapper .newsItem:hover:after, .deviceDesktop
    .largeDesktop .newsWrapper .newsItem:hover:after, .deviceDesktop .desktop .newsWrapper .newsItem:active:after, .deviceDesktop
    .largeDesktop .newsWrapper .newsItem:active:after {
      -webkit-transform: translate(0, 100%);
              transform: translate(0, 100%); }
    .deviceDesktop .desktop .newsWrapper .newsItem:hover .newsImg, .deviceDesktop
    .largeDesktop .newsWrapper .newsItem:hover .newsImg, .deviceDesktop .desktop .newsWrapper .newsItem:active .newsImg, .deviceDesktop
    .largeDesktop .newsWrapper .newsItem:active .newsImg {
      -webkit-transform: scale(1.2);
              transform: scale(1.2); }
    .deviceDesktop .desktop .newsWrapper .newsItem:hover .descWrapper, .deviceDesktop
    .largeDesktop .newsWrapper .newsItem:hover .descWrapper, .deviceDesktop .desktop .newsWrapper .newsItem:active .descWrapper, .deviceDesktop
    .largeDesktop .newsWrapper .newsItem:active .descWrapper {
      height: 100%;
      background-color: rgba(90, 145, 19, 0.7); }
    .newsWrapper .newsItem.principalsBlog .dateLabel:after {
      content: "";
      display: block;
      width: 42px;
      height: 50px;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transform: translate(-42px, 0);
              transform: translate(-42px, 0);
      background-image: url("../images/common/blogFlag.jpg");
      background-repeat: no-repeat;
      background-size: auto 100%;
      background-position: center center; }
      .desktop .newsWrapper .newsItem.principalsBlog .dateLabel:after {
        width: 51px;
        height: 60px;
        -webkit-transform: translate(-51px, 0);
                transform: translate(-51px, 0); }
      .largeDesktop .newsWrapper .newsItem.principalsBlog .dateLabel:after {
        width: 68px;
        height: 80px;
        -webkit-transform: translate(-68px, 0);
                transform: translate(-68px, 0); }
    .newsWrapper .newsItem .newsImg {
      display: block;
      width: 100%;
      position: absolute;
      left: 0;
      top: 0;
      transition: all 0.2s ease-out;
      height: 100%;
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center center; }
    .newsWrapper .newsItem .dateLabel {
      display: block;
      width: 42px;
      height: 50px;
      position: absolute;
      right: 0;
      top: 0;
      text-align: center;
      color: #ffffff;
      background-color: #f5989c; }
      .desktop .newsWrapper .newsItem .dateLabel {
        width: 51px;
        height: 60px; }
      .largeDesktop .newsWrapper .newsItem .dateLabel {
        width: 68px;
        height: 80px; }
      .newsWrapper .newsItem .dateLabel .date {
        display: block;
        margin: 3px 0 0;
        line-height: 24px; 
	font-size: 12px;
}
        .desktop .newsWrapper .newsItem .dateLabel .date,
        .largeDesktop .newsWrapper .newsItem .dateLabel .date {
          margin: 6px 0 0; }
      .newsWrapper .newsItem .dateLabel .month {
        display: block;
        line-height: 18px; }
    .newsWrapper .newsItem .descWrapper {
      position: inherit;
	}      
.tablet .newsWrapper .newsItem .descWrapper,
      .desktop .newsWrapper .newsItem .descWrapper,
      .largeDesktop .newsWrapper .newsItem .descWrapper {
        height: 48px;
        line-height: 22px; }
      .newsWrapper .newsItem .descWrapper table {
        width: 100%;
        height: 100%; }
        .newsWrapper .newsItem .descWrapper table td {
	padding: 10px 50px 0 50px;
    vertical-align: middle;
    color: #040404;
    font-size: 12px;
    font-weight: bold;
}
/* COMPONENT MAXIM */
.maxim {
  padding: 30px 0 0;
  position: relative;
  background-color: #006cb0;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: all 0.2s ease-out; }
  .tablet .maxim,
  .desktop .maxim,
  .largeDesktop .maxim {
    text-align: left; }
  .tablet .maxim {
    padding: 50px 0 0; }
  .desktop .maxim,
  .largeDesktop .maxim {
    min-height: 350px;
    padding: 0 50px; }
  .mobile .maxim {
    text-align: center; }
  .maxim.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .desktop .maxim.noImg .message {
    padding: 100px 60px 20px; }
  .largeDesktop .maxim.noImg .message {
    padding: 120px 60px 20px; }
  .desktop .maxim.noImg .message:after,
  .largeDesktop .maxim.noImg .message:after {
    right: 0;
    bottom: 0; }
  .desktop .maxim.noImg .name,
  .largeDesktop .maxim.noImg .name {
    padding: 20px 60px 0; }
  .desktop .maxim.noImg .title {
    padding: 20px 60px 100px; }
  .largeDesktop .maxim.noImg .title {
    padding: 20px 60px 100px; }
  .maxim.theme1 {
    background-color: #006cb0; }
    .maxim.theme1 .name {
      color: #e6b319; }
  .maxim.theme2 {
    background-color: #e6b319; }
    .maxim.theme2 .name {
      color: #006cb0; }
  .maxim.theme3 {
    background-color: #5a9113; }
    .maxim.theme3 .name {
      color: #e6b319; }
  .maxim.theme4 {
    background-color: #f3776a; }
    .maxim.theme4 .name {
      color: #006cb0; }
  .maxim.theme5 {
    background-color: #cba6dd; }
    .maxim.theme5 .name {
      color: #006cb0; }
  .maxim .teacherImg {
    display: block;
    width: 132px;
    height: 132px;
    margin: 0 auto;
    border-radius: 132px;
    border-style: solid;
    border-width: 6px;
    border-color: #ffffff; }
    .tablet .maxim .teacherImg,
    .desktop .maxim .teacherImg,
    .largeDesktop .maxim .teacherImg {
      width: 240px;
      height: 240px;
      border-radius: 240px;
      border-width: 10px; }
    .desktop .maxim .teacherImg {
      position: absolute;
      left: 50%;
      top: 100px;
      -webkit-transform: translate(270px, 0);
              transform: translate(270px, 0); }
    .largeDesktop .maxim .teacherImg {
      position: absolute;
      left: 50%;
      top: 120px;
      -webkit-transform: translate(320px, 0);
              transform: translate(320px, 0); }
    .maxim .teacherImg img {
      display: block;
      width: 100%;
      border-radius: 100%; }
  .maxim .message {
    display: block;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 40px 0;
    position: relative;
    color: #ffffff; }
    .tablet .maxim .message {
      padding: 50px 70px 0; }
    .desktop .maxim .message {
      padding: 100px 400px 20px 60px; }
    .largeDesktop .maxim .message {
      padding: 120px 400px 20px 60px; }
    .maxim .message:before {
      content: "";
      display: block;
      width: 30px;
      height: 20px;
      position: absolute;
      left: 10px;
      top: 0;
      background-image: url("../images/common/index/maximQuote.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center top; }
      .tablet .maxim .message:before {
        width: 40px;
        height: 26.6666667px;
        left: 10px;
        top: 20px; }
      .desktop .maxim .message:before {
        width: 40px;
        height: 26.6666667px;
        left: 0;
        top: 80px; }
      .largeDesktop .maxim .message:before {
        width: 40px;
        height: 26.6666667px;
        left: 0;
        top: 100px; }
    .maxim .message:after {
      content: "";
      display: block;
      width: 30px;
      height: 20px;
      position: absolute;
      right: 10px;
      bottom: -20px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      background-image: url("../images/common/index/maximQuote.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center top; }
      .tablet .maxim .message:after,
      .desktop .maxim .message:after,
      .largeDesktop .maxim .message:after {
        width: 40px;
        height: 26.6666667px; }
      .tablet .maxim .message:after {
        right: 10px;
        bottom: -40px; }
      .desktop .maxim .message:after,
      .largeDesktop .maxim .message:after {
        right: 340px;
        bottom: 0; }
  .maxim .name {
    display: block;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px 0;
    color: #e6b319; }
    .tablet .maxim .name {
      padding: 50px 70px 0; }
    .desktop .maxim .name,
    .largeDesktop .maxim .name {
      padding: 20px 400px 0 60px; }
  .maxim .title {
    display: block;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px 30px;
    color: #ffffff; }
    .tablet .maxim .title {
      padding: 20px 70px 50px; }
    .desktop .maxim .title {
      padding: 20px 400px 80px 60px; }
    .largeDesktop .maxim .title {
      padding: 20px 400px 100px 60px; }

/* EDITOR CONTENT */
.page_editorTemplate {
  /*
	.pageTop 
	{
		.tablet &,
		.desktop &
		{
			padding-left: 0;
			padding-right: 0;
		}
	}
	*/ }
  .page_editorTemplate .editorTemplate {
    margin: 30px 0 0;
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 17px;
    line-height: 1.3em; }
    .tablet .page_editorTemplate .editorTemplate {
      margin: 50px 0 0;
      font-size: 18px;
      line-height: 1.3em; }
    .desktop .page_editorTemplate .editorTemplate {
      margin: 50px 0 0;
      font-size: 20px;
      line-height: 1.3em; }
    .largeDesktop .page_editorTemplate .editorTemplate {
      margin: 50px 0 0;
      font-size: 24px;
      line-height: 1.3em; }
    .page_editorTemplate .editorTemplate .veo_template_block {
      margin: 0 auto;
      padding: 0 10px;
      position: relative;
      -webkit-transform: translate(0, 10vh);
              transform: translate(0, 10vh);
      opacity: 0;
      transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
      transition: transform 1s ease-out, opacity 1s ease-out;
      transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
      /*
			.tablet &,
			.desktop &
			{
				max-width: 1280px;
				padding: 0 14vw;
			}
			*/ }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block {
        max-width: 1280px;
        padding: 0 30px; }
      .page_editorTemplate .editorTemplate .veo_template_block:after {
        content: "";
        display: block;
        clear: both; }
      .page_editorTemplate .editorTemplate .veo_template_block.fadingInit {
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        opacity: 1; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_2col .veo_template_column,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_2col .veo_template_column,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_2col .veo_template_column {
        width: 50%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_3col .veo_template_column,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_3col .veo_template_column,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_3col .veo_template_column {
        width: 33.33%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_3col .veo_template_column.veo_template_multiColumn2,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_3col .veo_template_column.veo_template_multiColumn2,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_3col .veo_template_column.veo_template_multiColumn2 {
        width: 66.66%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column {
        width: 25%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn2,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn2,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn2 {
        width: 50%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn3,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn3,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn3 {
        width: 75%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column {
        width: 20%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn2,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn2,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn2 {
        width: 40%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn3,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn3,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn3 {
        width: 60%; }
      .tablet .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn4,
      .desktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn4,
      .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn4 {
        width: 80%; }
      .page_editorTemplate .editorTemplate .veo_template_block .veo_template_column {
        width: 100%;
        padding: 10px;
        float: left; }
        .tablet .page_editorTemplate .editorTemplate .veo_template_block .veo_template_column,
        .desktop .page_editorTemplate .editorTemplate .veo_template_block .veo_template_column,
        .largeDesktop .page_editorTemplate .editorTemplate .veo_template_block .veo_template_column {
          padding: 20px; }
        .page_editorTemplate .editorTemplate .veo_template_block .veo_template_column img {
          max-width: 100%; }
      .page_editorTemplate .editorTemplate .veo_template_block table tr th,
      .page_editorTemplate .editorTemplate .veo_template_block table tr td {
        padding: 10px; }
      .page_editorTemplate .editorTemplate .veo_template_block table tr th {
        text-transform: uppercase; }
    .page_editorTemplate .editorTemplate .veo_text_center {
      text-align: center; }
    .page_editorTemplate .editorTemplate .veo_text_left {
      text-align: left; }
    .page_editorTemplate .editorTemplate .veo_text_right {
      text-align: right; }
    .page_editorTemplate .editorTemplate .veo_text_justify {
      text-align: justify; }
    .page_editorTemplate .editorTemplate .veo_text_bold {
      font-weight: bold; }
    .page_editorTemplate .editorTemplate .veo_text_leto {
      font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
    .page_editorTemplate .editorTemplate .veo_text_oswald {
      font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
    .page_editorTemplate .editorTemplate .veo_text_leto_bold_30 {
      font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
      font-size: 24px;
      line-height: 1.3em;
      font-weight: 700; }
      .tablet .page_editorTemplate .editorTemplate .veo_text_leto_bold_30,
      .desktop .page_editorTemplate .editorTemplate .veo_text_leto_bold_30 {
        font-size: 20px;
        line-height: 1.3em; }
      .largeDesktop .page_editorTemplate .editorTemplate .veo_text_leto_bold_30 {
        font-size: 30px;
        line-height: 1.3em; }
    .page_editorTemplate .editorTemplate .veo_text_leto_22 {
      font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
      font-size: 16px;
      line-height: 1.3em; }
      .tablet .page_editorTemplate .editorTemplate .veo_text_leto_22,
      .desktop .page_editorTemplate .editorTemplate .veo_text_leto_22 {
        font-size: 14px;
        line-height: 1.3em; }
      .largeDesktop .page_editorTemplate .editorTemplate .veo_text_leto_22 {
        font-size: 22px;
        line-height: 1.3em; }

/* CK EDITOR OVERRIDE */
.cke_editable .veo_template_block {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  opacity: 1 !important; }

/* CK EDITOR CLONE */
.cke_editable {
  font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
  font-size: 17px;
  line-height: 1.3em; }
  .tablet .cke_editable,
  .desktop .cke_editable,
  .largeDesktop .cke_editable {
    font-size: 24px;
    line-height: 1.3em; }
  .cke_editable .veo_template_block {
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    -webkit-transform: translate(0, 10vh);
            transform: translate(0, 10vh);
    opacity: 0;
    transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
    transition: transform 1s ease-out, opacity 1s ease-out;
    transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out; }
    .tablet .cke_editable .veo_template_block,
    .desktop .cke_editable .veo_template_block,
    .largeDesktop .cke_editable .veo_template_block {
      max-width: 1280px;
      padding: 0 30px; }
    .cke_editable .veo_template_block:after {
      content: "";
      display: block;
      clear: both; }
    .cke_editable .veo_template_block.fadingInit {
      -webkit-transform: translate(0, 0);
              transform: translate(0, 0);
      opacity: 1; }
    .tablet .cke_editable .veo_template_block.veo_template_2col .veo_template_column,
    .desktop .cke_editable .veo_template_block.veo_template_2col .veo_template_column,
    .largeDesktop .cke_editable .veo_template_block.veo_template_2col .veo_template_column {
      width: 50%; }
    .tablet .cke_editable .veo_template_block.veo_template_3col .veo_template_column,
    .desktop .cke_editable .veo_template_block.veo_template_3col .veo_template_column,
    .largeDesktop .cke_editable .veo_template_block.veo_template_3col .veo_template_column {
      width: 33.33%; }
    .tablet .cke_editable .veo_template_block.veo_template_3col .veo_template_column.veo_template_multiColumn2,
    .desktop .cke_editable .veo_template_block.veo_template_3col .veo_template_column.veo_template_multiColumn2,
    .largeDesktop .cke_editable .veo_template_block.veo_template_3col .veo_template_column.veo_template_multiColumn2 {
      width: 66.66%; }
    .tablet .cke_editable .veo_template_block.veo_template_4col .veo_template_column,
    .desktop .cke_editable .veo_template_block.veo_template_4col .veo_template_column,
    .largeDesktop .cke_editable .veo_template_block.veo_template_4col .veo_template_column {
      width: 25%; }
    .tablet .cke_editable .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn2,
    .desktop .cke_editable .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn2,
    .largeDesktop .cke_editable .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn2 {
      width: 50%; }
    .tablet .cke_editable .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn3,
    .desktop .cke_editable .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn3,
    .largeDesktop .cke_editable .veo_template_block.veo_template_4col .veo_template_column.veo_template_multiColumn3 {
      width: 75%; }
    .tablet .cke_editable .veo_template_block.veo_template_5col .veo_template_column,
    .desktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column,
    .largeDesktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column {
      width: 20%; }
    .tablet .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn2,
    .desktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn2,
    .largeDesktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn2 {
      width: 40%; }
    .tablet .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn3,
    .desktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn3,
    .largeDesktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn3 {
      width: 60%; }
    .tablet .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn4,
    .desktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn4,
    .largeDesktop .cke_editable .veo_template_block.veo_template_5col .veo_template_column.veo_template_multiColumn4 {
      width: 80%; }
    .cke_editable .veo_template_block .veo_template_column {
      width: 100%;
      padding: 10px;
      float: left; }
      .tablet .cke_editable .veo_template_block .veo_template_column,
      .desktop .cke_editable .veo_template_block .veo_template_column,
      .largeDesktop .cke_editable .veo_template_block .veo_template_column {
        padding: 20px; }
      .cke_editable .veo_template_block .veo_template_column img {
        max-width: 100%; }
    .cke_editable .veo_template_block table tr th,
    .cke_editable .veo_template_block table tr td {
      padding: 10px; }
    .cke_editable .veo_template_block table tr th {
      text-transform: uppercase; }
  .cke_editable .veo_text_center {
    text-align: center; }
  .cke_editable .veo_text_left {
    text-align: left; }
  .cke_editable .veo_text_right {
    text-align: right; }
  .cke_editable .veo_text_justify {
    text-align: justify; }
  .cke_editable .veo_text_bold {
    font-weight: bold; }
  .cke_editable .veo_text_leto {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .cke_editable .veo_text_oswald {
    font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif; }
  .cke_editable .veo_text_leto_bold_30 {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 24px;
    line-height: 1.3em;
    font-weight: 700; }
    .tablet .cke_editable .veo_text_leto_bold_30,
    .desktop .cke_editable .veo_text_leto_bold_30,
    .largeDesktop .cke_editable .veo_text_leto_bold_30 {
      font-size: 30px;
      line-height: 1.3em; }
  .cke_editable .veo_text_leto_22 {
    font-family: "Lato", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
    font-size: 16px;
    line-height: 1.3em; }
    .tablet .cke_editable .veo_text_leto_22,
    .desktop .cke_editable .veo_text_leto_22,
    .largeDesktop .cke_editable .veo_text_leto_22 {
      font-size: 22px;
      line-height: 1.3em; }

/* CAMPUS FACULTY */
.page_campus_faculty .stat {
  padding: 30px; }
  .tablet .page_campus_faculty .stat,
  .desktop .page_campus_faculty .stat,
  .largeDesktop .page_campus_faculty .stat {
    padding: 50px; }
  .page_campus_faculty .stat .statSlider {
    max-width: 1200px;
    margin: 0 auto; }
    .page_campus_faculty .stat .statSlider .slick-track {
      margin: 0 auto; }
    .page_campus_faculty .stat .statSlider .slick-arrow:before {
      background-image: url("../images/common/featureArrow.png"); }
    .page_campus_faculty .stat .statSlider .statItem {
      position: relative;
      padding: 0 30px; }
      .tablet .page_campus_faculty .stat .statSlider .statItem,
      .desktop .page_campus_faculty .stat .statSlider .statItem,
      .largeDesktop .page_campus_faculty .stat .statSlider .statItem {
        padding: 0 30px; }
      .page_campus_faculty .stat .statSlider .statItem .contentWrapper {
        position: relative;
        width: 100%; }
        .page_campus_faculty .stat .statSlider .statItem .contentWrapper img {
          display: block;
          width: 100%; }

.page_campus_faculty .staffPanel {
  padding: 0;
  background-color: #f5f5f5; }
  .tablet .page_campus_faculty .staffPanel,
  .desktop .page_campus_faculty .staffPanel,
  .largeDesktop .page_campus_faculty .staffPanel {
    padding: 50px 0 0; }
  .page_campus_faculty .staffPanel .staffTeam {
    position: relative;
    overflow: hidden;
    /*
			&:first-child
			{
				.title
				{
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						padding: 40px 0 20px;
					}
				}
			}
			*/ }
    .page_campus_faculty .staffPanel .staffTeam.active .staffWrapper {
      margin: 0 auto !important; }
    .page_campus_faculty .staffPanel .staffTeam.active .title a:after {
      -webkit-transform: rotate(-90deg);
              transform: rotate(-90deg); }
    .page_campus_faculty .staffPanel .staffTeam .title {
      position: relative;
      background-color: #f5f5f5; }
      .page_campus_faculty .staffPanel .staffTeam .title a {
        display: block;
        width: 100%;
        padding: 20px 30px;
        position: relative;
        color: #e6b319; }
        .tablet .page_campus_faculty .staffPanel .staffTeam .title a,
        .desktop .page_campus_faculty .staffPanel .staffTeam .title a,
        .largeDesktop .page_campus_faculty .staffPanel .staffTeam .title a {
          padding: 0; }
        .page_campus_faculty .staffPanel .staffTeam .title a:after {
          content: "";
          display: block;
          width: 40px;
          height: 100%;
          margin: 0 auto;
          position: absolute;
          right: 0;
          top: 0;
          background-image: url("../images/common/moreArrow.png");
          background-repeat: no-repeat;
          background-size: 24px;
          background-position: center center;
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg);
          transition: all 0.2s ease-out; }
          .tablet .page_campus_faculty .staffPanel .staffTeam .title a:after,
          .desktop .page_campus_faculty .staffPanel .staffTeam .title a:after,
          .largeDesktop .page_campus_faculty .staffPanel .staffTeam .title a:after {
            display: none; }
        .page_campus_faculty .staffPanel .staffTeam .title a .teamName {
          color: #006cb0; }
    .page_campus_faculty .staffPanel .staffTeam .staffWrapper {
      margin: 0;
      padding: 10px 0 0;
      transition: margin 0.6s ease-out;
      /*
				.staffItem
				{
					display: inline-block;
					width: 80%;
					max-width: 320px;
					margin: 0 10px 0 0;
					overflow: hidden;
					position: relative;
					vertical-align: top;
					white-space: normal;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						margin: 0 2% 0 0;
					}
					&:first-child
					{
						margin: 0 10px;
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							margin: 0 2% 0 2%;
						}
					}
					.desktop &,
					.largeDesktop &
					{
						width: 20%;
					}
					.staffImg
					{
						display: block;
						width: 100%;
						max-width: 275px;
						margin: 0 auto;
						position: relative;
						border-radius: 100%;
					}
					.staffName
					{
						display: block;
						margin: 20px 0 10px;
						color: $campusOverview_faculty_staffName_color;
					}
					.staffTitle
					{
						display: block;
						margin: 10px 0;
						color: $campusOverview_faculty_staffTitle_color;
					}
				}
				*/ }
      .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper,
      .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper,
      .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper {
        max-width: 1300px;
        padding: 40px 0 0;
        text-align: center;
        margin: 0 auto !important; }
      .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem {
        display: block;
        position: relative;
        overflow: hidden; }
        .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem {
          display: inline-block;
          width: 20vw;
          margin: 0 1vw;
          vertical-align: top;
          overflow: visible; }
        .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem,
        .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem {
          display: inline-block;
          width: 280px;
          margin: 0 8px;
          vertical-align: top;
          overflow: visible; }
        .deviceDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem:hover .staffImgWrapper .staffImg, .deviceDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem:active .staffImgWrapper .staffImg, .deviceDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem.active .staffImgWrapper .staffImg {
          -webkit-transform: scale(1.2);
                  transform: scale(1.2); }
        .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem.active,
        .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem.active,
        .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem.active {
          overflow: visible; }
        .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem.active .staffDesc {
          max-height: none !important;
          margin: 0 auto !important; }
        .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo {
          display: block;
          height: 400px;
          margin: 0 auto;
          padding: 10px 0;
          position: relative;
          background-color: #f5f5f5;
          /*
						.desktop &,
						.largeDesktop &
						{
							height: 480px;
						}
						*/ }
          .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo {
            height: 35vw; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffImgWrapper {
            display: block;
            width: 70%;
            max-width: 240px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 100%;
            -webkit-perspective: 1000;
                    perspective: 1000; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffImgWrapper,
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffImgWrapper,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffImgWrapper {
              width: 80%; }
            .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffImgWrapper .staffImg {
              display: block;
              width: 100%;
              max-width: 240px;
              position: relative;
              transition: -webkit-transform 0.6s ease-out;
              transition: transform 0.6s ease-out;
              transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
            display: block;
            max-width: 320px;
            height: 64px;
            margin: 20px auto 0;
            padding: 0 30px;
            overflow: hidden;
            color: #006cb0;
            line-height: 32px; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
              padding: 0;
              height: 36px;
              line-height: 18px; }
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffName {
              line-height: 32px; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
            display: block;
            max-width: 320px;
            height: 48px;
            margin: 0 auto 10px;
            padding: 0 30px;
            overflow: hidden;
            color: #000000;
            line-height: 24px; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
              padding: 0;
              height: 40px;
              line-height: 20px; }
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffInfo .staffTitle {
              line-height: 24px; }
        .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc {
          display: block;
          margin: 0;
          padding: 50px 30px;
          position: relative;
          background-color: #006cb0;
          color: #ffffff;
          transition: margin 0.6s ease-out; }
          .mobile .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc {
            left: 0 !important; }
          .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc {
            width: 88vw;
            padding: 50px 4vw;
            max-height: 35vw;
            overflow: hidden; }
          .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc,
          .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc {
            width: 1184px;
            max-height: 400px;
            overflow: hidden; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle {
            display: block;
            width: 260px;
            margin: 0 auto; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle {
              width: 80vw; }
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .descTitle {
              width: 1080px; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message {
            display: block;
            width: 260px;
            margin: 0 auto;
            padding: 10px 0 0; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message {
              width: 80vw; }
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .message {
              width: 1080px; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .indicator {
            display: block;
            width: 100%;
            height: 10px;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #e6b319; }
            .mobile .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .indicator {
              left: 0 !important; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .indicator,
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .indicator,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .indicator {
              width: 25%; }
          .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .closeBtn {
            display: block;
            width: 40px;
            height: 40px;
            position: absolute;
            right: 0;
            top: 10px;
            background-image: url("../images/common/menuCloseBtn.png");
            background-repeat: no-repeat;
            background-size: 30px;
            background-position: center center; }
            .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .closeBtn,
            .desktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .closeBtn,
            .largeDesktop .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDesc .closeBtn {
              width: 60px;
              height: 60px;
              background-size: 60px; }
        .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDescMask {
          display: block;
          width: 1204px;
          height: 400px;
          background-color: #f5f5f5;
          position: absolute;
          top: 0; }
          .mobile .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDescMask {
            display: none; }
          .tablet .page_campus_faculty .staffPanel .staffTeam .staffWrapper .staffItem .staffDescMask {
            width: 90vw;
            height: 35vw; }

/* CAMPUS CALENDAR */
.page_campus_calendar .calendarWrapper .calendar {
  padding: 20px 0;
  background-color: #f5f5f5;
  border-style: solid;
  border-color: #e6b319;
  border-width: 0 0 10px; }
  .desktop .page_campus_calendar .calendarWrapper .calendar,
  .largeDesktop .page_campus_calendar .calendarWrapper .calendar {
    height: 1222px;
    margin: 80px 0 0;
    border-width: 10px 0 0;
    background-image: url("../images/common/campus/calendarBg.jpg");
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: center bottom; }
  .page_campus_calendar .calendarWrapper .calendar .calendarTitle {
    display: block;
    padding: 10px 30px;
    color: #000000; }
    .desktop .page_campus_calendar .calendarWrapper .calendar .calendarTitle,
    .largeDesktop .page_campus_calendar .calendarWrapper .calendar .calendarTitle {
      max-width: 600px;
      margin: 0 auto;
      padding: 20px 50px; }
  .page_campus_calendar .calendarWrapper .calendar .googleCalendar {
    display: block; }
    .page_campus_calendar .calendarWrapper .calendar .googleCalendar iframe {
      width: 100%;
      height: 300px;
      padding: 10px 30px; }
      .desktop .page_campus_calendar .calendarWrapper .calendar .googleCalendar iframe {
        max-width: 1300px;
        height: 960px;
        padding: 20px 10%; }
      .largeDesktop .page_campus_calendar .calendarWrapper .calendar .googleCalendar iframe {
        max-width: 1300px;
        height: 960px;
        padding: 20px 50px; }

.desktop .page_campus_calendar .calendarWrapper .btnPanel,
.largeDesktop .page_campus_calendar .calendarWrapper .btnPanel {
  height: 80px;
  width: 100%;
  max-width: 1300px;
  position: absolute;
  left: 50%;
  top: -80px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  line-height: 80px; }

.page_campus_calendar .calendarWrapper .btnPanel .download {
  width: 66.66%;
  padding: 20px 0 20px 30px;
  float: left; }
  .desktop .page_campus_calendar .calendarWrapper .btnPanel .download {
    width: auto;
    padding: 0 0 0 10%; }
  .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel .download {
    width: auto;
    padding: 0 0 0 50px; }
  .page_campus_calendar .calendarWrapper .btnPanel .download .downloadBtn {
    display: block;
    width: 50%;
    padding: 0 4px;
    float: left;
    color: #f3776a; }
    .desktop .page_campus_calendar .calendarWrapper .btnPanel .download .downloadBtn,
    .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel .download .downloadBtn {
      width: auto;
      padding: 0 20px 0 0;
      vertical-align: top; }
    .page_campus_calendar .calendarWrapper .btnPanel .download .downloadBtn:before {
      content: "";
      display: block;
      width: 40px;
      height: 40px;
      margin: 0 auto;
      background-image: url("../images/common/downloadIcon.png");
      background-repeat: no-repeat;
      background-size: 40px;
      background-position: center center; }
      .desktop .page_campus_calendar .calendarWrapper .btnPanel .download .downloadBtn:before,
      .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel .download .downloadBtn:before {
        display: inline-block;
        height: 80px;
        vertical-align: top; }

.page_campus_calendar .calendarWrapper .btnPanel .subscribe {
  width: 33.33%;
  padding: 20px 30px 20px 0;
  float: right; }
  .desktop .page_campus_calendar .calendarWrapper .btnPanel .subscribe {
    width: auto;
    padding: 0 10% 0 0; }
  .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel .subscribe {
    width: auto;
    padding: 0 50px 0 0; }
  .page_campus_calendar .calendarWrapper .btnPanel .subscribe .subscribeBtn {
    display: block;
    width: 100%;
    padding: 0 4px;
    color: #f3776a; }
    .desktop .page_campus_calendar .calendarWrapper .btnPanel .subscribe .subscribeBtn,
    .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel .subscribe .subscribeBtn {
      width: auto;
      padding: 0 0 0 20px;
      vertical-align: top; }
    .page_campus_calendar .calendarWrapper .btnPanel .subscribe .subscribeBtn:before {
      content: "";
      display: block;
      width: 40px;
      height: 40px;
      margin: 0 auto;
      background-image: url("../images/common/subscribeIcon.png");
      background-repeat: no-repeat;
      background-size: 40px;
      background-position: center center; }
      .desktop .page_campus_calendar .calendarWrapper .btnPanel .subscribe .subscribeBtn:before,
      .largeDesktop .page_campus_calendar .calendarWrapper .btnPanel .subscribe .subscribeBtn:before {
        display: inline-block;
        height: 80px;
        vertical-align: top; }

/* CAMPUS WHAT'S HAPPENING */
.page_campus_whatsHappening .filterWrapper {
  padding: 0; }
  .tablet .page_campus_whatsHappening .filterWrapper,
  .desktop .page_campus_whatsHappening .filterWrapper,
  .largeDesktop .page_campus_whatsHappening .filterWrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    overflow: hidden; }
  .tablet .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder,
  .desktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder, .tablet .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder,
  .desktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder {
    padding: 30px 30px 30px 0; }
  .tablet .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer,
  .desktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer, .tablet .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer,
  .desktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer {
    width: 600px; }
  .tablet .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer .itemOption,
  .desktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer .itemOption,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer .itemOption, .tablet .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer .itemOption,
  .desktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer .itemOption,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder.campusFilter .toggleSelectionContainer .itemOption {
    width: 300px;
    margin: 10px 0 0;
    float: left; }
  .tablet .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child,
  .desktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.studentAchievements .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child, .tablet .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child,
  .desktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child,
  .largeDesktop .page_campus_whatsHappening .filterWrapper.victoriaNewsEvent .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child {
    position: relative;
    top: auto;
    right: auto;
    -webkit-transform: none;
            transform: none; }
  .page_campus_whatsHappening .filterWrapper .filterBtnWrapper {
    position: relative; }
    .tablet .page_campus_whatsHappening .filterWrapper .filterBtnWrapper,
    .desktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper {
      background-color: #ffffff;
      text-align: right;
      border-style: solid;
      border-color: #888888;
      border-width: 0 0 1px; }
    .tablet .page_campus_whatsHappening .filterWrapper .filterBtnWrapper.active .filterBtn:after,
    .desktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper.active .filterBtn:after,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper.active .filterBtn:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn {
      display: block;
      padding: 10px;
      position: relative;
      color: #000000;
      text-align: left;
      transition: all 0.2s ease-out; }
      .tablet .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn,
      .desktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn,
      .largeDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn {
        display: inline-block;
        padding: 0 20px 0 0;
        color: #006cb0;
        line-height: 40px;
        text-align: center; }
      .deviceDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn:hover, .deviceDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn:active {
        color: #e6b319; }
      .tablet .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn:after,
      .desktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn:after,
      .largeDesktop .page_campus_whatsHappening .filterWrapper .filterBtnWrapper .filterBtn:after {
        content: "";
        display: block;
        width: 20px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        background-image: url("../images/common/selectArrow.png");
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: right center;
        transition: all 0.2s ease-out; }
  .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper {
    margin-top: 0 !important; }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper {
    position: relative;
    transition: margin 0.2s ease-out; }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper.active,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper.active,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper.active {
    margin-top: 0 !important; }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder {
    padding: 30px 150px 30px 0;
    float: left;
    text-align: left; }
  .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder:before {
    display: block; }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.campusFilter:before,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.campusFilter:before,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.campusFilter:before {
    content: attr(data-title); }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.typeFilter:before,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.typeFilter:before,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.typeFilter:before {
    content: attr(data-title); }
  .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.yearFilter:before,
  .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.yearFilter:before,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.yearFilter:before {
    content: attr(data-title); }
  .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
    display: block;
    padding: 0 30px;
    position: relative;
    color: #ffffff; }
    .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
      height: 50px;
      line-height: 50px;
      background-color: #e6b319; }
    .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
    .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
      display: none; }
    .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn.active {
      background-color: #006cb0; }
      .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn.active:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn:before {
      content: "";
      display: block;
      height: 1px;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      background-color: #ffffff; }
    .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn:after {
      content: "";
      display: block;
      width: 40px;
      height: 50px;
      margin: 0 auto;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/common/topBannerMoreArrow.png");
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: center center;
      transition: -webkit-transform 0.2s ease-out;
      transition: transform 0.2s ease-out;
      transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer {
    display: block;
    overflow: hidden;
    position: relative; }
    .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer {
      background-color: #f5f5f5; }
    .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer,
    .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer {
      overflow: visible; }
    .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection {
      display: block;
      height: 100%;
      margin: 0;
      position: relative;
      overflow: hidden;
      transition: margin 0.2s ease-out; }
      .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection {
        text-align: left; }
      .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection,
      .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection,
      .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection {
        margin-top: 0 !important;
        overflow: visible; }
      .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption {
        display: block;
        max-width: 360px;
        margin: 10px auto;
        padding: 0 30px;
        position: relative; }
        .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption,
        .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption,
        .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption {
          margin: 10px 0;
          padding: 0; }
        .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child,
        .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child,
        .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption:last-child {
          position: absolute;
          top: -10px;
          right: 0;
          -webkit-transform: translate(20px, 0) translate(100%, 0);
                  transform: translate(20px, 0) translate(100%, 0); }
        .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
          display: block;
          padding: 0 0 0 40px;
          line-height: 30px;
          color: #000000;
          cursor: pointer;
          -webkit-tap-highlight-color: transparent; }
          .deviceDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:hover:after, .deviceDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:active:after {
            -webkit-transform: scale(1);
                    transform: scale(1); }
          .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before {
            content: "";
            display: block;
            width: 24px;
            height: 24px;
            position: absolute;
            top: 3px;
            border-radius: 24px;
            border-style: solid;
            border-color: #c6c6c6;
            border-width: 2px; }
            .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before {
              left: 30px; }
            .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before,
            .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before,
            .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before {
              left: 0; }
          .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after {
            content: "";
            display: block;
            width: 16px;
            height: 16px;
            position: absolute;
            top: 7px;
            -webkit-transform: scale(0);
                    transform: scale(0);
            background-color: #006cb0;
            border-radius: 20px;
            transition: -webkit-transform 0.2s ease-out;
            transition: transform 0.2s ease-out;
            transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
            .mobile .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after {
              left: 34px; }
            .tablet .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after,
            .desktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after,
            .largeDesktop .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after {
              left: 4px; }
        .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption input[type="radio"] {
          position: absolute;
          left: -9999px;
          -webkit-tap-highlight-color: transparent; }
          .page_campus_whatsHappening .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption input[type="radio"]:checked + label:after {
            -webkit-transform: scale(1);
                    transform: scale(1); }
  .tablet .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper,
  .desktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper,
  .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper {
    padding: 20px 0 0;
    text-align: left;
    border-style: solid;
    border-color: #888888;
    border-width: 1px 0 0; }
  .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
    display: block;
    padding: 0 30px;
    position: relative;
    color: #000000; }
    .mobile .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
      height: 75px;
      line-height: 75px; }
    .tablet .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle,
    .desktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
      display: inline-block;
      padding: 0 20px 0 0;
      height: auto;
      color: #000000;
      line-height: 40px; }
  .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn {
    display: block;
    margin: 0 auto;
    position: relative;
    color: #ffffff;
    transition: all 0.2s ease-out; }
    .mobile .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn {
      width: 100px;
      line-height: 40px;
      background-color: #006cb0; }
    .tablet .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn,
    .desktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn {
      display: inline-block;
      padding: 0 20px 0 0;
      height: auto;
      color: #006cb0;
      line-height: 40px; }
    .deviceDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn:hover, .deviceDesktop .page_campus_whatsHappening .filterWrapper .appliedFilterWrapper .filterResetBtn:active {
      color: #e6b319; }
  .page_campus_whatsHappening .filterWrapper .appliedFilters {
    display: block;
    padding: 10px 0; }
    .tablet .page_campus_whatsHappening .filterWrapper .appliedFilters,
    .desktop .page_campus_whatsHappening .filterWrapper .appliedFilters,
    .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilters {
      text-align: left; }
    .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle {
      display: inline-block;
      margin: 4px;
      padding: 4px 26px 4px 10px;
      position: relative;
      line-height: 20px;
      color: #888888;
      border-style: solid;
      border-color: #888888;
      border-width: 1px;
      border-radius: 4px; }
      .tablet .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle,
      .desktop .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle,
      .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle {
        margin: 4px 4px 4px 0;
        padding: 4px 26px 4px 0;
        border-width: 0; }
      .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle .removeFilterBtn {
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 4px;
        top: 4px;
        background-image: url("../images/common/campus/filterClose.png");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        transition: all 0.2s ease-out; }
        .tablet .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle .removeFilterBtn,
        .desktop .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle .removeFilterBtn,
        .largeDesktop .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle .removeFilterBtn {
          top: 9px; }
        .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle .removeFilterBtn:hover, .page_campus_whatsHappening .filterWrapper .appliedFilters .filterTitle .removeFilterBtn:active {
          -webkit-transform: scale(1.2);
                  transform: scale(1.2); }

.tablet .page_campus_whatsHappening .newsWrapper .newsItem {
  padding: 0 0 21vw; }

.desktop .page_campus_whatsHappening .newsWrapper .newsItem,
.largeDesktop .page_campus_whatsHappening .newsWrapper .newsItem {
  padding: 0 0 256px; }

.tablet .page_campus_whatsHappening .newsWrapper .newsItem:nth-child(3n+1),
.desktop .page_campus_whatsHappening .newsWrapper .newsItem:nth-child(3n+1),
.largeDesktop .page_campus_whatsHappening .newsWrapper .newsItem:nth-child(3n+1) {
  margin: 1% 1% 1% 0; }

.tablet .page_campus_whatsHappening .newsWrapper .newsItem:nth-child(3n),
.desktop .page_campus_whatsHappening .newsWrapper .newsItem:nth-child(3n),
.largeDesktop .page_campus_whatsHappening .newsWrapper .newsItem:nth-child(3n) {
  margin: 1% 0 1% 1%; }

/* CAMPUS WHAT'S HAPPENING DETAILS */
.page_campus_whatsHappening_details .newsDetails {
  padding: 30px 30px 20px; }
  .tablet .page_campus_whatsHappening_details .newsDetails,
  .desktop .page_campus_whatsHappening_details .newsDetails,
  .largeDesktop .page_campus_whatsHappening_details .newsDetails {
    padding: 50px 50px 30px; }
  .page_campus_whatsHappening_details .newsDetails .gallerySlider {
    max-width: 1300px; }
    .tablet .page_campus_whatsHappening_details .newsDetails .gallerySlider,
    .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider,
    .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider {
      margin: 0 auto;
      padding: 0 50px; }
    .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-arrow:before {
      background-image: url("../images/common/moreArrow.png"); }
    .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem {
      position: relative; }
      .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .newsImg {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 0 66.66%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center; }
      .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        left: 0;
        top: 0;
        -webkit-transform: scale(1.2);
                transform: scale(1.2);
        transition: opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s;
        transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s;
        transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s; }
        .devicePortable .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper {
          background-color: transparent; }
        .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper video {
          width: 100%;
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%); }
        .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn {
          display: block;
          width: 40px;
          height: 40px;
          position: absolute;
          left: 50%;
          top: 50%;
          -webkit-transform: translate(0, -20px) translate(-50%, -50%);
                  transform: translate(0, -20px) translate(-50%, -50%);
          background-color: rgba(0, 0, 0, 0.2);
          border-radius: 40px;
          border-style: solid;
          border-color: #ffffff;
          border-width: 2px; }
          .tablet .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn,
          .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn,
          .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn {
            -webkit-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%); }
          .tablet .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn,
          .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn,
          .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn {
            width: 100px;
            height: 100px;
            border-radius: 100px; }
          .deviceDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn:hover:after, .deviceDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn:active:after {
            -webkit-transform: translate(-40%, -50%) scale(1.4);
                    transform: translate(-40%, -50%) scale(1.4); }
          .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn:after {
            content: "";
            display: block;
            width: 20px;
            height: 20px;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-40%, -50%);
                    transform: translate(-40%, -50%);
            border-style: solid;
            border-color: transparent transparent transparent #ffffff;
            border-width: 10px 0 10px 20px;
            transition: -webkit-transform 0.4s ease-out;
            transition: transform 0.4s ease-out;
            transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out; }
            .tablet .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn:after,
            .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn:after,
            .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .videoWrapper .videoBtn:after {
              width: 30px;
              height: 30px;
              border-width: 15px 0 15px 30px; }
      .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .thumbnailImg {
        display: none; }
      .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel {
        display: block;
        width: 42px;
        height: 50px;
        position: absolute;
        right: 0;
        top: 0;
        color: #ffffff;
        background-color: #f3776a; }
        .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel {
          width: 51px;
          height: 60px; }
        .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel {
          width: 68px;
          height: 80px; }
        .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date {
          display: block;
          margin: 3px 0 0;
          line-height: 24px; }
          .tablet .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date,
          .desktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date,
          .largeDesktop .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .date {
            margin: 6px 0 0; }
        .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .dateLabel .month {
          display: block;
          line-height: 18px; }
      .page_campus_whatsHappening_details .newsDetails .gallerySlider .sliderItem .message {
        display: none; }
    .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-dots {
      bottom: 20px; }
      .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-dots li {
        width: 12px;
        height: 12px;
        margin: 0 10px; }
        .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-dots li button {
          width: 12px;
          height: 12px; }
          .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-dots li button:before {
            content: "";
            width: 12px;
            height: 12px;
            background-color: #ffffff;
            border-radius: 12px;
            opacity: 1;
            transition: opacity 0.2s ease-out; }
        .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-dots li.slick-active button:before {
          background-color: transparent;
          border-style: solid;
          border-width: 1px;
          border-color: #ffffff;
          -webkit-transform: scale(1.4);
                  transform: scale(1.4); }
    .mobile .page_campus_whatsHappening_details .newsDetails .gallerySlider .slick-arrow {
      display: none !important; }
  .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider {
    max-width: 1300px;
    /*
			.slick-arrow
			{
				&:before
				{
					background-image: $framework_sliderArrow_more;
				}
			}
			*/
    /*
			.slick-arrow
			{
				.mobile &,
				.tablet &
				{
					display: none !important;
				}
			}
			*/ }
    .tablet .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider,
    .desktop .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider,
    .largeDesktop .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider {
      margin: 0 auto;
      padding: 0 50px; }
    .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .sliderItem {
      position: relative;
      padding: 20px;
      /*
				.dateLabel
				{
					display: block;
					width: 35px;
					height: 50px;
					position: absolute;
					right: 0;
					top: 0;
					color: $campusWhatsHappeningDetails_gallerySlider_dateLabel_color;
					background-color: $campusWhatsHappeningDetails_gallerySlider_dateLabel_bgColor;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						width: 50px;
						height: 80px;
					}
					.date
					{
						display: block;
						margin: 3px 0 0;
						line-height: 24px;
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							margin: 6px 0 0;
						}
					}
					.month
					{
						display: block;
						line-height: 18px;
					}
				}
				.message
				{
					display: none;
				}
				*/ }
      .mobile .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .sliderItem {
        padding: 0; }
      .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .sliderItem.slick-current .newsImg {
        /*
						transform: scale(1.0);
						transition: $campusWhatsHappeningDetails_gallerySlider_sliderItem_img_transition_active;
						*/
        opacity: 1; }
      .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .sliderItem .newsImg {
        display: block;
        width: 100%;
        height: 100%;
        padding: 0 0 66.66%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        /*
					transform: scale(1.2);
					*/
        opacity: 0.5;
        transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
        transition: transform 1s ease-out, opacity 1s ease-out;
        transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out; }
    .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .slick-dots {
      bottom: 20px; }
      .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .slick-dots li {
        width: 12px;
        height: 12px;
        margin: 0 10px; }
        .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .slick-dots li button {
          width: 12px;
          height: 12px; }
          .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .slick-dots li button:before {
            content: "";
            width: 12px;
            height: 12px;
            background-color: #ffffff;
            border-radius: 12px;
            opacity: 1;
            transition: opacity 0.2s ease-out; }
        .page_campus_whatsHappening_details .newsDetails .galleryThumbnailSlider .slick-dots li.slick-active button:before {
          background-color: transparent;
          border-style: solid;
          border-width: 1px;
          border-color: #ffffff;
          -webkit-transform: scale(1.4);
                  transform: scale(1.4); }
  .page_campus_whatsHappening_details .newsDetails .galleryMessage {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 0; }
    .tablet .page_campus_whatsHappening_details .newsDetails .galleryMessage,
    .desktop .page_campus_whatsHappening_details .newsDetails .galleryMessage,
    .largeDesktop .page_campus_whatsHappening_details .newsDetails .galleryMessage {
      padding: 20px 50px; }

.page_campus_whatsHappening_details .newsDetailsMessage {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 40px; }
  .tablet .page_campus_whatsHappening_details .newsDetailsMessage,
  .desktop .page_campus_whatsHappening_details .newsDetailsMessage,
  .largeDesktop .page_campus_whatsHappening_details .newsDetailsMessage {
    padding: 0 50px 60px; }

.page_campus_whatsHappening_details .sharePanel {
  padding: 0 30px 20px;
  border-style: solid;
  border-color: #888888;
  border-width: 0 0 1px; }
  .tablet .page_campus_whatsHappening_details .sharePanel,
  .desktop .page_campus_whatsHappening_details .sharePanel,
  .largeDesktop .page_campus_whatsHappening_details .sharePanel {
    padding: 0 50px 30px; }
  .page_campus_whatsHappening_details .sharePanel .sharePanelTitle {
    margin: 0 0 10px;
    color: #000000; }
    .tablet .page_campus_whatsHappening_details .sharePanel .sharePanelTitle,
    .desktop .page_campus_whatsHappening_details .sharePanel .sharePanelTitle,
    .largeDesktop .page_campus_whatsHappening_details .sharePanel .sharePanelTitle {
      margin: 0 0 20px; }
    .page_campus_whatsHappening_details .sharePanel .sharePanelTitle:before {
      content: "";
      display: block;
      width: 30px;
      height: 2px;
      margin: 0 auto 36px;
      background-color: #e6b319; }
      .tablet .page_campus_whatsHappening_details .sharePanel .sharePanelTitle:before,
      .desktop .page_campus_whatsHappening_details .sharePanel .sharePanelTitle:before,
      .largeDesktop .page_campus_whatsHappening_details .sharePanel .sharePanelTitle:before {
        width: 100px;
        height: 4px; }
  .page_campus_whatsHappening_details .sharePanel .shareItemWrapper {
    padding: 0 30px;
    text-align: center; }
    .tablet .page_campus_whatsHappening_details .sharePanel .shareItemWrapper,
    .desktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper,
    .largeDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper {
      padding: 0 50px;
      -webkit-transform: scale(0.7);
              transform: scale(0.7); }
    .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem {
      display: inline-block;
      width: 35px;
      height: 35px;
      margin: 4px;
      background-color: #5a9113;
      background-image: url("../images/common/sptShareIcons.png");
      background-repeat: no-repeat;
      background-size: 125px;
      background-position: 0 0;
      border-radius: 35px;
      border-style: solid;
      border-width: 5px;
      border-color: #5a9113;
      transition: all 0.2s ease-out; }
      .tablet .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem,
      .desktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem,
      .largeDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem {
        width: 70px;
        height: 70px;
        margin: 8px;
        border-radius: 70px;
        border-width: 10px;
        background-size: 250px; }
      .deviceDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem:hover, .deviceDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem:active {
        background-color: #e6b319;
        border-color: #e6b319; }
      .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconEmail {
        background-position: -25px 0; }
        .tablet .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconEmail,
        .desktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconEmail,
        .largeDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconEmail {
          background-position: -50px 0; }
      .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconFacebook {
        background-position: -50px 0; }
        .tablet .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconFacebook,
        .desktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconFacebook,
        .largeDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconFacebook {
          background-position: -100px 0; }
      .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconTwitter {
        background-position: -75px 0; }
        .tablet .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconTwitter,
        .desktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconTwitter,
        .largeDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconTwitter {
          background-position: -150px 0; }
      .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconWeibo {
        background-position: -100px 0; }
        .tablet .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconWeibo,
        .desktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconWeibo,
        .largeDesktop .page_campus_whatsHappening_details .sharePanel .shareItemWrapper .shareItem.shareIconWeibo {
          background-position: -200px 0; }

.page_campus_whatsHappening_details .backPanel {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 30px;
  text-align: left; }
  .tablet .page_campus_whatsHappening_details .backPanel,
  .desktop .page_campus_whatsHappening_details .backPanel,
  .largeDesktop .page_campus_whatsHappening_details .backPanel {
    padding: 50px 50px; }
  .page_campus_whatsHappening_details .backPanel .backBtn {
    display: block;
    padding: 0 0 0 25px;
    position: relative;
    color: #006cb0;
    line-height: 24px;
    transition: all 0.2s ease-out; }
    .tablet .page_campus_whatsHappening_details .backPanel .backBtn,
    .desktop .page_campus_whatsHappening_details .backPanel .backBtn,
    .largeDesktop .page_campus_whatsHappening_details .backPanel .backBtn {
      padding: 0 0 0 50px;
      line-height: 32px; }
    .deviceDesktop .page_campus_whatsHappening_details .backPanel .backBtn:hover, .deviceDesktop .page_campus_whatsHappening_details .backPanel .backBtn:active {
      color: #e6b319; }
    .deviceDesktop .page_campus_whatsHappening_details .backPanel .backBtn:hover:before, .deviceDesktop .page_campus_whatsHappening_details .backPanel .backBtn:active:before {
      -webkit-transform: translate(-10px, 0) rotate(180deg);
              transform: translate(-10px, 0) rotate(180deg); }
    .page_campus_whatsHappening_details .backPanel .backBtn:before {
      content: "";
      display: block;
      width: 25px;
      height: 24px;
      position: absolute;
      left: 0;
      top: 2px;
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      background-image: url("../images/common/moreArrow.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center center;
      transition: all 0.2s ease-out; }
      .tablet .page_campus_whatsHappening_details .backPanel .backBtn:before,
      .desktop .page_campus_whatsHappening_details .backPanel .backBtn:before,
      .largeDesktop .page_campus_whatsHappening_details .backPanel .backBtn:before {
        width: 50px;
        height: 32px; }

/* INDEX */
.veo_templateT1 .whyVictoria,
.veo_templateT1 .playgroup,
.veo_templateT1 .experientialEducation,
.veo_templateT1 .studentCases,
.veo_templateT1 .whatsHappening,
.veo_templateT1 .maxim,
.veo_templateT1 .imgSlider {
  margin: 10px 0 0; }

.veo_templateT1 .topSlider .slick-arrow,
.veo_templateT1 .playgroup .slick-arrow,
.veo_templateT1 .experientialEducation .slick-arrow,
.veo_templateT1 .imgSlider .slick-arrow {
  width: 25px;
  height: 40px; }
  .tablet .veo_templateT1 .topSlider .slick-arrow,
  .desktop .veo_templateT1 .topSlider .slick-arrow,
  .largeDesktop .veo_templateT1 .topSlider .slick-arrow, .tablet
  .veo_templateT1 .playgroup .slick-arrow,
  .desktop
  .veo_templateT1 .playgroup .slick-arrow,
  .largeDesktop
  .veo_templateT1 .playgroup .slick-arrow, .tablet
  .veo_templateT1 .experientialEducation .slick-arrow,
  .desktop
  .veo_templateT1 .experientialEducation .slick-arrow,
  .largeDesktop
  .veo_templateT1 .experientialEducation .slick-arrow, .tablet
  .veo_templateT1 .imgSlider .slick-arrow,
  .desktop
  .veo_templateT1 .imgSlider .slick-arrow,
  .largeDesktop
  .veo_templateT1 .imgSlider .slick-arrow {
    width: 50px;
    height: 80px; }
  .veo_templateT1 .topSlider .slick-arrow:before,
  .veo_templateT1 .playgroup .slick-arrow:before,
  .veo_templateT1 .experientialEducation .slick-arrow:before,
  .veo_templateT1 .imgSlider .slick-arrow:before {
    content: "";
    display: block;
    width: 25px;
    height: 40px;
    background-image: url("../images/common/bannerArrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center; }
    .tablet .veo_templateT1 .topSlider .slick-arrow:before,
    .desktop .veo_templateT1 .topSlider .slick-arrow:before,
    .largeDesktop .veo_templateT1 .topSlider .slick-arrow:before, .tablet
    .veo_templateT1 .playgroup .slick-arrow:before,
    .desktop
    .veo_templateT1 .playgroup .slick-arrow:before,
    .largeDesktop
    .veo_templateT1 .playgroup .slick-arrow:before, .tablet
    .veo_templateT1 .experientialEducation .slick-arrow:before,
    .desktop
    .veo_templateT1 .experientialEducation .slick-arrow:before,
    .largeDesktop
    .veo_templateT1 .experientialEducation .slick-arrow:before, .tablet
    .veo_templateT1 .imgSlider .slick-arrow:before,
    .desktop
    .veo_templateT1 .imgSlider .slick-arrow:before,
    .largeDesktop
    .veo_templateT1 .imgSlider .slick-arrow:before {
      width: 50px;
      height: 80px; }
  .veo_templateT1 .topSlider .slick-arrow.slick-prev,
  .veo_templateT1 .playgroup .slick-arrow.slick-prev,
  .veo_templateT1 .experientialEducation .slick-arrow.slick-prev,
  .veo_templateT1 .imgSlider .slick-arrow.slick-prev {
    left: 0;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: 50% 25%;
            transform-origin: 50% 25%; }
  .veo_templateT1 .topSlider .slick-arrow.slick-next,
  .veo_templateT1 .playgroup .slick-arrow.slick-next,
  .veo_templateT1 .experientialEducation .slick-arrow.slick-next,
  .veo_templateT1 .imgSlider .slick-arrow.slick-next {
    right: 0; }

.veo_templateT1 .topSlider.slick-dotted.slick-slider {
  margin: 0; }

.veo_templateT1 .topSlider .sliderItem {
  height: 56.25vw;
  position: relative; }
  .veo_templateT1 .topSlider .sliderItem:after {
    content: "";
    display: block;
    width: 100%;
    height: 45%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5)); }
  .veo_templateT1 .topSlider .sliderItem.active img {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    transition: opacity 2s ease-out, -webkit-transform 2s ease-out;
    transition: transform 2s ease-out, opacity 2s ease-out;
    transition: transform 2s ease-out, opacity 2s ease-out, -webkit-transform 2s ease-out; }
  .veo_templateT1 .topSlider .sliderItem img {
    width: 100%;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
    transition: opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s;
    transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s;
    transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s; }
  .veo_templateT1 .topSlider .sliderItem .messageWrapper {
    width: 80%;
    position: absolute;
    left: 50%;
    bottom: 60px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0); }
    .mobile .veo_templateT1 .topSlider .sliderItem .messageWrapper,
    .tablet .veo_templateT1 .topSlider .sliderItem .messageWrapper {
      display: none; }
    .veo_templateT1 .topSlider .sliderItem .messageWrapper .message {
      width: 100%;
      height: 100%;
      color: #ffffff;
      margin: 0 auto; }
      .veo_templateT1 .topSlider .sliderItem .messageWrapper .message.active td .moreBtn {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
      .veo_templateT1 .topSlider .sliderItem .messageWrapper .message td {
        vertical-align: middle; }
        .veo_templateT1 .topSlider .sliderItem .messageWrapper .message td .title {
          display: block;
          position: relative;
          overflow: hidden;
          text-align: center;
          transition: padding 0.2s ease-out; }
          .veo_templateT1 .topSlider .sliderItem .messageWrapper .message td .title .desc {
            display: block;
            width: 100%;
            position: absolute; }
        .veo_templateT1 .topSlider .sliderItem .messageWrapper .message td .moreBtn {
          width: 48px;
          height: 48px;
          display: block;
          margin: 10px auto 0;
          background-image: url("../images/common/topBannerMoreArrow.png");
          background-repeat: no-repeat;
          background-size: 100%;
          background-position: center center;
          border-radius: 50px;
          border-style: solid;
          border-width: 2px;
          border-color: #ffffff;
          transition: -webkit-transform 0.2s ease-out;
          transition: transform 0.2s ease-out;
          transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }

.veo_templateT1 .topSlider .slick-dots {
  bottom: 20px; }
  .veo_templateT1 .topSlider .slick-dots li {
    width: 12px;
    height: 12px;
    margin: 0 10px; }
    .veo_templateT1 .topSlider .slick-dots li button {
      width: 12px;
      height: 12px; }
      .veo_templateT1 .topSlider .slick-dots li button:before {
        content: "";
        width: 12px;
        height: 12px;
        background-color: #ffffff;
        border-radius: 12px;
        opacity: 1;
        transition: opacity 0.2s ease-out; }
    .veo_templateT1 .topSlider .slick-dots li.slick-active button:before {
      background-color: transparent;
      border-style: solid;
      border-width: 1px;
      border-color: #ffffff;
      -webkit-transform: scale(1.4);
              transform: scale(1.4); }

.mobile .veo_templateT1 .topSlider .slick-arrow {
  display: none !important; }

.veo_templateT1 .topSliderMessage {
  color: #ffffff;
  background-color: #006cb0;
  padding-bottom: 10px; }
  .desktop .veo_templateT1 .topSliderMessage,
  .largeDesktop .veo_templateT1 .topSliderMessage {
    display: none; }
  .veo_templateT1 .topSliderMessage .title {
    display: block;
    padding: 10px 20px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: padding 0.2s ease-out; }
    .veo_templateT1 .topSliderMessage .title .desc {
      display: block;
      width: 100%;
      position: absolute;
      left: 0;
      padding: 0 20px; }
  .veo_templateT1 .topSliderMessage .moreBtn {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
    background-image: url("../images/common/topBannerMoreArrow.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
    border-radius: 24px; }

.veo_templateT1 .whyVictoria {
  position: relative;
  background-image: url("../images/common/index/whyVictoriaBgM2x.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  text-align: center;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1s ease-out, -webkit-transform 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out;
  transition: transform 1s ease-out, opacity 1s ease-out, -webkit-transform 1s ease-out;
  margin: 0px;
  padding: 80px 0;
  /*
		.title
		{
			display: block;
			margin: 0 18vw 20px;
			padding: 60px 0 0;
			color: $index_whyVictoriaTitleColor;
//			text-align: center;
			text-transform: uppercase;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				margin: 0 20vw 70px;
				padding: 120px 0 0;
			}
		}
		.titleLine
		{
			display: block;
			width: 30px;
			height: 2px;
			margin: 0 auto 20px;
			background-color: $index_whyVictoriaTitleLineBgColor;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				width: 100px;
				height: 4px;
				margin: 0 auto 70px;
			}
		}
		.desc
		{
			display: block;
			margin: 0 18vw 20px;
			color: $index_whyVictoriaDescColor;
//			text-align: center;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				margin: 0 20vw 70px;
//				font-weight: bold;
			}
		}
		*/ }
  .mobile .veo_templateT1 .whyVictoria {
    padding: 0; }
  .tablet .veo_templateT1 .whyVictoria,
  .desktop .veo_templateT1 .whyVictoria,
  .largeDesktop .veo_templateT1 .whyVictoria {
    background-image: url("../images/common/index/whyVictoriaBg.jpg");
    background-size: 1920px; }
  .tablet .veo_templateT1 .whyVictoria:before,
  .desktop .veo_templateT1 .whyVictoria:before,
  .largeDesktop .veo_templateT1 .whyVictoria:before {
    content: "";
    display: block;
    position: absolute;
    background-image: url("../images/common/index/whyVictoriaPuzzle.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center bottom; }
  .tablet .veo_templateT1 .whyVictoria:before {
    right: 2%;
    width: 180px;
    height: 180px; }
  .desktop .veo_templateT1 .whyVictoria:before,
  .largeDesktop .veo_templateT1 .whyVictoria:before {
    width: 240px;
    height: 240px;
    right: 10%; }
  .tablet .veo_templateT1 .whyVictoria:before {
    top: -30px; }
  .desktop .veo_templateT1 .whyVictoria:before,
  .largeDesktop .veo_templateT1 .whyVictoria:before {
    top: -100px; }
  .veo_templateT1 .whyVictoria.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veo_templateT1 .whyVictoria .title {
    margin: 0 18vw 20px;
    padding: 40px 0 0; }
    .tablet .veo_templateT1 .whyVictoria .title,
    .desktop .veo_templateT1 .whyVictoria .title,
    .largeDesktop .veo_templateT1 .whyVictoria .title {
      margin: auto;
      padding: 0; }
    .veo_templateT1 .whyVictoria .title.titleLine:after {
      background-color: #f2bf5d; }
  .veo_templateT1 .whyVictoria .desc {
    margin: 20px 18vw; }
    .tablet .veo_templateT1 .whyVictoria .desc,
    .desktop .veo_templateT1 .whyVictoria .desc,
    .largeDesktop .veo_templateT1 .whyVictoria .desc {
      margin: 70px 20vw;
      font-weight: bold; }
  .veo_templateT1 .whyVictoria .moreBtn {
    margin: 0 0 60px;
    color: #006cb0;
    border-color: #006cb0; }
    .tablet .veo_templateT1 .whyVictoria .moreBtn,
    .desktop .veo_templateT1 .whyVictoria .moreBtn,
    .largeDesktop .veo_templateT1 .whyVictoria .moreBtn {
      margin: auto; }
    .veo_templateT1 .whyVictoria .moreBtn:hover, .veo_templateT1 .whyVictoria .moreBtn:active {
      color: #ffffff;
      background-color: #006cb0; }

.veo_templateT1 .playgroup {
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  margin: 0px; }
  .mobile .veo_templateT1 .playgroup {
    padding: 0; }
  .tablet .veo_templateT1 .playgroup,
  .desktop .veo_templateT1 .playgroup,
  .largeDesktop .veo_templateT1 .playgroup {
    padding: 0; }
  .veo_templateT1 .playgroup.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veo_templateT1 .playgroup .playgroupItem {
    position: relative;
    /*
			&.active
			{
				.bannerMobile,
				.bannerDesktop
				{
					transform: scale(1.0);
					opacity: 1;
					transition: transform 2.0s ease-out, opacity 2.0s ease-out;
				}
			}
			*/ }
    .veo_templateT1 .playgroup .playgroupItem .bannerMobile {
      display: block;
      width: 100%; }
      .desktop .veo_templateT1 .playgroup .playgroupItem .bannerMobile,
      .largeDesktop .veo_templateT1 .playgroup .playgroupItem .bannerMobile {
        display: none; }
    .veo_templateT1 .playgroup .playgroupItem .bannerDesktop {
      display: block;
      width: 100%; }
      .mobile .veo_templateT1 .playgroup .playgroupItem .bannerDesktop,
      .tablet .veo_templateT1 .playgroup .playgroupItem .bannerDesktop {
        display: none; }
    .veo_templateT1 .playgroup .playgroupItem .playgroupMessage {
      height: 100%;
      position: absolute;
      right: 10%;
      top: 0;
      text-align: center; }
      .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table {
        width: 150px;
        height: 100%; }
        .desktop .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table,
        .largeDesktop .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table {
          width: 400px; }
        .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td {
          vertical-align: middle;
          /*
						.title
						{
							display: block;
							text-transform: uppercase;
							color: $index_playgroupTitleColor;
						}
						.titleLine
						{
							display: block;
							width: 50px;
							height: 2px;
							margin: 10px auto;
							background-color: $index_playgroupTitleLineBgColor;
							.desktop &,
							.largeDesktop &
							{
								width: 100px;
								height: 4px;
								margin: 16px auto;
							}
						}
						.desc
						{
							display: block;
							text-transform: uppercase;
							color: $index_playgroupDescColor;
						}
						*/ }
          .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .title {
            color: #ffffff; }
            .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .title.titleLine:after {
              margin: 10px auto 0;
              background-color: #3da6ce; }
          .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .desc {
            padding: 10px 0 0;
            color: #ffffff; }
          .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn {
            display: inline-block;
            color: #ffffff;
            border-color: #ffffff; }
            .mobile .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn,
            .tablet .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn {
              display: none; }
            .desktop .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn,
            .largeDesktop .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn {
              margin: 16px 0 0; }
            .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn:hover, .veo_templateT1 .playgroup .playgroupItem .playgroupMessage table td .moreBtn:active {
              color: #3da6ce;
              background-color: #ffffff; }
    .veo_templateT1 .playgroup .playgroupItem .gridBtn {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
      .desktop .veo_templateT1 .playgroup .playgroupItem .gridBtn,
      .largeDesktop .veo_templateT1 .playgroup .playgroupItem .gridBtn {
        display: none; }

.veo_templateT1 .experientialEducation {
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out, -webkit-transform 1.0s ease-out; }
  .mobile .veo_templateT1 .experientialEducation {
    padding: 0; }
  .tablet .veo_templateT1 .experientialEducation,
  .desktop .veo_templateT1 .experientialEducation,
  .largeDesktop .veo_templateT1 .experientialEducation {
    padding: 0; }
  .veo_templateT1 .experientialEducation.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veo_templateT1 .experientialEducation .experientialEducationItem {
    position: relative; }
    .veo_templateT1 .experientialEducation .experientialEducationItem.active .bannerMobile,
    .veo_templateT1 .experientialEducation .experientialEducationItem.active .bannerDesktop {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      transition: opacity 2.0s ease-out, -webkit-transform 2.0s ease-out;
      transition: transform 2.0s ease-out, opacity 2.0s ease-out;
      transition: transform 2.0s ease-out, opacity 2.0s ease-out, -webkit-transform 2.0s ease-out; }
    .veo_templateT1 .experientialEducation .experientialEducationItem .bannerMobile {
      display: block;
      width: 100%;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      opacity: 0.5;
      transition: opacity 0.1s ease-out 2.0s, -webkit-transform 0.1s ease-out 2.0s;
      transition: transform 0.1s ease-out 2.0s, opacity 0.1s ease-out 2.0s;
      transition: transform 0.1s ease-out 2.0s, opacity 0.1s ease-out 2.0s, -webkit-transform 0.1s ease-out 2.0s; }
      .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .bannerMobile,
      .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .bannerMobile {
        display: none; }
    .veo_templateT1 .experientialEducation .experientialEducationItem .bannerDesktop {
      display: block;
      width: 100%;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      opacity: 0.5;
      transition: opacity 0.1s ease-out 2.0s, -webkit-transform 0.1s ease-out 2.0s;
      transition: transform 0.1s ease-out 2.0s, opacity 0.1s ease-out 2.0s;
      transition: transform 0.1s ease-out 2.0s, opacity 0.1s ease-out 2.0s, -webkit-transform 0.1s ease-out 2.0s; }
      .mobile .veo_templateT1 .experientialEducation .experientialEducationItem .bannerDesktop,
      .tablet .veo_templateT1 .experientialEducation .experientialEducationItem .bannerDesktop {
        display: none; }
    .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      transition: opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s;
      transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s;
      transition: transform 0.1s ease-out 2s, opacity 0.1s ease-out 2s, -webkit-transform 0.1s ease-out 2s; }
      .devicePortable .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper {
        background-color: transparent; }
      .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper video {
        width: 100%;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
      .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn {
        display: block;
        width: 40px;
        height: 40px;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(50px, 0) translate(-50%, -50%);
                transform: translate(50px, 0) translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 40px;
        border-style: solid;
        border-color: #ffffff;
        border-width: 2px; }
        .mobile .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn {
          display: none; }
        .tablet .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn,
        .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn,
        .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn {
          -webkit-transform: translate(-50%, -50%);
                  transform: translate(-50%, -50%); }
        .tablet .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn,
        .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn,
        .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn {
          width: 100px;
          height: 100px;
          border-radius: 100px; }
        .deviceDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn:hover:after, .deviceDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn:active:after {
          -webkit-transform: translate(-40%, -50%) scale(1.4);
                  transform: translate(-40%, -50%) scale(1.4); }
        .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn:after {
          content: "";
          display: block;
          width: 20px;
          height: 20px;
          position: absolute;
          top: 50%;
          left: 50%;
          -webkit-transform: translate(-40%, -50%);
                  transform: translate(-40%, -50%);
          border-style: solid;
          border-color: transparent transparent transparent #ffffff;
          border-width: 10px 0 10px 20px;
          transition: -webkit-transform 0.4s ease-out;
          transition: transform 0.4s ease-out;
          transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out; }
          .tablet .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn:after,
          .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn:after,
          .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .videoWrapper .videoBtn:after {
            width: 30px;
            height: 30px;
            border-width: 15px 0 15px 30px; }
    .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage {
      height: 100%;
      position: absolute;
      left: 10%;
      top: 0;
      text-align: center; }
      .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table {
        width: 150px;
        height: 100%; }
        .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table,
        .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table {
          width: 400px; }
        .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td {
          vertical-align: middle;
          /*
						.title
						{
							display: block;
							text-transform: uppercase;
							color: $index_expEduTitleColor;
						}
						.titleLine
						{
							display: block;
							width: 50px;
							height: 2px;
							margin: 10px auto;
							background-color: $index_expEduTitleLineBgColor;
							.desktop &,
							.largeDesktop &
							{
								width: 100px;
								height: 4px;
								margin: 16px auto;
							}
						}
						.desc
						{
							display: block;
							text-transform: uppercase;
							color: $index_expEduDescColor;
						}
						*/ }
          .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .title {
            color: #ffffff; }
            .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .title.titleLine:after {
              margin: 10px auto 0;
              background-color: #cba6dd; }
          .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .desc {
            padding: 10px 0 0;
            color: #ffffff; }
          .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn {
            display: inline-block;
            color: #ffffff;
            border-color: #ffffff; }
            .mobile .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn,
            .tablet .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn {
              display: none; }
            .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn,
            .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn {
              margin: 16px 0 0; }
            .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn:hover, .veo_templateT1 .experientialEducation .experientialEducationItem .experientialEducationMessage table td .moreBtn:active {
              color: #cba6dd;
              background-color: #ffffff; }
    .veo_templateT1 .experientialEducation .experientialEducationItem .gridBtn {
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
      .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .gridBtn,
      .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .gridBtn {
        display: none; }
    .veo_templateT1 .experientialEducation .experientialEducationItem .mobileBtn {
      display: block;
      width: 40px;
      height: 40px;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(50px, 0) translate(-50%, -50%);
              transform: translate(50px, 0) translate(-50%, -50%);
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 40px;
      border-style: solid;
      border-color: #ffffff;
      border-width: 2px; }
      .tablet .veo_templateT1 .experientialEducation .experientialEducationItem .mobileBtn,
      .desktop .veo_templateT1 .experientialEducation .experientialEducationItem .mobileBtn,
      .largeDesktop .veo_templateT1 .experientialEducation .experientialEducationItem .mobileBtn {
        display: none !important; }
      .veo_templateT1 .experientialEducation .experientialEducationItem .mobileBtn:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-40%, -50%);
                transform: translate(-40%, -50%);
        border-style: solid;
        border-color: transparent transparent transparent #ffffff;
        border-width: 10px 0 10px 20px;
        transition: -webkit-transform 0.4s ease-out;
        transition: transform 0.4s ease-out;
        transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out; }

.veo_templateT1 .studentCases {
  padding: 20px 0;
  text-align: center;
  background-color: #e6b319;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  /*
		.title
		{
			display: block;
			margin: 10px auto;
			color: $index_studentCasesTitleColor;
		}
		.titleLine
		{
			display: block;
			width: 30px;
			height: 2px;
			margin: 10px auto;
			background-color: $index_studentCaseTitleLineBgColor;
			.desktop &,
			.largeDesktop &
			{
				width: 100px;
				height: 4px;
				margin: 24px auto 36px;
			}
		}
		.desc
		{
			display: block;
			margin: 10px;
			color: $index_studentCaseDescColor;
			.desktop &,
			.largeDesktop &
			{
				margin: 40px 10px;
			}
		}
		*/ }
  .tablet .veo_templateT1 .studentCases,
  .desktop .veo_templateT1 .studentCases,
  .largeDesktop .veo_templateT1 .studentCases {
    padding: 40px 0;
    background-image: url("../images/common/index/studentCasesBg.png");
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: center top; }
  .veo_templateT1 .studentCases.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veo_templateT1 .studentCases .title {
    padding: 0 30px;
    color: #ffffff; }
    .tablet .veo_templateT1 .studentCases .title,
    .desktop .veo_templateT1 .studentCases .title,
    .largeDesktop .veo_templateT1 .studentCases .title {
      padding: 0 50px; }
    .veo_templateT1 .studentCases .title.titleLine:after {
      margin: 20px auto 0;
      background-color: #ffffff; }
  .veo_templateT1 .studentCases .desc {
    padding: 10px 30px 0;
    color: #ffffff; }
    .tablet .veo_templateT1 .studentCases .desc,
    .desktop .veo_templateT1 .studentCases .desc,
    .largeDesktop .veo_templateT1 .studentCases .desc {
      padding: 20px 50px 0; }
  .veo_templateT1 .studentCases .caseWrapper {
    width: 100%;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch; }
    .mobile .veo_templateT1 .studentCases .caseWrapper,
    .tablet .veo_templateT1 .studentCases .caseWrapper {
      white-space: nowrap; }
      .devicePortable .mobile .veo_templateT1 .studentCases .caseWrapper, .devicePortable
      .tablet .veo_templateT1 .studentCases .caseWrapper {
        overflow-x: auto; }
    .veo_templateT1 .studentCases .caseWrapper .caseItem {
      display: inline-block;
      width: 80%;
      max-width: 640px;
      margin: 0 10px 0 0;
      overflow: hidden;
      position: relative;
      vertical-align: top;
      color: #ffffff;
      background-color: #006cb0;
      cursor: pointer;
      border-style: solid;
      border-color: #ffffff;
      border-width: 0; }
      .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem,
      .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem {
        width: 33.33%;
        margin: 0;
        float: left;
        border-width: 0 0 0 1px; }
      .veo_templateT1 .studentCases .caseWrapper .caseItem:first-child {
        margin: 0 10px 0 14px;
        border-width: 0; }
        .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem:first-child,
        .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem:first-child {
          margin: 0; }
      .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem:hover .studentImg,
      .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem:hover .studentImg, .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem:active .studentImg,
      .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem:active .studentImg {
        -webkit-transform: scale(1.2);
                transform: scale(1.2); }
      .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem:hover .caseInfo,
      .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem:hover .caseInfo, .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem:active .caseInfo,
      .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem:active .caseInfo {
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0); }
      .veo_templateT1 .studentCases .caseWrapper .caseItem .studentImg {
        display: block;
        width: 100%;
        padding: 0 0 100%;
        position: relative;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center; }
        .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem .studentImg,
        .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem .studentImg {
          transition: -webkit-transform 1.0s ease-out;
          transition: transform 1.0s ease-out;
          transition: transform 1.0s ease-out, -webkit-transform 1.0s ease-out; }
      .veo_templateT1 .studentCases .caseWrapper .caseItem .caseTitle {
        display: block;
        width: 100%;
        position: absolute;
        bottom: 1vw; }
        .mobile .veo_templateT1 .studentCases .caseWrapper .caseItem .caseTitle,
        .tablet .veo_templateT1 .studentCases .caseWrapper .caseItem .caseTitle {
          display: none; }
      .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo {
        display: block;
        width: 100%;
        height: 200px;
        padding: 0;
        position: relative;
        overflow: hidden;
        white-space: normal;
        background-color: #006cb0;
        transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
        .tablet .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo,
        .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo,
        .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo {
          padding: 0 30px; }
        .tablet .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo {
          height: 180px; }
        .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo,
        .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo {
          width: 100%;
          height: 100%;
          position: absolute;
          left: 0;
          top: 0;
          opacity: 0.8;
          -webkit-transform: translate(0, 100%);
                  transform: translate(0, 100%); }
        .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo table {
          width: 100%;
          height: 100%; }
          .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo table td {
            vertical-align: middle; }
            .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo table td .title {
              display: block;
              position: relative; }
              .desktop .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo table td .title:after,
              .largeDesktop .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo table td .title:after {
                content: "";
                display: block;
                margin: 10px auto;
                width: 100px;
                height: 4px;
                background-color: #ffffff; }
            .veo_templateT1 .studentCases .caseWrapper .caseItem .caseInfo table td .desc {
              display: block; }

.veo_templateT1 .whatsHappening {
  padding: 20px 0;
  text-align: center;
  background-color: #5a9113;
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out, -webkit-transform 1.0s ease-out; }
  .tablet .veo_templateT1 .whatsHappening,
  .desktop .veo_templateT1 .whatsHappening,
  .largeDesktop .veo_templateT1 .whatsHappening {
    padding: 40px 0 0; }
  .desktop .veo_templateT1 .whatsHappening,
  .largeDesktop .veo_templateT1 .whatsHappening {
    background-image: url("../images/common/index/whatsHappeningBg.png");
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: 50% -40px; }
  .veo_templateT1 .whatsHappening.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veo_templateT1 .whatsHappening .title {
    color: #ffffff;
    /*
			display: block;
			position: relative;
			color: $index_whatsHappeningTitleColor;
			*/
    /*
			&:after
			{
				.desktop &,
				.largeDesktop &
				{
					content: "";
					display: block;
					width: 100px;
					height: 4px;
					position: absolute;
					left: 50%;
					bottom: -40px;
					transform: translate(-50px, 0);
					background-color: $index_whatsHappeningTitleLineBgColor;
				}
			}
			*/ }
    .desktop .veo_templateT1 .whatsHappening .title,
    .largeDesktop .veo_templateT1 .whatsHappening .title {
      padding: 40px 0; }
    .veo_templateT1 .whatsHappening .title.titleLine:after {
      margin: 20px auto 0;
      background-color: #ffffff; }
  .tablet .veo_templateT1 .whatsHappening .newsWrapper .newsItem {
    padding: 0 0 21vw; }
  .desktop .veo_templateT1 .whatsHappening .newsWrapper .newsItem,
  .largeDesktop .veo_templateT1 .whatsHappening .newsWrapper .newsItem {
    padding: 0 0 256px; }
  .tablet .veo_templateT1 .whatsHappening .newsWrapper .newsItem:nth-child(3n+1),
  .desktop .veo_templateT1 .whatsHappening .newsWrapper .newsItem:nth-child(3n+1),
  .largeDesktop .veo_templateT1 .whatsHappening .newsWrapper .newsItem:nth-child(3n+1) {
    margin: 1% 1% 1% 0; }
  .tablet .veo_templateT1 .whatsHappening .newsWrapper .newsItem:nth-child(3n),
  .desktop .veo_templateT1 .whatsHappening .newsWrapper .newsItem:nth-child(3n),
  .largeDesktop .veo_templateT1 .whatsHappening .newsWrapper .newsItem:nth-child(3n) {
    margin: 1% 0 1% 1%; }
  .veo_templateT1 .whatsHappening .moreBtn {
    color: #ffffff;
    border-color: #ffffff; }
    .tablet .veo_templateT1 .whatsHappening .moreBtn,
    .desktop .veo_templateT1 .whatsHappening .moreBtn,
    .largeDesktop .veo_templateT1 .whatsHappening .moreBtn {
      margin: 20px 0 40px; }
    .veo_templateT1 .whatsHappening .moreBtn:hover, .veo_templateT1 .whatsHappening .moreBtn:active {
      color: #5a9113;
      background-color: #ffffff; }

.veo_templateT1 .imgSlider {
  -webkit-transform: translate(0, 10vh);
          transform: translate(0, 10vh);
  opacity: 0;
  transition: opacity 1.0s ease-out, -webkit-transform 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out;
  transition: transform 1.0s ease-out, opacity 1.0s ease-out, -webkit-transform 1.0s ease-out; }
  .mobile .veo_templateT1 .imgSlider {
    padding: 0; }
  .tablet .veo_templateT1 .imgSlider,
  .desktop .veo_templateT1 .imgSlider,
  .largeDesktop .veo_templateT1 .imgSlider {
    padding: 0; }
  .veo_templateT1 .imgSlider.fadingInit {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 1; }
  .veo_templateT1 .imgSlider .sliderItem {
    position: relative; }
    .veo_templateT1 .imgSlider .sliderItem.active img {
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1;
      transition: opacity 2.0s ease-out, -webkit-transform 2.0s ease-out;
      transition: transform 2.0s ease-out, opacity 2.0s ease-out;
      transition: transform 2.0s ease-out, opacity 2.0s ease-out, -webkit-transform 2.0s ease-out; }
    .veo_templateT1 .imgSlider .sliderItem img {
      display: block;
      width: 100%;
      -webkit-transform: scale(1.2);
              transform: scale(1.2);
      opacity: 0.5;
      transition: opacity 0.1s ease-out 2.0s, -webkit-transform 0.1s ease-out 2.0s;
      transition: transform 0.1s ease-out 2.0s, opacity 0.1s ease-out 2.0s;
      transition: transform 0.1s ease-out 2.0s, opacity 0.1s ease-out 2.0s, -webkit-transform 0.1s ease-out 2.0s; }

/* TEMPLATE T4 */
.veo_templateT4 .whyVictoriaWrapper {
  padding: 0;
  text-align: left; }
  .veo_templateT4 .whyVictoriaWrapper .anchorList {
    padding: 30px 0;
    background-image: url("../images/common/about/whyVictoriaBg.png");
    background-repeat: no-repeat;
    background-size: 1920px;
    background-position: center bottom; }
    .tablet .veo_templateT4 .whyVictoriaWrapper .anchorList,
    .desktop .veo_templateT4 .whyVictoriaWrapper .anchorList,
    .largeDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList {
      min-height: 600px;
      padding: 100px 0 0; }
    .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem {
      display: block;
      max-width: 820px;
      margin: 0 auto;
      position: relative;
      color: #000000;
      border-style: solid;
      border-color: #f5f5f5;
      border-width: 0 0 2px; }
      .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem:first-child {
        border-width: 2px 0; }
      .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem:hover .anchorIndex, .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem:active .anchorIndex {
        font-weight: bold; }
      .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem:hover .anchorLabel:after, .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem:active .anchorLabel:after {
        -webkit-transform: translate(50%, 0) rotate(-90deg);
                transform: translate(50%, 0) rotate(-90deg); }
      .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorIndex {
        display: block;
        position: absolute;
        left: 30px; }
        .tablet .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorIndex,
        .desktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorIndex,
        .largeDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorIndex {
          top: 24px; }
      .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel {
        display: block;
        padding: 10px 60px;
        position: relative; }
        .tablet .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel,
        .desktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel,
        .largeDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel {
          padding: 24px 60px; }
        .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel:after {
          content: "";
          display: block;
          width: 20px;
          height: 20px;
          position: absolute;
          right: 30px;
          top: 10px;
          -webkit-transform: rotate(-90deg);
                  transform: rotate(-90deg);
          background-image: url("../images/common/selectArrow.png");
          background-repeat: no-repeat;
          background-size: 20px;
          background-position: right center;
          transition: all 0.2s ease-out; }
          .tablet .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel:after,
          .desktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel:after,
          .largeDesktop .veo_templateT4 .whyVictoriaWrapper .anchorList .anchorItem .anchorLabel:after {
            top: 30px; }
  .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem {
    display: block;
    padding: 10px 0;
    background-color: #f5f5f5; }
    .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) {
      background-color: #ffffff; }
      .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsIndex,
      .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsIndex {
        padding: 0 50% 0px 50px; }
      .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsTitle,
      .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsTitle {
        padding: 0 50% 30px 50px; }
      .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsImg,
      .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsImg {
        left: auto;
        right: 50px; }
      .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc,
      .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc {
        padding: 0 50% 0 50px; }
      .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc,
      .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem:nth-child(even) .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc {
        padding: 0 50% 20px 0; }
    .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem,
    .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem {
      min-height: 400px; }
    .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer {
      max-width: 1300px;
      margin: 0 auto;
      position: relative; }
      .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsIndex {
        display: block;
        padding: 0 30px;
        color: #006cb0; }
        .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsIndex,
        .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsIndex {
          padding: 0 50px 0 50%; }
      .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsTitle {
        display: block;
        padding: 0 30px;
        color: #006cb0; }
        .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsTitle,
        .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsTitle {
          padding: 0 50px 30px 50%; }
      .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsImg {
        display: block;
        width: 100%;
        padding: 10px 0; }
        .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsImg,
        .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsImg {
          max-width: 500px;
          padding: 0;
          position: absolute;
          top: 10px;
          left: 50px; }
      .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper {
        display: block;
        overflow: hidden; }
        .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc {
          display: block;
          padding: 0 30px;
          color: #000000;
          transition: margin 0.2s ease-out; }
          .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc,
          .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc {
            padding: 0 50px 0 50%; }
          .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc .moreDetails {
            color: #006cb0;
            transition: all 0.2s ease-out; }
            .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc .moreDetails:hover, .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsShortDescWrapper .detailsShortDesc .moreDetails:active {
              color: #e6b319; }
      .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper {
        display: block;
        padding: 0 30px;
        overflow: hidden; }
        .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper,
        .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper {
          padding: 0 50px; }
        .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer {
          display: block;
          transition: margin 0.2s ease-out; }
          .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc {
            display: block; }
            .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc,
            .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc {
              min-height: 260px;
              padding: 0 0 20px 50%; }
            .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc .lessDetails {
              color: #006cb0;
              transition: all 0.2s ease-out; }
              .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc .lessDetails:hover, .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsDesc .lessDetails:active {
                color: #e6b319; }
          .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper {
            display: block; }
            .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem {
              display: block;
              padding: 10px 0;
              background-color: rgba(245, 245, 245, 0);
              transition: all 0.2s ease-out; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem,
              .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem,
              .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem {
                width: 33.33%;
                padding: 10px 25px;
                float: left; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n),
              .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n),
              .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n) {
                padding: 10px 0 10px 25px; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1),
              .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1),
              .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) {
                padding: 10px 25px 10px 0; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) img {
                padding: 0 0 0 25px; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) .detailsIconTitle,
              .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) .detailsIconTitle,
              .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) .detailsIconTitle {
                margin: 10px 0 10px 25px; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) .detailsIconDesc,
              .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) .detailsIconDesc,
              .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:nth-child(4n+1) .detailsIconDesc {
                margin: 10px 0 10px 25px; }
              .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:hover, .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:active {
                background-color: #f5f5f5; }
                .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:hover .detailsIconTitle, .deviceDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem:active .detailsIconTitle {
                  color: #e6b319; }
              .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem img {
                display: block;
                max-width: 260px;
                margin: 0 auto; }
                .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem img {
                  max-width: 100%; }
              .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconTitle {
                color: #006cb0;
                margin: 10px 0;
                display: block;
                transition: all 0.2s ease-out; }
              .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItem .detailsIconDesc {
                color: #000000;
                margin: 10px 0;
                display: block; }
            .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItemClear {
              display: none; }
              .tablet .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItemClear,
              .desktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItemClear,
              .largeDesktop .veo_templateT4 .whyVictoriaWrapper .detailsList .detailsItem .detailsItemContainer .detailsDescWrapper .detailsDescContainer .detailsIconWrapper .detailsIconItemClear {
                display: block;
                clear: both; }

/* TEMPLATE T5 */
.veo_templateT5 .historyVideo {
  width: 80%;
  height: 45vw;
  margin: 0 auto;
  padding: 0;
  position: relative;
  overflow: hidden; }
  .tablet .veo_templateT5 .historyVideo {
    width: 65%;
    height: 36.5vw;
    margin: 50px auto 0; }
  .desktop .veo_templateT5 .historyVideo,
  .largeDesktop .veo_templateT5 .historyVideo {
    width: 65%;
    height: 36.5vw;
    margin: 50px auto 0; }
  .veo_templateT5 .historyVideo .youtube,
  .veo_templateT5 .historyVideo .youku {
    width: 100%;
    height: 45vw;
    position: absolute;
    left: 0;
    top: 0; }
    .tablet .veo_templateT5 .historyVideo .youtube,
    .desktop .veo_templateT5 .historyVideo .youtube,
    .largeDesktop .veo_templateT5 .historyVideo .youtube, .tablet
    .veo_templateT5 .historyVideo .youku,
    .desktop
    .veo_templateT5 .historyVideo .youku,
    .largeDesktop
    .veo_templateT5 .historyVideo .youku {
      height: 36.5vw; }

.veo_templateT5 .history {
  padding: 30px 0; }
  .tablet .veo_templateT5 .history,
  .desktop .veo_templateT5 .history,
  .largeDesktop .veo_templateT5 .history {
    padding: 50px 0; }
  .veo_templateT5 .history .title {
    padding: 0 30px; }
    .tablet .veo_templateT5 .history .title,
    .desktop .veo_templateT5 .history .title,
    .largeDesktop .veo_templateT5 .history .title {
      padding: 0 50px; }
  .veo_templateT5 .history .desc {
    padding: 0 30px; }
    .tablet .veo_templateT5 .history .desc,
    .desktop .veo_templateT5 .history .desc,
    .largeDesktop .veo_templateT5 .history .desc {
      padding: 0 50px; }
  .veo_templateT5 .history .historyTimeline {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 30px 0; }
    .tablet .veo_templateT5 .history .historyTimeline,
    .desktop .veo_templateT5 .history .historyTimeline,
    .largeDesktop .veo_templateT5 .history .historyTimeline {
      padding: 50px 50px 0; }
    .veo_templateT5 .history .historyTimeline .historyTimestamp {
      display: block;
      min-height: 110px;
      padding: 0 30px 20px;
      position: relative;
      text-align: left; }
      .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp {
        padding: 0 30px 20px 50%; }
      .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp,
      .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp {
        min-height: 200px;
        padding: 0 30px 20px 50%; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp:before {
        content: "";
        display: block;
        width: 2px;
        height: 100%;
        position: absolute;
        left: 42px;
        top: 0;
        background-color: #f5f5f5; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp:before,
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp:before,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp:before {
          left: 50%;
          -webkit-transform: translate(-1px, 0);
                  transform: translate(-1px, 0); }
      .veo_templateT5 .history .historyTimeline .historyTimestamp:after {
        content: "";
        display: block;
        width: 26px;
        height: 26px;
        position: absolute;
        left: 30px;
        top: 0;
        background-color: #ffffff;
        border-radius: 26px;
        border-style: solid;
        border-width: 13px;
        transition: border-width 0.2s ease-out; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp:after,
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp:after,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp:after {
          width: 40px;
          height: 40px;
          left: 50%;
          -webkit-transform: translate(-20px, 0);
                  transform: translate(-20px, 0);
          border-radius: 40px;
          border-width: 20px; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp:last-child:before {
        display: none; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor1 {
        color: #75b11f; }
        .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor1:after {
          border-color: #75b11f; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor2 {
        color: #f3776a; }
        .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor2:after {
          border-color: #f3776a; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor3 {
        color: #cba6dd; }
        .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor3:after {
          border-color: #cba6dd; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor4 {
        color: #f2bf5d; }
        .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor4:after {
          border-color: #f2bf5d; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor5 {
        color: #3da6ce; }
        .veo_templateT5 .history .historyTimeline .historyTimestamp.historyColor5:after {
          border-color: #3da6ce; }
      .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even),
      .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even),
      .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) {
        text-align: right; }
      .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) img {
        -webkit-transform: translate(-140px, 0);
                transform: translate(-140px, 0); }
      .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) img,
      .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) img {
        -webkit-transform: translate(-270px, 0);
                transform: translate(-270px, 0); }
      .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) .year {
        padding: 0 150px 8px 0;
        -webkit-transform: translate(-100%, 0);
                transform: translate(-100%, 0); }
      .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) .year,
      .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) .year {
        padding: 0 300px 8px 0;
        -webkit-transform: translate(-100%, 0);
                transform: translate(-100%, 0); }
      .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) .message {
        padding: 0 150px 0 0;
        -webkit-transform: translate(-100%, 0);
                transform: translate(-100%, 0); }
      .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) .message,
      .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp:nth-child(even) .message {
        padding: 0 300px 0 0;
        -webkit-transform: translate(-100%, 0);
                transform: translate(-100%, 0); }
      .veo_templateT5 .history .historyTimeline .historyTimestamp.active:after {
        border-width: 4px; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp.active:after,
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp.active:after,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp.active:after {
          border-width: 6px; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp img {
        display: block;
        width: 100px;
        height: 100px;
        position: absolute;
        left: 70px;
        top: 0; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp img,
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp img,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp img {
          left: 50%; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp img {
          -webkit-transform: translate(40px, 0);
                  transform: translate(40px, 0); }
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp img,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp img {
          width: 200px;
          height: 200px;
          -webkit-transform: translate(70px, 0);
                  transform: translate(70px, 0); }
      .veo_templateT5 .history .historyTimeline .historyTimestamp .year {
        display: block;
        padding: 0 0 4px 150px;
        line-height: 0.8em; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp .year {
          line-height: 0.8em;
          padding: 0 0 8px 150px; }
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp .year,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp .year {
          line-height: 0.8em;
          padding: 0 0 8px 300px; }
      .veo_templateT5 .history .historyTimeline .historyTimestamp .message {
        display: block;
        padding: 0 0 0 150px;
        color: #000000; }
        .tablet .veo_templateT5 .history .historyTimeline .historyTimestamp .message {
          padding: 0 0 0 150px; }
        .desktop .veo_templateT5 .history .historyTimeline .historyTimestamp .message,
        .largeDesktop .veo_templateT5 .history .historyTimeline .historyTimestamp .message {
          padding: 0 0 0 300px; }

/* TEMPLATE T6 */
.veo_templateT6 .leadin {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  color: #3da6ce; }
  .veo_templateT6 .leadin:before {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    margin: 24px auto 36px;
    background-color: #3da6ce; }
    .tablet .veo_templateT6 .leadin:before,
    .desktop .veo_templateT6 .leadin:before,
    .largeDesktop .veo_templateT6 .leadin:before {
      width: 100px;
      height: 4px;
      margin: 48px auto 64px; }

.veo_templateT6 .stat {
  margin: 30px auto 0;
  padding: 0; }
  .desktop .veo_templateT6 .stat,
  .largeDesktop .veo_templateT6 .stat {
    margin: 50px auto 0; }
  .veo_templateT6 .stat .statSlider {
    max-width: 1200px;
    margin: 0 auto 50px; }
    .veo_templateT6 .stat .statSlider .slick-track {
      margin: 0 auto; }
    .veo_templateT6 .stat .statSlider .slick-arrow:before {
      background-image: url("../images/common/featureArrow.png"); }
    .veo_templateT6 .stat .statSlider .statItem {
      position: relative;
      padding: 0 30px; }
      .tablet .veo_templateT6 .stat .statSlider .statItem,
      .desktop .veo_templateT6 .stat .statSlider .statItem,
      .largeDesktop .veo_templateT6 .stat .statSlider .statItem {
        padding: 0 30px; }
      .veo_templateT6 .stat .statSlider .statItem .contentWrapper {
        position: relative;
        width: 100%; }
        .veo_templateT6 .stat .statSlider .statItem .contentWrapper img {
          display: block;
          width: 100%; }

.veo_templateT6 .placementList {
  margin: 30px 0;
  padding: 0;
  border-style: solid;
  border-color: #f5f5f5;
  border-width: 0 0 2px 0; }
  .desktop .veo_templateT6 .placementList,
  .largeDesktop .veo_templateT6 .placementList {
    margin: 50px 0; }
  .veo_templateT6 .placementList .listRowWrapper {
    position: relative;
    color: #000000; }
    .veo_templateT6 .placementList .listRowWrapper.listTitleRow {
      background-color: #006cb0; }
      .veo_templateT6 .placementList .listRowWrapper.listTitleRow:before {
        content: "";
        display: block;
        width: 50%;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background-color: #5a9113; }
      .veo_templateT6 .placementList .listRowWrapper.listTitleRow .listRow .listCol {
        color: #ffffff; }
        .veo_templateT6 .placementList .listRowWrapper.listTitleRow .listRow .listCol.school {
          background-color: #006cb0; }
        .veo_templateT6 .placementList .listRowWrapper.listTitleRow .listRow .listCol.type {
          background-color: #e6b319; }
        .veo_templateT6 .placementList .listRowWrapper.listTitleRow .listRow .listCol.studentNumber {
          background-color: #5a9113; }
    .veo_templateT6 .placementList .listRowWrapper:nth-child(even) {
      background-color: #f5f5f5; }
    .veo_templateT6 .placementList .listRowWrapper .listRow {
      display: table;
      width: 100%;
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 10vw;
      position: relative; }
      .veo_templateT6 .placementList .listRowWrapper .listRow:after {
        content: "";
        display: block;
        clear: both; }
      .veo_templateT6 .placementList .listRowWrapper .listRow a.listCol {
        color: #006cb0;
        transition: all 0.2s ease-out; }
        .deviceDesktop .veo_templateT6 .placementList .listRowWrapper .listRow a.listCol:hover, .deviceDesktop .veo_templateT6 .placementList .listRowWrapper .listRow a.listCol:active {
          color: #e6b319; }
      .veo_templateT6 .placementList .listRowWrapper .listRow .listCol {
        display: table-cell;
        vertical-align: middle;
        color: #000000; }
        .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.school {
          padding: 10px 4px 10px 0;
          text-align: left;
          width: 50%; }
          .tablet .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.school,
          .desktop .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.school,
          .largeDesktop .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.school {
            padding: 30px 4px 30px 0; }
        .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.type {
          padding: 10px 4px;
          width: 20%; }
          .tablet .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.type,
          .desktop .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.type,
          .largeDesktop .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.type {
            padding: 30px 4px; }
        .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.studentNumber {
          padding: 10px 0 10px 4px;
          width: 30%; }
          .tablet .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.studentNumber,
          .desktop .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.studentNumber,
          .largeDesktop .veo_templateT6 .placementList .listRowWrapper .listRow .listCol.studentNumber {
            padding: 30px 0 30px 4px; }
  .veo_templateT6 .placementList .moreBtn {
    display: block;
    padding: 10px 0;
    color: #006cb0;
    text-align: center;
    border-style: solid;
    border-color: #f5f5f5;
    border-width: 2px 0 0;
    transition: all 0.2s ease-out; }
    .tablet .veo_templateT6 .placementList .moreBtn,
    .desktop .veo_templateT6 .placementList .moreBtn,
    .largeDesktop .veo_templateT6 .placementList .moreBtn {
      padding: 30px 0; }
    .deviceDesktop .veo_templateT6 .placementList .moreBtn:hover, .deviceDesktop .veo_templateT6 .placementList .moreBtn:active {
      color: #e6b319; }
    .veo_templateT6 .placementList .moreBtn:hover span:after, .veo_templateT6 .placementList .moreBtn:active span:after {
      -webkit-transform: scale(1.2) rotate(90deg);
              transform: scale(1.2) rotate(90deg); }
    .veo_templateT6 .placementList .moreBtn span {
      display: inline-block;
      position: relative; }
      .tablet .veo_templateT6 .placementList .moreBtn span,
      .desktop .veo_templateT6 .placementList .moreBtn span,
      .largeDesktop .veo_templateT6 .placementList .moreBtn span {
        height: 40px;
        line-height: 40px; }
      .veo_templateT6 .placementList .moreBtn span:after {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: -20px;
        top: 0;
        background-image: url("../images/common/moreArrow.png");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 25px;
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        transition: all 0.2s ease-out; }
        .tablet .veo_templateT6 .placementList .moreBtn span:after,
        .desktop .veo_templateT6 .placementList .moreBtn span:after,
        .largeDesktop .veo_templateT6 .placementList .moreBtn span:after {
          width: 40px;
          height: 40px;
          right: -40px;
          background-size: 50px; }

.mobile .veo_templateT6 .download {
  padding: 10px 30px; }

.veo_templateT6 .download .title.titleLine:after {
  background-color: #e6b319; }

.veo_templateT6 .download .desc {
  margin: 30px auto 0; }
  .tablet .veo_templateT6 .download .desc,
  .desktop .veo_templateT6 .download .desc,
  .largeDesktop .veo_templateT6 .download .desc {
    margin: 50px 10vw 0; }

.veo_templateT6 .download .downloadBtn {
  display: inline-block;
  width: 120px;
  padding: 20px 4px;
  color: #f3776a; }
  .tablet .veo_templateT6 .download .downloadBtn,
  .desktop .veo_templateT6 .download .downloadBtn,
  .largeDesktop .veo_templateT6 .download .downloadBtn {
    width: 220px;
    padding: 40px 20px; }
  .veo_templateT6 .download .downloadBtn:before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
    background-image: url("../images/common/downloadIconLarge.png");
    background-repeat: no-repeat;
    background-size: 50px;
    background-position: center center; }
    .tablet .veo_templateT6 .download .downloadBtn:before,
    .desktop .veo_templateT6 .download .downloadBtn:before,
    .largeDesktop .veo_templateT6 .download .downloadBtn:before {
      width: 75px;
      height: 75px;
      background-size: 75px; }

/* CAMPUS OVERVIEW */
/*
$campusOverview_features_featureIcon_bgImage1:	url("../images/common/campus/featureIcon1.png");
$campusOverview_features_featureIcon_bgImage2:	url("../images/common/campus/featureIcon2.png");
$campusOverview_features_featureIcon_bgImage3:	url("../images/common/campus/featureIcon3.png");
$campusOverview_features_featureIcon_bgImage4:	url("../images/common/campus/featureIcon4.png");
$campusOverview_features_featureIcon_bgImage5:	url("../images/common/campus/featureIcon5.png");
$campusOverview_features_featureIcon_bgImage6:	url("../images/common/campus/featureIcon6.png");
$campusOverview_features_featureIcon_bgImage7:	url("../images/common/campus/featureIcon7.png");
$campusOverview_features_featureIcon_bgImage8:	url("../images/common/campus/featureIcon8.png");
$campusOverview_features_featureIcon_bgImage9:	url("../images/common/campus/featureIcon9.png");
$campusOverview_features_featureIcon_bgImage10:	url("../images/common/campus/featureIcon10.png");
$campusOverview_features_featureIcon_bgImage11:	url("../images/common/campus/featureIcon11.png");
$campusOverview_features_featureIcon_bgImage12:	url("../images/common/campus/featureIcon12.png");
$campusOverview_features_featureIcon_bgImage13:	url("../images/common/campus/featureIcon13.png");
$campusOverview_features_featureIcon_bgImage14:	url("../images/common/campus/featureIcon14.png");
$campusOverview_features_featureIcon_bgImage15:	url("../images/common/campus/featureIcon15.png");
$campusOverview_features_featureIcon_bgImage16:	url("../images/common/campus/featureIcon16.png");
$campusOverview_features_featureIcon_bgImage17:	url("../images/common/campus/featureIcon17.png");
$campusOverview_features_featureIcon_bgImage18:	url("../images/common/campus/featureIcon18.png");
$campusOverview_features_featureIcon_bgImage19:	url("../images/common/campus/featureIcon19.png");
$campusOverview_features_featureIcon_bgImage20:	url("../images/common/campus/featureIcon20.png");
*/
.page_campus_overview .pageScrollHolder {
  background-color: #f5f5f5; }

.page_campus_overview .breadcrumbWrapper {
  background-color: #f5f5f5; }

.page_campus_overview .pageTop {
  background-color: #f5f5f5; }
  .page_campus_overview .pageTop .desc {
    padding: 0 0 30px; }
    .tablet .page_campus_overview .pageTop .desc,
    .desktop .page_campus_overview .pageTop .desc,
    .largeDesktop .page_campus_overview .pageTop .desc {
      padding: 0 0 50px; }

.page_campus_overview .features {
  padding: 30px 0 0; }
  .tablet .page_campus_overview .features,
  .desktop .page_campus_overview .features,
  .largeDesktop .page_campus_overview .features {
    padding: 50px 0 320px;
    background-repeat: no-repeat;
    background-size: 700px;
    background-position: center bottom; }
  .tablet .campus1 .page_campus_overview .features,
  .desktop .campus1 .page_campus_overview .features,
  .largeDesktop .campus1 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg1.jpg"); }
  .tablet .campus2 .page_campus_overview .features,
  .desktop .campus2 .page_campus_overview .features,
  .largeDesktop .campus2 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg2.jpg"); }
  .tablet .campus3 .page_campus_overview .features,
  .desktop .campus3 .page_campus_overview .features,
  .largeDesktop .campus3 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg3.jpg"); }
  .tablet .campus4 .page_campus_overview .features,
  .desktop .campus4 .page_campus_overview .features,
  .largeDesktop .campus4 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg4.jpg"); }
  .tablet .campus5 .page_campus_overview .features,
  .desktop .campus5 .page_campus_overview .features,
  .largeDesktop .campus5 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg5.jpg"); }
  .tablet .campus6 .page_campus_overview .features,
  .desktop .campus6 .page_campus_overview .features,
  .largeDesktop .campus6 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg6.jpg"); }
  .tablet .campus7 .page_campus_overview .features,
  .desktop .campus7 .page_campus_overview .features,
  .largeDesktop .campus7 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg7.jpg"); }
  .tablet .campus8 .page_campus_overview .features,
  .desktop .campus8 .page_campus_overview .features,
  .largeDesktop .campus8 .page_campus_overview .features {
    background-image: url("../images/common/campus/featureBg8.jpg"); }
  .page_campus_overview .features .title {
    padding: 0 30px; }
    .tablet .page_campus_overview .features .title,
    .desktop .page_campus_overview .features .title,
    .largeDesktop .page_campus_overview .features .title {
      padding: 0 50px; }
  .tablet .page_campus_overview .features .featureSlider,
  .desktop .page_campus_overview .features .featureSlider,
  .largeDesktop .page_campus_overview .features .featureSlider {
    max-width: 1500px; }
  .tablet .page_campus_overview .features .featureSlider,
  .desktop .page_campus_overview .features .featureSlider {
    margin: 20px 50px 0; }
  .largeDesktop .page_campus_overview .features .featureSlider {
    margin: 20px auto 0; }
  .page_campus_overview .features .featureSlider .slick-arrow:before {
    background-image: url("../images/common/featureArrow.png"); }
  .page_campus_overview .features .featureSlider .slick-track {
    margin: 0 auto; }
  .page_campus_overview .features .featureSlider .featureItem {
    position: relative;
    padding: 0 30px; }
    .tablet .page_campus_overview .features .featureSlider .featureItem,
    .desktop .page_campus_overview .features .featureSlider .featureItem,
    .largeDesktop .page_campus_overview .features .featureSlider .featureItem {
      padding: 0 10px; }
    .deviceDesktop .page_campus_overview .features .featureSlider .featureItem:hover .featureIcon, .deviceDesktop .page_campus_overview .features .featureSlider .featureItem:active .featureIcon, .deviceDesktop .page_campus_overview .features .featureSlider .featureItem.active .featureIcon {
      -webkit-transform: scale(1.2);
              transform: scale(1.2); }
    .page_campus_overview .features .featureSlider .featureItem.active .contentWrapper .featureToggleBtn:before, .page_campus_overview .features .featureSlider .featureItem.active .contentWrapper .featureToggleBtn:after {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem1 .contentWrapper .featureIcon {
      background-color: #5a9113; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem1 .contentWrapper .featureTitle {
      color: #5a9113; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem2 .contentWrapper .featureIcon {
      background-color: #006cb0; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem2 .contentWrapper .featureTitle {
      color: #006cb0; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem3 .contentWrapper .featureIcon {
      background-color: #f3776a; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem3 .contentWrapper .featureTitle {
      color: #f3776a; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem4 .contentWrapper .featureIcon {
      background-color: #f2bf5d; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem4 .contentWrapper .featureTitle {
      color: #f2bf5d; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem5 .contentWrapper .featureIcon {
      background-color: #cba6dd; }
    .page_campus_overview .features .featureSlider .featureItem.featureSliderItem5 .contentWrapper .featureTitle {
      color: #cba6dd; }
    .page_campus_overview .features .featureSlider .featureItem .contentWrapper {
      position: relative;
      width: 100%; }
      .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon {
        display: block;
        width: 110px;
        height: 110px;
        margin: 20px auto;
        position: relative;
        border-radius: 110px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon:after {
          content: "";
          display: block;
          width: 100px;
          height: 100px;
          position: absolute;
          left: 5px;
          top: 5px;
          background-image: url("../images/common/campus/sptCampusFeatureGeneralIcons.png");
          background-repeat: no-repeat;
          background-size: 500px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon1:after {
          background-position: -100px 0; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon2:after {
          background-position: -200px 0; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon3:after {
          background-position: -300px 0; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon4:after {
          background-position: -400px 0; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon5:after {
          background-position: -100px -100px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon6:after {
          background-position: -200px -100px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon7:after {
          background-position: -300px -100px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon8:after {
          background-position: -400px -100px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon9:after {
          background-position: -100px -200px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon10:after {
          background-position: -200px -200px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon11:after {
          background-position: -300px -200px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon12:after {
          background-position: -400px -200px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon13:after {
          background-position: -100px -300px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon14:after {
          background-position: -200px -300px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon15:after {
          background-position: -300px -300px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon16:after {
          background-position: -400px -300px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon17:after {
          background-position: -100px -400px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon18:after {
          background-position: -200px -400px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon19:after {
          background-position: -300px -400px; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon.featureIcon20:after {
          background-position: -400px -400px; }
      .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureTitle {
        display: block;
        margin: 20px auto;
        overflow: hidden; }
        .tablet .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureTitle {
          height: 40px;
          margin: 10px auto;
          line-height: 20px; }
        .desktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureTitle {
          height: 48px;
          line-height: 24px; }
        .largeDesktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureTitle {
          height: 80px;
          line-height: 40px; }
      .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureDesc {
        display: block;
        margin: 20px auto;
        color: #000000; }
        .tablet .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureDesc {
          margin: 10px auto; }
      .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureIcon {
        transition: -webkit-transform 0.2s ease-out;
        transition: transform 0.2s ease-out;
        transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
      .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn {
        display: block;
        width: 30px;
        height: 30px;
        margin: 20px auto;
        position: relative;
        border-radius: 30px;
        border-style: solid;
        border-width: 2px;
        border-color: #e6b319; }
        .tablet .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn,
        .desktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn,
        .largeDesktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn {
          width: 100%;
          height: 100%;
          margin: 0 auto;
          position: absolute;
          left: 0;
          top: 0;
          border-radius: 0;
          border-width: 0; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:before {
          content: "";
          display: block;
          width: 16px;
          height: 2px;
          position: absolute;
          left: 5px;
          top: 12px;
          background-color: #e6b319;
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg);
          transition: -webkit-transform 0.2s ease-out;
          transition: transform 0.2s ease-out;
          transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
          .tablet .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:before,
          .desktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:before,
          .largeDesktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:before {
            display: none; }
        .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:after {
          content: "";
          display: block;
          width: 16px;
          height: 2px;
          position: absolute;
          left: 5px;
          top: 12px;
          background-color: #e6b319;
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg);
          transition: -webkit-transform 0.2s ease-out;
          transition: transform 0.2s ease-out;
          transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
          .tablet .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:after,
          .desktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:after,
          .largeDesktop .page_campus_overview .features .featureSlider .featureItem .contentWrapper .featureToggleBtn:after {
            display: none; }
    .page_campus_overview .features .featureSlider .featureItem .message {
      display: none; }
  .page_campus_overview .features .featureMessage {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background-color: #006cb0; }
    .page_campus_overview .features .featureMessage .messageWrapper {
      display: block;
      max-width: 1500px;
      margin: 0 auto;
      position: relative;
      transition: margin 0.2s ease-out; }
      .tablet .page_campus_overview .features .featureMessage .messageWrapper,
      .desktop .page_campus_overview .features .featureMessage .messageWrapper {
        margin: 0 50px; }
      .page_campus_overview .features .featureMessage .messageWrapper .message {
        display: block;
        margin: 0 auto;
        padding: 40px 30px; }
        .tablet .page_campus_overview .features .featureMessage .messageWrapper .message {
          padding: 30px; }
        .desktop .page_campus_overview .features .featureMessage .messageWrapper .message,
        .largeDesktop .page_campus_overview .features .featureMessage .messageWrapper .message {
          max-width: 1300px;
          padding: 50px; }
      .page_campus_overview .features .featureMessage .messageWrapper .indicator {
        display: block;
        width: 100%;
        height: 10px;
        position: absolute;
        left: 0;
        top: -10px;
        background-color: #e6b319;
        transition: left 0.2s ease-out, top 0.2s ease-out; }
        .tablet .page_campus_overview .features .featureMessage .messageWrapper .indicator,
        .desktop .page_campus_overview .features .featureMessage .messageWrapper .indicator,
        .largeDesktop .page_campus_overview .features .featureMessage .messageWrapper .indicator {
          width: 20%; }
        .page_campus_overview .features .featureMessage .messageWrapper .indicator.featureSliderItem1 {
          top: 0; }
        .page_campus_overview .features .featureMessage .messageWrapper .indicator.featureSliderItem2 {
          top: 0; }
        .page_campus_overview .features .featureMessage .messageWrapper .indicator.featureSliderItem3 {
          top: 0; }
        .page_campus_overview .features .featureMessage .messageWrapper .indicator.featureSliderItem4 {
          top: 0; }
        .page_campus_overview .features .featureMessage .messageWrapper .indicator.featureSliderItem5 {
          top: 0; }
      .page_campus_overview .features .featureMessage .messageWrapper .closeBtn {
        display: block;
        width: 60px;
        height: 60px;
        position: absolute;
        right: -40px;
        top: 10px;
        background-image: url("../images/common/menuCloseBtn.png");
        background-repeat: no-repeat;
        background-size: 60px;
        background-position: center center; }
        .mobile .page_campus_overview .features .featureMessage .messageWrapper .closeBtn {
          display: none; }
        .tablet .page_campus_overview .features .featureMessage .messageWrapper .closeBtn {
          width: 30px;
          height: 30px;
          background-size: 30px; }

.page_campus_overview .faculty {
  background-color: #f5f5f5; }
  .mobile .page_campus_overview .faculty {
    padding: 0; }
  .page_campus_overview .faculty .title {
    padding: 30px 30px 0; }
    .tablet .page_campus_overview .faculty .title,
    .desktop .page_campus_overview .faculty .title,
    .largeDesktop .page_campus_overview .faculty .title {
      padding: 0 30px; }
    .page_campus_overview .faculty .title:after {
      background-color: #e6b319; }
  .page_campus_overview .faculty .desc {
    padding: 30px 30px 0; }
    .tablet .page_campus_overview .faculty .desc,
    .desktop .page_campus_overview .faculty .desc,
    .largeDesktop .page_campus_overview .faculty .desc {
      padding: 50px 50px 0; }
  .page_campus_overview .faculty .staffWrapper {
    width: 100%;
    margin: 40px 0 10px;
    position: relative;
    overflow: hidden;
    -webkit-overflow-scrolling: touch; }
    .mobile .page_campus_overview .faculty .staffWrapper,
    .tablet .page_campus_overview .faculty .staffWrapper {
      white-space: nowrap; }
      .devicePortable .mobile .page_campus_overview .faculty .staffWrapper, .devicePortable
      .tablet .page_campus_overview .faculty .staffWrapper {
        overflow-x: auto; }
    .page_campus_overview .faculty .staffWrapper .staffItem {
      display: inline-block;
      width: 70%;
      max-width: 320px;
      margin: 0 10px 0 0;
      overflow: hidden;
      position: relative;
      vertical-align: top;
      white-space: normal; }
      .tablet .page_campus_overview .faculty .staffWrapper .staffItem,
      .desktop .page_campus_overview .faculty .staffWrapper .staffItem,
      .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem {
        width: 80%;
        margin: 0 2% 0 0; }
      .deviceDesktop .page_campus_overview .faculty .staffWrapper .staffItem:hover .staffImgWrapper .staffImg, .deviceDesktop .page_campus_overview .faculty .staffWrapper .staffItem:active .staffImgWrapper .staffImg {
        -webkit-transform: scale(1.2);
                transform: scale(1.2); }
      .page_campus_overview .faculty .staffWrapper .staffItem:first-child {
        margin: 0 10px; }
        .tablet .page_campus_overview .faculty .staffWrapper .staffItem:first-child,
        .desktop .page_campus_overview .faculty .staffWrapper .staffItem:first-child,
        .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem:first-child {
          margin: 0 2% 0 2%; }
      .desktop .page_campus_overview .faculty .staffWrapper .staffItem,
      .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem {
        width: 20%; }
      .page_campus_overview .faculty .staffWrapper .staffItem .staffImgWrapper {
        display: block;
        width: 80%;
        max-width: 275px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: 100%;
        -webkit-perspective: 1000;
                perspective: 1000; }
        .tablet .page_campus_overview .faculty .staffWrapper .staffItem .staffImgWrapper,
        .desktop .page_campus_overview .faculty .staffWrapper .staffItem .staffImgWrapper,
        .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem .staffImgWrapper {
          width: 80%; }
        .page_campus_overview .faculty .staffWrapper .staffItem .staffImgWrapper .staffImg {
          display: block;
          width: 100%;
          max-width: 275px;
          position: relative;
          transition: -webkit-transform 0.6s ease-out;
          transition: transform 0.6s ease-out;
          transition: transform 0.6s ease-out, -webkit-transform 0.6s ease-out; }
      .page_campus_overview .faculty .staffWrapper .staffItem .staffName {
        /*
					display: block;
					margin: 20px 0 10px;
					color: $campusOverview_faculty_staffName_color;
					*/
        display: block;
        max-width: 320px;
        height: 96px;
        margin: 20px auto 10px;
        padding: 0 30px;
        overflow: hidden;
        color: #006cb0;
        line-height: 32px; }
        .tablet .page_campus_overview .faculty .staffWrapper .staffItem .staffName {
          padding: 0;
          height: 54px;
          line-height: 18px; }
      .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
        /*
					display: block;
					margin: 10px 0;
					color: $campusOverview_faculty_staffTitle_color;
					*/
        display: block;
        max-width: 320px;
        height: 48px;
        margin: 10px auto;
        padding: 0 30px;
        overflow: hidden;
        color: #000000;
        line-height: 24px; }
        .tablet .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
          padding: 0;
          height: 40px;
          line-height: 20px; }
        .desktop .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle,
        .largeDesktop .page_campus_overview .faculty .staffWrapper .staffItem .staffTitle {
          line-height: 24px; }
  .page_campus_overview .faculty .moreBtn {
    display: inline-block;
    margin: 0 10px;
    position: relative;
    line-height: 40px;
    color: #006cb0; }
    .desktop .page_campus_overview .faculty .moreBtn {
      margin: 0 20px 20px;
      line-height: 40px; }
    .tablet .page_campus_overview .faculty .moreBtn,
    .largeDesktop .page_campus_overview .faculty .moreBtn {
      margin: 0 20px;
      line-height: 80px; }
    .page_campus_overview .faculty .moreBtn:after {
      content: "";
      display: block;
      width: 25px;
      height: 40px;
      position: absolute;
      right: -25px;
      top: 0;
      background-image: url("../images/common/moreArrow.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center center; }
      .tablet .page_campus_overview .faculty .moreBtn:after,
      .largeDesktop .page_campus_overview .faculty .moreBtn:after {
        width: 50px;
        height: 80px;
        right: -50px; }

.page_campus_overview .calendar,
.page_campus_overview .timetable {
  display: block;
  width: 100%;
  height: 45vw;
  padding: 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center; }
  .tablet .page_campus_overview .calendar,
  .desktop .page_campus_overview .calendar,
  .largeDesktop .page_campus_overview .calendar, .tablet
  .page_campus_overview .timetable,
  .desktop
  .page_campus_overview .timetable,
  .largeDesktop
  .page_campus_overview .timetable {
    width: 50%;
    height: 22.5vw;
    float: left; }
  .page_campus_overview .calendar .messageWrapper,
  .page_campus_overview .timetable .messageWrapper {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 30px;
    position: absolute;
    left: 0;
    top: 0; }
    .tablet .page_campus_overview .calendar .messageWrapper,
    .desktop .page_campus_overview .calendar .messageWrapper,
    .largeDesktop .page_campus_overview .calendar .messageWrapper, .tablet
    .page_campus_overview .timetable .messageWrapper,
    .desktop
    .page_campus_overview .timetable .messageWrapper,
    .largeDesktop
    .page_campus_overview .timetable .messageWrapper {
      padding: 0 5vw; }
    .page_campus_overview .calendar .messageWrapper table,
    .page_campus_overview .timetable .messageWrapper table {
      height: 100%; }
      .page_campus_overview .calendar .messageWrapper table td,
      .page_campus_overview .timetable .messageWrapper table td {
        text-align: left;
        vertical-align: middle; }
        .page_campus_overview .calendar .messageWrapper table td .year,
        .page_campus_overview .timetable .messageWrapper table td .year {
          display: block; }
        .page_campus_overview .calendar .messageWrapper table td .label,
        .page_campus_overview .timetable .messageWrapper table td .label {
          display: block; }
        .page_campus_overview .calendar .messageWrapper table td .more,
        .page_campus_overview .timetable .messageWrapper table td .more {
          display: inline-block;
          margin: 0 10px 0 0;
          position: relative;
          line-height: 24px; }
          .desktop .page_campus_overview .calendar .messageWrapper table td .more, .desktop
          .page_campus_overview .timetable .messageWrapper table td .more {
            line-height: 24px; }
          .tablet .page_campus_overview .calendar .messageWrapper table td .more,
          .largeDesktop .page_campus_overview .calendar .messageWrapper table td .more, .tablet
          .page_campus_overview .timetable .messageWrapper table td .more,
          .largeDesktop
          .page_campus_overview .timetable .messageWrapper table td .more {
            line-height: 36px; }
          .page_campus_overview .calendar .messageWrapper table td .more:after,
          .page_campus_overview .timetable .messageWrapper table td .more:after {
            content: "";
            display: block;
            width: 25px;
            height: 24px;
            position: absolute;
            right: -25px;
            top: 0;
            background-image: url("../images/common/moreWhiteArrow.png");
            background-repeat: no-repeat;
            background-size: 100%;
            background-position: center center; }
            .tablet .page_campus_overview .calendar .messageWrapper table td .more:after,
            .largeDesktop .page_campus_overview .calendar .messageWrapper table td .more:after, .tablet
            .page_campus_overview .timetable .messageWrapper table td .more:after,
            .largeDesktop
            .page_campus_overview .timetable .messageWrapper table td .more:after {
              width: 50px;
              height: 36px;
              right: -50px; }

.page_campus_overview .calendar {
  background-color: #5a9113;
  background-image: url("../images/common/campus/overviewCalendarBg.png");
  transition: background-color 0.6s ease-out; }
  .deviceDesktop .page_campus_overview .calendar:hover, .deviceDesktop .page_campus_overview .calendar:active {
    background-color: #e6b319; }
  .page_campus_overview .calendar .messageWrapper table td {
    color: #ffffff; }

.page_campus_overview .timetable {
  background-color: #5a9113;
  background-image: url("../images/common/campus/overviewTimetableBg.png");
  border-style: solid;
  border-color: #a8c384;
  transition: background-color 0.6s ease-out; }
  .deviceDesktop .page_campus_overview .timetable:hover, .deviceDesktop .page_campus_overview .timetable:active {
    background-color: #e6b319; }
  .mobile .page_campus_overview .timetable {
    border-width: 1px 0 0; }
  .tablet .page_campus_overview .timetable,
  .desktop .page_campus_overview .timetable,
  .largeDesktop .page_campus_overview .timetable {
    border-width: 0 0 0 1px; }
  .page_campus_overview .timetable .messageWrapper table td {
    color: #ffffff; }

.page_campus_overview .whatsHappening {
  background-color: #ffffff; }
  .mobile .page_campus_overview .whatsHappening {
    padding: 0; }
  .page_campus_overview .whatsHappening .title {
    padding: 30px 30px 0; }
    .tablet .page_campus_overview .whatsHappening .title,
    .desktop .page_campus_overview .whatsHappening .title,
    .largeDesktop .page_campus_overview .whatsHappening .title {
      padding: 0 30px; }
    .page_campus_overview .whatsHappening .title:after {
      background-color: #e6b319; }
  .mobile .page_campus_overview .whatsHappening .newsWrapper {
    padding: 20px 0 0; }
  .tablet .page_campus_overview .whatsHappening .newsWrapper .newsItem,
  .desktop .page_campus_overview .whatsHappening .newsWrapper .newsItem,
  .largeDesktop .page_campus_overview .whatsHappening .newsWrapper .newsItem {
    width: 48.5%; }
  .tablet .page_campus_overview .whatsHappening .newsWrapper .newsItem {
    padding: 0 0 32.3vw; }
  .desktop .page_campus_overview .whatsHappening .newsWrapper .newsItem,
  .largeDesktop .page_campus_overview .whatsHappening .newsWrapper .newsItem {
    padding: 0 0 388px; }
  .tablet .page_campus_overview .whatsHappening .newsWrapper .newsItem:nth-child(2n+1),
  .desktop .page_campus_overview .whatsHappening .newsWrapper .newsItem:nth-child(2n+1),
  .largeDesktop .page_campus_overview .whatsHappening .newsWrapper .newsItem:nth-child(2n+1) {
    margin: 1% 0.5% 1% 1%; }
  .tablet .page_campus_overview .whatsHappening .newsWrapper .newsItem:nth-child(2n),
  .desktop .page_campus_overview .whatsHappening .newsWrapper .newsItem:nth-child(2n),
  .largeDesktop .page_campus_overview .whatsHappening .newsWrapper .newsItem:nth-child(2n) {
    margin: 1% 1% 1% 0.5%; }
  .page_campus_overview .whatsHappening .moreBtn {
    color: #006cb0;
    border-color: #006cb0; }
    .mobile .page_campus_overview .whatsHappening .moreBtn {
      margin: 10px 0 20px; }
    .tablet .page_campus_overview .whatsHappening .moreBtn {
      margin: 20px 0; }
    .desktop .page_campus_overview .whatsHappening .moreBtn,
    .largeDesktop .page_campus_overview .whatsHappening .moreBtn {
      margin: 30px 0; }
    .page_campus_overview .whatsHappening .moreBtn:hover, .page_campus_overview .whatsHappening .moreBtn:active {
      color: #ffffff;
      background-color: #006cb0; }

.page_campus_overview .facilities {
  margin: 5px 0;
  padding: 0;
  position: relative; }
  .page_campus_overview .facilities .facilitiesSlider.slick-dotted.slick-slider {
    margin: 0; }
  .page_campus_overview .facilities .facilitiesSlider .sliderItem {
    position: relative;
    /*
				&.active
				{
					img
					{
						transform: scale(1.0);
						opacity: 1;
						transition: $campusOverview_facilities_sliderItem_img_transition_active;
					}
				}
				*/ }
    .page_campus_overview .facilities .facilitiesSlider .sliderItem img {
      width: 100%;
      /*
					transform: scale(1.2);
					opacity: 0.5;
					transition: $campusOverview_facilities_sliderItem_img_transition;
					*/ }
  .page_campus_overview .facilities .facilitiesSlider .slick-dots {
    bottom: 20px; }
    .mobile .page_campus_overview .facilities .facilitiesSlider .slick-dots,
    .tablet .page_campus_overview .facilities .facilitiesSlider .slick-dots {
      display: none !important; }
    .page_campus_overview .facilities .facilitiesSlider .slick-dots li {
      width: 12px;
      height: 12px;
      margin: 0 10px; }
      .page_campus_overview .facilities .facilitiesSlider .slick-dots li button {
        width: 12px;
        height: 12px; }
        .page_campus_overview .facilities .facilitiesSlider .slick-dots li button:before {
          content: "";
          width: 12px;
          height: 12px;
          background-color: #ffffff;
          border-radius: 12px;
          opacity: 1;
          transition: opacity 0.2s ease-out; }
      .page_campus_overview .facilities .facilitiesSlider .slick-dots li.slick-active button:before {
        background-color: transparent;
        border-style: solid;
        border-width: 1px;
        border-color: #ffffff;
        -webkit-transform: scale(1.4);
                transform: scale(1.4); }
  .mobile .page_campus_overview .facilities .facilitiesSlider .slick-arrow,
  .tablet .page_campus_overview .facilities .facilitiesSlider .slick-arrow {
    display: none !important; }
  .page_campus_overview .facilities .facilitiesInfoWrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 108, 176, 0.8); }
    .desktop .page_campus_overview .facilities .facilitiesInfoWrapper {
      width: 400px; }
    .largeDesktop .page_campus_overview .facilities .facilitiesInfoWrapper {
      width: 480px; }
    .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo {
      display: block;
      width: 100%;
      height: 100%;
      padding: 0 30px;
      position: absolute;
      left: 0;
      top: 0;
      color: #ffffff; }
      .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table {
        height: 100%; }
        .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td {
          text-align: left;
          vertical-align: middle; }
          .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle {
            display: block;
            margin: 10px 0; }
            .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle:after {
              content: "";
              display: block;
              width: 50px;
              height: 2px;
              margin: 20px 0;
              position: relative;
              background-color: #ffffff; }
              .desktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle:after,
              .largeDesktop .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoTitle:after {
                width: 100px;
                height: 4px; }
          .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .infoDesc {
            display: block;
            margin: 10px 0; }
          .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn {
            margin: 10px 0;
            color: #ffffff;
            border-color: #ffffff; }
            .mobile .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn,
            .tablet .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn {
              width: 100%;
              height: 100%;
              position: absolute;
              left: 0;
              top: -10px;
              opacity: 0; }
            .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn:hover, .page_campus_overview .facilities .facilitiesInfoWrapper .facilitiesInfo table td .moreBtn:active {
              color: #006cb0;
              background-color: #ffffff; }

.page_campus_overview .contact {
  margin: 5px 0;
  padding: 0;
  position: relative; }
  .page_campus_overview .contact .campusMap {
    width: 100%;
    height: 56.25vw; }
    .desktop .page_campus_overview .contact .campusMap,
    .largeDesktop .page_campus_overview .contact .campusMap {
      height: 40vw; }
  .page_campus_overview .contact .contactInfoWrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(90, 145, 19, 0.8); }
    .desktop .page_campus_overview .contact .contactInfoWrapper {
      width: 400px; }
    .largeDesktop .page_campus_overview .contact .contactInfoWrapper {
      width: 480px; }
    .page_campus_overview .contact .contactInfoWrapper .contactInfo {
      display: block;
      width: 100%;
      height: 100%;
      padding: 0 30px;
      position: absolute;
      left: 0;
      top: 0;
      color: #ffffff; }
      .page_campus_overview .contact .contactInfoWrapper .contactInfo table {
        height: 100%; }
        .page_campus_overview .contact .contactInfoWrapper .contactInfo table td {
          text-align: left;
          vertical-align: middle; }
          .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle {
            display: block;
            margin: 10px 0; }
            .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle:after {
              content: "";
              display: block;
              width: 50px;
              height: 2px;
              margin: 20px 0;
              position: relative;
              background-color: #ffffff; }
              .desktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle:after,
              .largeDesktop .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoTitle:after {
                width: 100px;
                height: 4px; }
          .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .infoDesc {
            display: block;
            margin: 10px 0; }
          .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn {
            margin: 10px 0;
            color: #ffffff;
            border-color: #ffffff; }
            .mobile .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn,
            .tablet .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn {
              width: 100%;
              height: 100%;
              position: absolute;
              left: 0;
              top: -10px;
              opacity: 0; }
            .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn:hover, .page_campus_overview .contact .contactInfoWrapper .contactInfo table td .moreBtn:active {
              color: #5a9113;
              background-color: #ffffff; }

/* TEMPLATE T9 */
.veo_templateT9 .leadin {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: left; }
  .tablet .veo_templateT9 .leadin,
  .desktop .veo_templateT9 .leadin,
  .largeDesktop .veo_templateT9 .leadin {
    padding: 0 50px; }
  .veo_templateT9 .leadin img {
    display: block;
    max-width: 100%;
    margin: 0 auto; }
    .tablet .veo_templateT9 .leadin img,
    .desktop .veo_templateT9 .leadin img,
    .largeDesktop .veo_templateT9 .leadin img {
      padding: 10px;
      float: left; }

.veo_templateT9 .maxim {
  margin: 10px 0 0; }

.veo_templateT9 .ibLearner {
  position: relative;
  background-color: #3da6ce;
  text-align: left; }
  .tablet .veo_templateT9 .ibLearner,
  .desktop .veo_templateT9 .ibLearner,
  .largeDesktop .veo_templateT9 .ibLearner {
    margin: 10px 0 0;
    padding: 70px 0 0; }
  .veo_templateT9 .ibLearner .logo {
    display: block;
    width: 100px;
    margin: 0 auto; }
    .tablet .veo_templateT9 .ibLearner .logo {
      left: 50px; }
    .desktop .veo_templateT9 .ibLearner .logo,
    .largeDesktop .veo_templateT9 .ibLearner .logo {
      left: 50%;
      -webkit-transform: translate(-550px, 0);
              transform: translate(-550px, 0); }
    .tablet .veo_templateT9 .ibLearner .logo,
    .desktop .veo_templateT9 .ibLearner .logo,
    .largeDesktop .veo_templateT9 .ibLearner .logo {
      width: 200px;
      position: absolute;
      top: 90px; }
  .veo_templateT9 .ibLearner .learnerTitle {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 30px;
    color: #ffffff; }
    .tablet .veo_templateT9 .ibLearner .learnerTitle,
    .desktop .veo_templateT9 .ibLearner .learnerTitle,
    .largeDesktop .veo_templateT9 .ibLearner .learnerTitle {
      padding: 10px 50px 10px 300px; }
  .veo_templateT9 .ibLearner .learnerDesc {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    color: #ffffff; }
    .tablet .veo_templateT9 .ibLearner .learnerDesc,
    .desktop .veo_templateT9 .ibLearner .learnerDesc,
    .largeDesktop .veo_templateT9 .ibLearner .learnerDesc {
      padding: 10px 50px 10px 300px; }
  .veo_templateT9 .ibLearner .attributes {
    padding: 320px 0 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: 260px;
    background-position: center 30px; }
    body.en .veo_templateT9 .ibLearner .attributes {
      background-image: url("../images/common/learningwithus/attributesBg.png"); }
    body.tc .veo_templateT9 .ibLearner .attributes {
      background-image: url("../images/common/learningwithus/attributesBg-tc.png"); }
    body.sc .veo_templateT9 .ibLearner .attributes {
      background-image: url("../images/common/learningwithus/attributesBg-sc.png"); }
    .tablet .veo_templateT9 .ibLearner .attributes {
      margin: -120px 0;
      -webkit-transform: scale(0.6);
              transform: scale(0.6); }
    .desktop .veo_templateT9 .ibLearner .attributes {
      -webkit-transform: scale(0.9);
              transform: scale(0.9); }
    .desktop .veo_templateT9 .ibLearner .attributes,
    .largeDesktop .veo_templateT9 .ibLearner .attributes {
      margin: 0 0 30px; }
    .tablet .veo_templateT9 .ibLearner .attributes,
    .desktop .veo_templateT9 .ibLearner .attributes,
    .largeDesktop .veo_templateT9 .ibLearner .attributes {
      height: 800px;
      padding: 0;
      background-size: 750px; }
    .veo_templateT9 .ibLearner .attributes .attribute {
      display: block;
      padding: 5px 0;
      position: relative;
      overflow: hidden;
      transition: height 0.2s ease-out; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute {
        padding: 0;
        position: absolute;
        left: 50%;
        overflow: visible; }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute1 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute2 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute3 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute4 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute5 .toggleBtn {
        right: -110px; }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute6 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute7 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute8 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute9 .toggleBtn, .veo_templateT9 .ibLearner .attributes .attribute.attribute10 .toggleBtn {
        left: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute1,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute1,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute1 {
        top: 100px;
        -webkit-transform: translate(-310px, -50px) translate(-100%, 0);
                transform: translate(-310px, -50px) translate(-100%, 0); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute1 .name:before {
        background-color: #f3776a;
        background-position: -50px 0; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute1 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute1 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute1 .name:before {
          background-position: -100px 0;
          right: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute2,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute2,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute2 {
        top: 250px;
        -webkit-transform: translate(-420px, -50px) translate(-100%, 0);
                transform: translate(-420px, -50px) translate(-100%, 0); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute2 .name:before {
        background-color: #75b11f;
        background-position: -100px 0; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute2 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute2 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute2 .name:before {
          background-position: -200px 0;
          right: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute3,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute3,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute3 {
        top: 400px;
        -webkit-transform: translate(-460px, -50px) translate(-100%, 0);
                transform: translate(-460px, -50px) translate(-100%, 0); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute3 .name:before {
        background-color: #e6b319;
        background-position: -150px 0; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute3 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute3 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute3 .name:before {
          background-position: -300px 0;
          right: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute4,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute4,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute4 {
        top: 550px;
        -webkit-transform: translate(-420px, -50px) translate(-100%, 0);
                transform: translate(-420px, -50px) translate(-100%, 0); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute4 .name:before {
        background-color: #cba6dd;
        background-position: -200px 0; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute4 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute4 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute4 .name:before {
          background-position: -400px 0;
          right: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute5,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute5,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute5 {
        top: 700px;
        -webkit-transform: translate(-310px, -50px) translate(-100%, 0);
                transform: translate(-310px, -50px) translate(-100%, 0); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute5 .name:before {
        background-color: #006cb0;
        background-position: -50px -50px; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute5 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute5 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute5 .name:before {
          background-position: -100px -100px;
          right: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute6,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute6,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute6 {
        top: 100px;
        -webkit-transform: translate(310px, -50px);
                transform: translate(310px, -50px); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute6 .name:before {
        background-color: #cba6dd;
        background-position: -100px -50px; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute6 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute6 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute6 .name:before {
          background-position: -200px -100px;
          left: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute7,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute7,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute7 {
        top: 250px;
        -webkit-transform: translate(420px, -50px);
                transform: translate(420px, -50px); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute7 .name:before {
        background-color: #006cb0;
        background-position: -150px -50px; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute7 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute7 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute7 .name:before {
          background-position: -300px -100px;
          left: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute8,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute8,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute8 {
        top: 400px;
        -webkit-transform: translate(460px, -50px);
                transform: translate(460px, -50px); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute8 .name:before {
        background-color: #75b11f;
        background-position: -200px -50px; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute8 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute8 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute8 .name:before {
          background-position: -400px -100px;
          left: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute9,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute9,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute9 {
        top: 550px;
        -webkit-transform: translate(420px, -50px);
                transform: translate(420px, -50px); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute9 .name:before {
        background-color: #f3776a;
        background-position: -50px -100px; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute9 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute9 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute9 .name:before {
          background-position: -100px -200px;
          left: -110px; }
      .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute10,
      .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute10,
      .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute10 {
        top: 700px;
        -webkit-transform: translate(310px, -50px);
                transform: translate(310px, -50px); }
      .veo_templateT9 .ibLearner .attributes .attribute.attribute10 .name:before {
        background-color: #e6b319;
        background-position: -100px -100px; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute.attribute10 .name:before,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute.attribute10 .name:before,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute.attribute10 .name:before {
          background-position: -200px -200px;
          left: -110px; }
      .deviceDesktop .veo_templateT9 .ibLearner .attributes .attribute:hover .name, .deviceDesktop .veo_templateT9 .ibLearner .attributes .attribute:active .name {
        color: #006cb0; }
      .veo_templateT9 .ibLearner .attributes .attribute .name {
        display: block;
        color: #ffffff;
        position: absolute;
        line-height: 50px;
        transition: all 0.2s ease-out; }
        .mobile .veo_templateT9 .ibLearner .attributes .attribute .name {
          left: 50%;
          -webkit-transform: translate(-30px, 0);
                  transform: translate(-30px, 0); }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute .name,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute .name,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute .name {
          position: relative;
          line-height: 100px; }
        .veo_templateT9 .ibLearner .attributes .attribute .name:before {
          content: "";
          display: block;
          width: 50px;
          height: 50px;
          position: absolute;
          top: 0;
          border-radius: 50px;
          background-image: url("../images/common/learningwithus/sptIbAttributeIcons.png");
          background-repeat: no-repeat;
          background-size: 250px; }
          .mobile .veo_templateT9 .ibLearner .attributes .attribute .name:before {
            left: -60px; }
          .tablet .veo_templateT9 .ibLearner .attributes .attribute .name:before,
          .desktop .veo_templateT9 .ibLearner .attributes .attribute .name:before,
          .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute .name:before {
            width: 100px;
            height: 100px;
            border-radius: 100px;
            background-size: 500px; }
      .veo_templateT9 .ibLearner .attributes .attribute .toggleBtn {
        display: block;
        width: 100%;
        height: 60px;
        position: absolute;
        top: 0; }
        .mobile .veo_templateT9 .ibLearner .attributes .attribute .toggleBtn {
          left: 0; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute .toggleBtn,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute .toggleBtn,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute .toggleBtn {
          width: 350px;
          height: 100px; }
      .veo_templateT9 .ibLearner .attributes .attribute .message {
        display: block;
        padding: 70px 30px 10px;
        position: relative;
        color: #ffffff;
        background-color: #5a9113; }
        .tablet .veo_templateT9 .ibLearner .attributes .attribute .message,
        .desktop .veo_templateT9 .ibLearner .attributes .attribute .message,
        .largeDesktop .veo_templateT9 .ibLearner .attributes .attribute .message {
          display: none; }
        .veo_templateT9 .ibLearner .attributes .attribute .message:after {
          content: "";
          display: block;
          width: 100%;
          height: 60px;
          position: absolute;
          left: 0;
          top: 0;
          background-color: #3da6ce; }
        .veo_templateT9 .ibLearner .attributes .attribute .message .messageTitle {
          display: block; }
        .veo_templateT9 .ibLearner .attributes .attribute .message .messageDesc {
          display: block; }
        .veo_templateT9 .ibLearner .attributes .attribute .message .closeBtn {
          display: block;
          width: 30px;
          height: 30px;
          position: absolute;
          right: 0;
          top: 60px;
          background-image: url("../images/common/menuCloseBtn.png");
          background-repeat: no-repeat;
          background-size: 30px;
          background-position: center center; }
  .veo_templateT9 .ibLearner .messagePanel {
    display: block;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background-color: #5a9113;
    transition: height 0.2s ease-out; }
    .mobile .veo_templateT9 .ibLearner .messagePanel {
      display: none; }
    .veo_templateT9 .ibLearner .messagePanel:before {
      content: "";
      display: block;
      width: 360px;
      height: 320px;
      position: absolute;
      left: 50%;
      bottom: 0;
      -webkit-transform: translate(-580px, 0);
              transform: translate(-580px, 0);
      background-image: url("../images/common/learningwithus/globeBg.png");
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: center center; }
      .tablet .veo_templateT9 .ibLearner .messagePanel:before {
        left: 50px;
        -webkit-transform: none;
                transform: none; }
    .veo_templateT9 .ibLearner .messagePanel .messageWrapper {
      padding: 30px 0; }
      .veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageTitle {
        display: block;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 50px 0 450px; }
      .veo_templateT9 .ibLearner .messagePanel .messageWrapper .messageDesc {
        display: block;
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 50px 0 450px; }
      .veo_templateT9 .ibLearner .messagePanel .messageWrapper .closeBtn {
        display: block;
        width: 60px;
        height: 60px;
        position: absolute;
        right: 0;
        top: 0;
        background-image: url("../images/common/menuCloseBtn.png");
        background-repeat: no-repeat;
        background-size: 60px;
        background-position: center center; }

/* TEMPLATE T12 */
.veo_templateT12 .tabSection {
  padding: 30px 0 10px; }
  .tablet .veo_templateT12 .tabSection,
  .desktop .veo_templateT12 .tabSection,
  .largeDesktop .veo_templateT12 .tabSection {
    padding: 50px 0 20px; }
  .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn {
    display: block;
    height: 50px;
    position: relative;
    overflow: hidden;
    color: #006cb0;
    line-height: 50px;
    background-color: #e6b319;
    transition: all 0.2s ease-out; }
    .tablet .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn {
      padding: 0 50px; }
    .desktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn,
    .largeDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn {
      display: none; }
    .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn.active {
      color: #8db0d2;
      background-color: #006cb0; }
      .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn.active:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn:before {
      content: "";
      display: block;
      height: 1px;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      background-color: #ffffff; }
    .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn:after {
      content: "";
      display: block;
      width: 40px;
      height: 50px;
      margin: 0 auto;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/common/topBannerMoreArrow.png");
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: center center;
      transition: all 0.2s ease-out; }
  .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer {
    display: block;
    overflow: hidden;
    position: relative; }
    .desktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer,
    .largeDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer {
      background-color: #006cb0; }
    .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu {
      display: block;
      height: 100%;
      margin: 0;
      position: relative;
      overflow: hidden;
      transition: margin 0.2s ease-out; }
      .desktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu,
      .largeDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu {
        height: 54px;
        margin: 0 !important;
        text-align: center; }
      .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption {
        display: block;
        height: 50px;
        position: relative;
        background-color: #006cb0; }
        .desktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption,
        .largeDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption {
          display: inline-block;
          height: 54px; }
        .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption:before {
          content: "";
          display: block;
          height: 1px;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          background-color: #ffffff; }
          .desktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption:before,
          .largeDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption:before {
            display: none; }
        .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label {
          display: block;
          height: 50px;
          color: #8db0d2;
          background-color: transparent;
          line-height: 50px;
          cursor: pointer;
          overflow: hidden;
          transition: all 0.2s ease-out; }
          .tablet .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label {
            padding: 0 80px; }
          .desktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label,
          .largeDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label {
            height: 100px;
            padding: 0 30px;
            line-height: 54px;
            white-space: nowrap;
            /*
									height: auto;
									margin: 0;
									padding: 2px 10px;
									font-size: 16px;
									line-height: 20px;
									*/ }
          .deviceDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label:hover, .deviceDesktop .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label:active {
            color: #006cb0;
            background-color: #e6b319; }
        .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption input[type="radio"] {
          position: absolute;
          left: -9999px; }
          .veo_templateT12 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption input[type="radio"]:checked + label {
            color: #006cb0;
            background-color: #e6b319; }
  .veo_templateT12 .tabSection .tabWrapper {
    max-width: 1300px;
    height: 0;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: height 0.2s ease-out; }
    .veo_templateT12 .tabSection .tabWrapper .tabItem {
      width: 100%;
      position: absolute;
      left: 50%;
      -webkit-transform: translate(-50%, 0);
              transform: translate(-50%, 0);
      opacity: 0;
      transition: opacity 0.2s ease-out; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead {
        padding: 30px 30px 0; }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead,
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead {
          padding: 50px 10% 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headTitle {
          display: block;
          color: #006cb0;
          text-align: center; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headTitle.headTitleLine:after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            margin: 30px auto 0;
            background-color: #e6b319; }
            .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headTitle.headTitleLine:after,
            .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headTitle.headTitleLine:after,
            .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headTitle.headTitleLine:after {
              width: 100px;
              height: 4px;
              margin: 50px auto 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headDesc {
          display: block;
          margin: 30px 0 0;
          text-align: center; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headDesc,
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headDesc,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tabHead .headDesc {
            margin: 50px 0 0; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .editorContent {
        padding: 30px 30px 0;
        color: #000000;
        text-align: left; }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .editorContent,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .editorContent,
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .editorContent {
          padding: 50px 10% 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .editorContent a {
          color: #006cb0; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel {
        padding: 30px 30px 0;
        /*
						&:after
						{
							content: "";
							display: block;
							clear: both;
						}
						*/ }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel,
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel {
          padding: 50px 0 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a {
          display: block;
          width: 100%;
          margin: 10px 0;
          padding: 10px 30px 10px 75px;
          position: relative;
          color: #d61934;
          background-color: #f5f5f5;
          transition: all 0.6s ease-out;
          /*
							&:nth-child(odd)
							{
								.tablet &,
								.desktop &,
								.largeDesktop &
								{
									transform: translate(-25px, 0);
								}
							}
							&:nth-child(even)
							{
								.tablet &,
								.desktop &,
								.largeDesktop &
								{
									transform: translate(25px, 0);
								}
							}
							*/
          /*
							&.highlight
							{
								color: $color_white;
								background-color: $color_crimson;
							}
							*/ }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a {
            width: 36%; }
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a {
            width: 450px;
            padding: 10px 50px 10px 110px; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a,
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a {
            display: inline-block;
            height: 120px;
            margin: 0 20px;
            line-height: 100px; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:hover, .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:active {
            /*
								&.highlight
								{
									.deviceDesktop &
									{
//										background-color: $color_froly;
										background-color: darken($color_crimson, 10%);
									}
								}
								*/ }
            .deviceDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:hover, .deviceDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:active {
              color: #ffffff;
              background-color: #d61934; }
            .deviceDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:hover img.imgNormal, .deviceDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:active img.imgNormal {
              display: none; }
            .deviceDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:hover img.imgActive, .deviceDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a:active img.imgActive {
              display: block; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a img {
            display: block;
            width: 40px;
            height: 40px;
            position: absolute;
            top: 50%;
            left: 30px;
            -webkit-transform: translate(0, -50%);
                    transform: translate(0, -50%); }
            .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a img,
            .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a img {
              width: 80px;
              height: 80px; }
            .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a img.imgNormal {
              display: block; }
            .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a img.imgActive {
              display: none; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .btnPanel a .btnDesc {
            display: inline-block;
            vertical-align: middle; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel {
        margin: 30px 30px 0;
        padding: 30px 0 0;
        background-color: #f5f5f5; }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel,
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel {
          margin: 50px 0 0;
          padding: 50px 0 0;
          text-align: center; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .headTitle {
          display: block;
          color: #006cb0; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .headTitle.headTitleLine:after {
            content: "";
            display: block;
            width: 30px;
            height: 2px;
            margin: 30px auto 0;
            background-color: #e6b319; }
            .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .headTitle.headTitleLine:after,
            .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .headTitle.headTitleLine:after,
            .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .headTitle.headTitleLine:after {
              width: 100px;
              height: 4px;
              margin: 50px auto 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .itemWrapper {
          display: block;
          padding: 30px 0; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .itemWrapper {
            padding: 40px 0; }
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .itemWrapper,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel .itemWrapper {
            padding: 50px 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a {
          display: block;
          margin: 10px 0;
          padding: 10px 30px 10px 65px;
          position: relative;
          text-align: left;
          color: #5a9113;
          transition: all 0.2s ease-out; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a,
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a {
            width: 270px;
            display: inline-block;
            margin: 0;
            vertical-align: top;
            line-height: 60px; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a {
            height: 80px;
            padding: 10px 10px 10px 75px; }
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a {
            height: 60px;
            padding: 0 10px 0 75px; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a:hover, .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a:active {
            color: #3e640d; }
            .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a:hover img, .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a:active img {
              background-color: #3e640d; }
          .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a img {
            display: block;
            width: 30px;
            height: 30px;
            position: absolute;
            top: 50%;
            left: 30px;
            -webkit-transform: translate(0, -50%);
                    transform: translate(0, -50%);
            background-color: #5a9113;
            border-radius: 30px;
            transition: all 0.2s ease-out;
            /*
								&:before
								{
									content: "";
									display: block;
									width: 30px;
									height: 30px;
									position: absolute;
									left: 0;
									top: 0;
									background-color: $color_primary_color3;
									border-radius: 30px;
									.tablet &,
									.desktop &,
									.largeDesktop &
									{
										width: 60px;
										height: 60px;
										border-radius: 60px;
									}
								}
								*/ }
            .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a img,
            .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a img,
            .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a img {
              width: 60px;
              height: 60px;
              left: 0;
              border-radius: 60px; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a span,
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a span,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .infoPanel a span {
            display: inline-block;
            line-height: 30px;
            vertical-align: baseline; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel {
        padding: 30px 30px 0;
        position: relative; }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel {
          padding: 50px 10% 0; }
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel {
          padding: 50px 50px 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel:after {
          content: "";
          display: block;
          clear: both; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel img {
          display: block;
          width: 100%; }
          .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel img,
          .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel img,
          .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .imagePanel img {
            width: 50%;
            float: left; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel {
        margin: 30px 0 0; }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel {
          margin: 50px 10% 0; }
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel {
          margin: 50px 0 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel .tableCaption {
          display: block;
          color: #ffffff;
          background-color: #006cb0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel table tr:nth-child(even) {
          background-color: #f5f5f5; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel table tr th,
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel table tr td {
          padding: 10px;
          vertical-align: middle; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel table tr th {
          width: 30%;
          text-align: right;
          color: #006cb0;
          border-style: solid;
          border-color: #006cb0;
          border-width: 0 1px 0 0; }
        .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .tablePanel table tr td {
          text-align: left;
          color: #000000; }
      .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .highlightedPanel {
        margin: 30px 0 0;
        padding: 30px;
        background-color: #f5f5f5; }
        .tablet .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .highlightedPanel,
        .desktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .highlightedPanel,
        .largeDesktop .veo_templateT12 .tabSection .tabWrapper .tabItem .tabContent .highlightedPanel {
          margin: 50px 10% 0;
          padding: 50px 0; }

/* CAMPUS CONTACTUS */
.tablet .veo_templateT13 .contactInfoWrapper,
.desktop .veo_templateT13 .contactInfoWrapper,
.largeDesktop .veo_templateT13 .contactInfoWrapper {
  max-width: 1200px;
  margin: 0 auto; }

.veo_templateT13 .contactInfoWrapper .generalContact,
.veo_templateT13 .contactInfoWrapper .howToGo,
.veo_templateT13 .contactInfoWrapper .carPark {
  display: block;
  padding: 20px 0;
  text-align: left; }
  .tablet .veo_templateT13 .contactInfoWrapper .generalContact, .tablet
  .veo_templateT13 .contactInfoWrapper .howToGo, .tablet
  .veo_templateT13 .contactInfoWrapper .carPark {
    width: 50%;
    float: left; }
  .desktop .veo_templateT13 .contactInfoWrapper .generalContact,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact, .desktop
  .veo_templateT13 .contactInfoWrapper .howToGo,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .howToGo, .desktop
  .veo_templateT13 .contactInfoWrapper .carPark,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .carPark {
    width: 33.33%;
    float: left; }
  .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle,
  .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle,
  .veo_templateT13 .contactInfoWrapper .carPark .contactTitle {
    display: inline-block;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    line-height: 30px;
    color: #5a9113; }
    .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle,
    .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle, .tablet
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle,
    .desktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle, .tablet
    .veo_templateT13 .contactInfoWrapper .carPark .contactTitle,
    .desktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactTitle,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactTitle {
      line-height: 40px; }
    .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle:after,
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after,
    .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      position: absolute;
      right: 15px;
      top: 6px;
      background-image: url("../images/common/campus/sptContactusGeneralIcons.png");
      background-repeat: no-repeat;
      background-size: 100px;
      background-position: 0 0; }
      .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle:after,
      .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle:after,
      .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTitle:after, .tablet
      .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after,
      .desktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after, .tablet
      .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after,
      .desktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after {
        width: 40px;
        height: 40px;
        right: 30px;
        top: 0;
        background-size: 200px; }
  .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress,
  .veo_templateT13 .contactInfoWrapper .generalContact .contactTel,
  .veo_templateT13 .contactInfoWrapper .generalContact .contactFax,
  .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail,
  .veo_templateT13 .contactInfoWrapper .generalContact .messsage,
  .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress,
  .veo_templateT13 .contactInfoWrapper .howToGo .contactTel,
  .veo_templateT13 .contactInfoWrapper .howToGo .contactFax,
  .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail,
  .veo_templateT13 .contactInfoWrapper .howToGo .messsage,
  .veo_templateT13 .contactInfoWrapper .carPark .contactAddress,
  .veo_templateT13 .contactInfoWrapper .carPark .contactTel,
  .veo_templateT13 .contactInfoWrapper .carPark .contactFax,
  .veo_templateT13 .contactInfoWrapper .carPark .contactEmail,
  .veo_templateT13 .contactInfoWrapper .carPark .messsage {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    line-height: 24px;
    color: #000000;
    text-align: left; }
    .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress, .tablet
    .veo_templateT13 .contactInfoWrapper .generalContact .contactTel, .tablet
    .veo_templateT13 .contactInfoWrapper .generalContact .contactFax, .tablet
    .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail, .tablet
    .veo_templateT13 .contactInfoWrapper .generalContact .messsage, .tablet
    .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress, .tablet
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTel, .tablet
    .veo_templateT13 .contactInfoWrapper .howToGo .contactFax, .tablet
    .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail, .tablet
    .veo_templateT13 .contactInfoWrapper .howToGo .messsage, .tablet
    .veo_templateT13 .contactInfoWrapper .carPark .contactAddress, .tablet
    .veo_templateT13 .contactInfoWrapper .carPark .contactTel, .tablet
    .veo_templateT13 .contactInfoWrapper .carPark .contactFax, .tablet
    .veo_templateT13 .contactInfoWrapper .carPark .contactEmail, .tablet
    .veo_templateT13 .contactInfoWrapper .carPark .messsage {
      padding: 0 50px;
      line-height: 24px; }
    .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress, .desktop
    .veo_templateT13 .contactInfoWrapper .generalContact .contactTel,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .generalContact .contactTel, .desktop
    .veo_templateT13 .contactInfoWrapper .generalContact .contactFax,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .generalContact .contactFax, .desktop
    .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail, .desktop
    .veo_templateT13 .contactInfoWrapper .generalContact .messsage,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .generalContact .messsage, .desktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress, .desktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTel,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTel, .desktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactFax,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactFax, .desktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail, .desktop
    .veo_templateT13 .contactInfoWrapper .howToGo .messsage,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .howToGo .messsage, .desktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactAddress,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactAddress, .desktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactTel,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactTel, .desktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactFax,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactFax, .desktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactEmail,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .carPark .contactEmail, .desktop
    .veo_templateT13 .contactInfoWrapper .carPark .messsage,
    .largeDesktop
    .veo_templateT13 .contactInfoWrapper .carPark .messsage {
      padding: 0 50px;
      line-height: 40px; }
    .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before,
    .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before,
    .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before,
    .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before,
    .veo_templateT13 .contactInfoWrapper .generalContact .messsage:before,
    .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress:before,
    .veo_templateT13 .contactInfoWrapper .howToGo .contactTel:before,
    .veo_templateT13 .contactInfoWrapper .howToGo .contactFax:before,
    .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail:before,
    .veo_templateT13 .contactInfoWrapper .howToGo .messsage:before,
    .veo_templateT13 .contactInfoWrapper .carPark .contactAddress:before,
    .veo_templateT13 .contactInfoWrapper .carPark .contactTel:before,
    .veo_templateT13 .contactInfoWrapper .carPark .contactFax:before,
    .veo_templateT13 .contactInfoWrapper .carPark .contactEmail:before,
    .veo_templateT13 .contactInfoWrapper .carPark .messsage:before {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      position: absolute;
      left: 24px;
      top: 2px;
      background-image: url("../images/common/campus/sptContactusGeneralIcons.png");
      background-repeat: no-repeat;
      background-size: 100px;
      background-position: 0 0; }
      .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before, .tablet
      .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before, .tablet
      .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before, .tablet
      .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before, .tablet
      .veo_templateT13 .contactInfoWrapper .generalContact .messsage:before, .tablet
      .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress:before, .tablet
      .veo_templateT13 .contactInfoWrapper .howToGo .contactTel:before, .tablet
      .veo_templateT13 .contactInfoWrapper .howToGo .contactFax:before, .tablet
      .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail:before, .tablet
      .veo_templateT13 .contactInfoWrapper .howToGo .messsage:before, .tablet
      .veo_templateT13 .contactInfoWrapper .carPark .contactAddress:before, .tablet
      .veo_templateT13 .contactInfoWrapper .carPark .contactTel:before, .tablet
      .veo_templateT13 .contactInfoWrapper .carPark .contactFax:before, .tablet
      .veo_templateT13 .contactInfoWrapper .carPark .contactEmail:before, .tablet
      .veo_templateT13 .contactInfoWrapper .carPark .messsage:before {
        width: 24px;
        height: 24px;
        background-size: 120px; }
      .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before,
      .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before, .desktop
      .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before, .desktop
      .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before, .desktop
      .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before, .desktop
      .veo_templateT13 .contactInfoWrapper .generalContact .messsage:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .generalContact .messsage:before, .desktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactAddress:before, .desktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactTel:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactTel:before, .desktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactFax:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactFax:before, .desktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .howToGo .contactEmail:before, .desktop
      .veo_templateT13 .contactInfoWrapper .howToGo .messsage:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .howToGo .messsage:before, .desktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactAddress:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactAddress:before, .desktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactTel:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactTel:before, .desktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactFax:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactFax:before, .desktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactEmail:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .carPark .contactEmail:before, .desktop
      .veo_templateT13 .contactInfoWrapper .carPark .messsage:before,
      .largeDesktop
      .veo_templateT13 .contactInfoWrapper .carPark .messsage:before {
        width: 40px;
        height: 40px;
        background-size: 200px; }

.veo_templateT13 .contactInfoWrapper .contactInfoList {
  text-align: left; }
  .tablet .veo_templateT13 .contactInfoWrapper .contactInfoList:nth-child(2) .generalContact {
    height: 240px; }
  .desktop .veo_templateT13 .contactInfoWrapper .contactInfoList:nth-child(2) .generalContact,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .contactInfoList:nth-child(2) .generalContact {
    height: 360px; }
  .veo_templateT13 .contactInfoWrapper .contactInfoList .listTitle {
    display: block;
    padding: 0 30px;
    color: #5a9113; }
    .tablet .veo_templateT13 .contactInfoWrapper .contactInfoList .listTitle,
    .desktop .veo_templateT13 .contactInfoWrapper .contactInfoList .listTitle,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .contactInfoList .listTitle {
      padding: 0 50px; }
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTitle {
    color: #000000; }
    .tablet .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTitle,
    .desktop .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTitle,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTitle {
      padding: 0 50px; }
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress .name,
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel .name,
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax .name,
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail .name {
    color: #000000; }
  .tablet .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress,
  .desktop .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress, .tablet
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel,
  .desktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel, .tablet
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax,
  .desktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax, .tablet
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail,
  .desktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail {
    padding: 0 50px 0 90px; }
  .tablet .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress:before,
  .desktop .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress:before,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactAddress:before, .tablet
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel:before,
  .desktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel:before,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactTel:before, .tablet
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax:before,
  .desktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax:before,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactFax:before, .tablet
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail:before,
  .desktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail:before,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContact .contactEmail:before {
    left: 44px; }
  .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContactBreak {
    display: block;
    padding: 0 30px;
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #f5f5f5;
    clear: both; }
    .mobile .veo_templateT13 .contactInfoWrapper .contactInfoList .generalContactBreak {
      display: none; }

.veo_templateT13 .contactInfoWrapper .generalContact .contactAddress,
.veo_templateT13 .contactInfoWrapper .generalContact .contactTel,
.veo_templateT13 .contactInfoWrapper .generalContact .contactFax,
.veo_templateT13 .contactInfoWrapper .generalContact .contactEmail {
  padding: 0 30px 0 50px;
  background-position: 0 -20px; }
  .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress, .tablet
  .veo_templateT13 .contactInfoWrapper .generalContact .contactTel, .tablet
  .veo_templateT13 .contactInfoWrapper .generalContact .contactFax, .tablet
  .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail {
    padding: 0 50px 0 60px; }
  .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress, .desktop
  .veo_templateT13 .contactInfoWrapper .generalContact .contactTel,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .generalContact .contactTel, .desktop
  .veo_templateT13 .contactInfoWrapper .generalContact .contactFax,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .generalContact .contactFax, .desktop
  .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail,
  .largeDesktop
  .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail {
    padding: 0 50px 0 70px; }

.veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before {
  background-position: 0 -20px; }
  .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before {
    background-position: 0 -24px; }
  .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactAddress:before {
    background-position: 0 -40px; }

.veo_templateT13 .contactInfoWrapper .generalContact .contactTel {
  color: #006cb0;
  transition: all 0.2s ease-out; }
  .deviceDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:hover, .deviceDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:active {
    color: #e6b319; }
  .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before {
    background-position: -20px -20px; }
    .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before {
      background-position: -24px -24px; }
    .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactTel:before {
      background-position: -40px -40px; }

.veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before {
  background-position: -40px -20px; }
  .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before {
    background-position: -48px -24px; }
  .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactFax:before {
    background-position: -80px -40px; }

.veo_templateT13 .contactInfoWrapper .generalContact .contactEmail {
  color: #006cb0;
  transition: all 0.2s ease-out; }
  .deviceDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:hover, .deviceDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:active {
    color: #e6b319; }
  .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before {
    background-position: -60px -20px; }
    .tablet .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before {
      background-position: -72px -24px; }
    .desktop .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .generalContact .contactEmail:before {
      background-position: -120px -40px; }

.veo_templateT13 .contactInfoWrapper .howToGo .contactTitle {
  padding: 0 40px 0 30px; }
  .tablet .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle,
  .desktop .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle {
    padding: 0 70px 0 50px; }
  .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after {
    background-position: -20px 0; }
    .tablet .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after,
    .desktop .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .howToGo .contactTitle:after {
      background-position: -40px 0; }

.veo_templateT13 .contactInfoWrapper .carPark .contactTitle {
  padding: 0 40px 0 30px; }
  .tablet .veo_templateT13 .contactInfoWrapper .carPark .contactTitle,
  .desktop .veo_templateT13 .contactInfoWrapper .carPark .contactTitle,
  .largeDesktop .veo_templateT13 .contactInfoWrapper .carPark .contactTitle {
    padding: 0 70px 0 50px; }
  .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after {
    background-position: -40px 0; }
    .tablet .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after,
    .desktop .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after,
    .largeDesktop .veo_templateT13 .contactInfoWrapper .carPark .contactTitle:after {
      background-position: -80px 0; }

.veo_templateT13 .campusMapWrapper {
  padding: 20px 0 10px; }
  .veo_templateT13 .campusMapWrapper .campusMap {
    width: 100%;
    height: 56.25vw; }
    .tablet .veo_templateT13 .campusMapWrapper .campusMap,
    .desktop .veo_templateT13 .campusMapWrapper .campusMap,
    .largeDesktop .veo_templateT13 .campusMapWrapper .campusMap {
      height: 560px; }

.veo_templateT13 .enquiryFormWrapper {
  padding: 20px 0;
  background-color: #5a9113; }
  .veo_templateT13 .enquiryFormWrapper .enquiryForm {
    max-width: 1300px;
    margin: 0 auto; }
    .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm,
    .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm {
      padding: 0 10%; }
    .veo_templateT13 .enquiryFormWrapper .enquiryForm .title {
      color: #ffffff; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .title.titleLine:after {
        background-color: #ffffff; }
    .veo_templateT13 .enquiryFormWrapper .enquiryForm .enquiryTop {
      display: block;
      padding: 20px 0 0; }
      .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .enquiryTop,
      .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .enquiryTop,
      .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .enquiryTop {
        padding: 30px 0 0; }
    .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput {
      display: block;
      padding: 10px 30px;
      position: relative; }
      .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput,
      .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput,
      .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput {
        padding: 20px 50px; }
      .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.formHalfDesktop,
      .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.formHalfDesktop,
      .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.formHalfDesktop {
        width: 50%;
        float: left; }
      .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.captchaWrapper,
      .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.captchaWrapper,
      .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.captchaWrapper {
        width: 20%;
        float: left; }
      .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.captchaInputWrapper,
      .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.captchaInputWrapper,
      .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput.captchaInputWrapper {
        width: 80%;
        float: left; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"],
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"],
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"] {
        display: block;
        width: 100%;
        padding: 0 10px;
        line-height: 36px;
        border-width: 0; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"],
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"],
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"], .tablet
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"],
        .desktop
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"],
        .largeDesktop
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"], .tablet
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"],
        .desktop
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"],
        .largeDesktop
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"] {
          padding: 0 20px;
          line-height: 48px; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"]::-webkit-input-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"]::-webkit-input-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"]::-webkit-input-placeholder {
          color: #c6c6c6; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"]::-moz-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"]::-moz-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"]::-moz-placeholder {
          color: #c6c6c6; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"]:-ms-input-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"]:-ms-input-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"]:-ms-input-placeholder {
          color: #c6c6c6; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="text"]:-moz-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="tel"]:-moz-placeholder,
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput input[type="email"]:-moz-placeholder {
          color: #c6c6c6; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"] {
        display: block;
        /*
					min-width: 200px;
					margin: 0 auto;
					padding: 0 30px;
					color: $campusContactus_enquiryForm_submitBtn_color;
					line-height: 72px;
					background-color: $campusContactus_enquiryForm_submitBtn_bgColor;
					border-width: 0;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						min-width: 300px;
						line-height: 90px;
					}
					*/
        min-width: 80px;
        margin: 0 auto;
        padding: 8px 16px;
        background-color: transparent;
        font-family: "Oswald", Arial, Helvetica, "微軟正黑體", "Microsoft JhengHei", "Heiti TC", "LiHei Pro", "新細明體", PMingLiU, sans-serif;
        font-size: 16px;
        line-height: 1.3em;
        color: #ffffff;
        text-align: center;
        text-transform: uppercase;
        border-color: #ffffff;
        border-style: dotted;
        border-width: 1px;
        transition: all 0.2s ease-out;
        cursor: pointer; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"],
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"],
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"] {
          min-width: 120px;
          padding: 12px 24px;
          border-width: 2px;
          line-height: 1.3em; }
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"] {
          font-size: 16px; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"],
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"] {
          font-size: 24px; }
        .deviceDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"]:hover, .deviceDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput button[type="submit"]:active {
          background-color: #ffffff;
          color: #5a9113; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput select {
        display: block;
        width: 100%;
        padding: 0 20px 0 10px;
        color: #000000;
        line-height: 36px;
        border-width: 0;
        background-image: url("../images/common/selectArrow.png");
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: right center;
        background-color: #ffffff; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput select,
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput select,
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput select {
          padding: 0 40px 0 20px;
          line-height: 48px;
          background-size: 40px; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea {
        display: block;
        width: 100%;
        height: 72px;
        padding: 0 10px;
        color: #000000;
        line-height: 24px;
        border-width: 0;
        resize: none; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea,
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea,
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea {
          height: 128px;
          padding: 10px 20px;
          line-height: 36px; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea::-webkit-input-placeholder {
          color: #c6c6c6; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea::-moz-placeholder {
          color: #c6c6c6; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea:-ms-input-placeholder {
          color: #c6c6c6; }
        .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput textarea:-moz-placeholder {
          color: #c6c6c6; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .captcha {
        display: block;
        width: 100%; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .captcha,
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .captcha,
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .captcha {
          height: 64px; }
      .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .reloadCaptchaBtn {
        display: block;
        width: 32px;
        height: 32px;
        position: absolute;
        right: 32px;
        top: 12px;
        background-image: url("../images/common/campus/sptContactusGeneralIcons.png");
        background-repeat: no-repeat;
        background-size: 100px;
        background-position: -20px -40px;
        border-style: solid;
        border-color: #ffffff;
        border-width: 6px; }
        .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .reloadCaptchaBtn,
        .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .reloadCaptchaBtn,
        .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .formInput .reloadCaptchaBtn {
          width: 48px;
          height: 48px;
          right: 50px;
          top: 20px;
          background-size: 200px;
          background-position: -40px -80px;
          border-width: 4px; }
    .veo_templateT13 .enquiryFormWrapper .enquiryForm .bottomLine {
      display: block;
      height: 1px;
      margin: 10px 30px;
      position: relative;
      background-color: #ffffff; }
      .tablet .veo_templateT13 .enquiryFormWrapper .enquiryForm .bottomLine,
      .desktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .bottomLine,
      .largeDesktop .veo_templateT13 .enquiryFormWrapper .enquiryForm .bottomLine {
        margin: 20px 50px; }

/* TEMPLATE T14 */
.veo_templateT14 .tabSection {
  padding: 30px 0 0; }
  .tablet .veo_templateT14 .tabSection,
  .desktop .veo_templateT14 .tabSection,
  .largeDesktop .veo_templateT14 .tabSection {
    padding: 50px 0 0; }
  .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn {
    display: block;
    height: 50px;
    position: relative;
    overflow: hidden;
    color: #006cb0;
    line-height: 50px;
    background-color: #e6b319; }
    .tablet .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn {
      padding: 0 50px; }
    .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn,
    .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn {
      display: none; }
    .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn.active {
      color: #8db0d2;
      background-color: #006cb0; }
      .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn.active:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn:before {
      content: "";
      display: block;
      height: 1px;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      background-color: #ffffff; }
    .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuBtn:after {
      content: "";
      display: block;
      width: 40px;
      height: 50px;
      margin: 0 auto;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/common/topBannerMoreArrow.png");
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: center center;
      transition: -webkit-transform 0.2s ease-out;
      transition: transform 0.2s ease-out;
      transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer {
    display: block;
    overflow: hidden;
    position: relative; }
    .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu {
      display: block;
      height: 100%;
      margin: 0;
      position: relative;
      overflow: hidden;
      transition: margin 0.2s ease-out; }
      .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu,
      .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu {
        height: 84px;
        margin: 0 !important;
        text-align: center;
        /*
							border-style: solid;
							border-color: $color_primary_color1;
							border-width: 0 0 6px;
							*/ }
      .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu:before,
      .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu:before {
        content: "";
        display: block;
        width: 100%;
        height: 6px;
        position: absolute;
        left: 0;
        bottom: 0;
        background-color: #006cb0; }
      .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption {
        display: block;
        height: 50px;
        position: relative;
        background-color: #006cb0; }
        .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption,
        .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption {
          display: inline-block;
          height: 84px;
          background-color: transparent; }
        .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption:before {
          content: "";
          display: block;
          height: 1px;
          position: absolute;
          left: 0;
          right: 0;
          top: 0;
          background-color: #ffffff; }
          .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption:before,
          .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption:before {
            display: none; }
        .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label {
          display: block;
          height: 50px;
          color: #8db0d2;
          line-height: 50px;
          cursor: pointer;
          overflow: hidden; }
          .tablet .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label {
            padding: 0 80px; }
          .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label,
          .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label {
            height: 84px;
            padding: 0 30px;
            line-height: 84px;
            white-space: nowrap;
            /*
									height: auto;
									margin: 0;
									padding: 2px 10px;
									font-size: 16px;
									line-height: 20px;
									*/ }
          .deviceDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label:hover, .deviceDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption label:active {
            color: #006cb0;
            background-color: transparent; }
        .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption input[type="radio"] {
          position: absolute;
          left: -9999px; }
          .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption input[type="radio"]:checked + label {
            color: #006cb0;
            background-color: #e6b319; }
            .desktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption input[type="radio"]:checked + label,
            .largeDesktop .veo_templateT14 .tabSection .tabMenuWrapper .tabMenuHolder .tabMenuContainer .tabMenu .itemOption input[type="radio"]:checked + label {
              background-color: transparent;
              border-style: solid;
              border-color: #e6b319;
              border-width: 0 0 6px; }
  .veo_templateT14 .tabSection .tabWrapper {
    max-width: 1300px;
    margin: 0 auto;
    position: relative; }
    .veo_templateT14 .tabSection .tabWrapper .tabItem {
      width: 100%; }
      .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper {
        padding: 20px 30px;
        border-style: solid;
        border-color: #f5f5f5;
        border-width: 2px 0 0; }
        .tablet .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper,
        .desktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper,
        .largeDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper {
          padding: 20px 10%; }
        .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper:first-child {
          border-width: 0; }
        .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper:nth-child(even) {
          background-color: #f5f5f5; }
        .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem {
          display: block;
          width: 100%;
          position: relative;
          overflow: hidden;
          text-align: left; }
          .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem.active .indicator:before {
            -webkit-transform: rotate(0);
                    transform: rotate(0); }
          .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem.active .indicator:after {
            -webkit-transform: rotate(0);
                    transform: rotate(0); }
          .deviceDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem:hover .indicator, .deviceDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem:active .indicator {
            background-color: #3e640d; }
          .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question {
            display: block;
            padding: 10px 30px 10px 0;
            color: #006cb0; }
            .tablet .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question,
            .desktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question,
            .largeDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .question {
              padding: 10px 50px 10px 0; }
          .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper {
            display: block;
            height: 0;
            padding: 0 30px 0 0;
            overflow: hidden;
            transition: height 0.2s ease-out; }
            .tablet .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper,
            .desktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper,
            .largeDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper {
              padding: 0 50px 0 0; }
            .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .answerWrapper .answer {
              display: block;
              color: #000000; }
          .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator {
            display: block;
            width: 20px;
            height: 20px;
            position: absolute;
            top: 10px;
            right: 0;
            border-radius: 20px;
            background-color: #5a9113;
            transition: all 0.2s ease-out; }
            .tablet .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator,
            .desktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator,
            .largeDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator {
              width: 40px;
              height: 40px;
              border-radius: 40px;
              -webkit-transform: scale(0.75);
                      transform: scale(0.75); }
            .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:before {
              content: "";
              display: block;
              width: 12px;
              height: 2px;
              position: absolute;
              left: 4px;
              top: 9px;
              background-color: #ffffff;
              border-radius: 2px;
              -webkit-transform: rotate(180deg);
                      transform: rotate(180deg);
              transition: -webkit-transform 0.2s ease-out;
              transition: transform 0.2s ease-out;
              transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
              .tablet .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:before,
              .desktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:before,
              .largeDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:before {
                width: 24px;
                height: 4px;
                left: 8px;
                top: 18px;
                border-radius: 4px; }
            .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:after {
              content: "";
              display: block;
              width: 12px;
              height: 2px;
              position: absolute;
              left: 4px;
              top: 9px;
              background-color: #ffffff;
              border-radius: 2px;
              -webkit-transform: rotate(90deg);
                      transform: rotate(90deg);
              transition: -webkit-transform 0.2s ease-out;
              transition: transform 0.2s ease-out;
              transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
              .tablet .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:after,
              .desktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:after,
              .largeDesktop .veo_templateT14 .tabSection .tabWrapper .tabItem .tabContent .faqItemWrapper .faqItem .indicator:after {
                width: 24px;
                height: 4px;
                left: 8px;
                top: 18px;
                border-radius: 4px; }

.veo_templateT14 .contactSection {
  padding: 30px 0 0;
  background-color: #e6b319; }
  .tablet .veo_templateT14 .contactSection,
  .desktop .veo_templateT14 .contactSection,
  .largeDesktop .veo_templateT14 .contactSection {
    margin: 10px 0;
    padding: 50px 0 0; }
  .veo_templateT14 .contactSection .contactWrapper .contactContent {
    max-width: 1300px;
    min-height: 160px;
    margin: 0 auto;
    padding: 0 30px 0 180px;
    text-align: left;
    background-image: url("../images/common/admission/houseBg.png");
    background-repeat: no-repeat;
    background-size: 170px;
    background-position: left top; }
    .tablet .veo_templateT14 .contactSection .contactWrapper .contactContent {
      padding: 0 50px 0 200px; }
    .desktop .veo_templateT14 .contactSection .contactWrapper .contactContent,
    .largeDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent {
      min-height: 320px;
      padding: 0 50px 0 400px;
      background-size: 340px; }
    .veo_templateT14 .contactSection .contactWrapper .contactContent .contactTitle {
      display: block;
      color: #ffffff; }
    .veo_templateT14 .contactSection .contactWrapper .contactContent .contactDesc {
      display: block;
      color: #ffffff; }
    .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn {
      display: inline-block;
      margin: 0 10px 0 0;
      position: relative;
      color: #ffffff;
      line-height: 24px;
      transition: all 0.2s ease-out; }
      .tablet .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn,
      .desktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn,
      .largeDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn {
        line-height: 36px; }
      .deviceDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:hover, .deviceDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:active {
        color: #006cb0; }
      .deviceDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:hover:after, .deviceDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:active:after {
        -webkit-transform: translate(10px, 0);
                transform: translate(10px, 0); }
      .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:after {
        content: "";
        display: block;
        width: 25px;
        height: 24px;
        position: absolute;
        right: -25px;
        top: 0;
        background-image: url("../images/common/moreWhiteArrow.png");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        transition: all 0.2s ease-out; }
        .tablet .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:after,
        .desktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:after,
        .largeDesktop .veo_templateT14 .contactSection .contactWrapper .contactContent .moreBtn:after {
          width: 50px;
          height: 36px;
          right: -50px; }

/* TEMPLATE T15 */
.veo_templateT15 .tableSection .tableTitle {
  display: block;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 30px;
  text-align: center;
  color: #006cb0; }
  .tablet .veo_templateT15 .tableSection .tableTitle,
  .desktop .veo_templateT15 .tableSection .tableTitle,
  .largeDesktop .veo_templateT15 .tableSection .tableTitle {
    padding: 20px 10%; }

.veo_templateT15 .tableSection .filterWrapper {
  margin: 0 auto;
  padding: 0; }
  .tablet .veo_templateT15 .tableSection .filterWrapper,
  .desktop .veo_templateT15 .tableSection .filterWrapper,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper {
    max-width: 1300px;
    margin: 10px auto;
    padding: 0 50px;
    overflow: hidden; }
  .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper {
    position: relative; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper,
    .desktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper {
      background-color: #ffffff;
      text-align: right;
      border-style: solid;
      border-color: #888888;
      border-width: 0 0 1px; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper.active .filterBtn:after,
    .desktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper.active .filterBtn:after,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper.active .filterBtn:after {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn {
      display: block;
      padding: 10px;
      position: relative;
      color: #000000;
      text-align: left;
      transition: all 0.2s ease-out; }
      .tablet .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn,
      .desktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn,
      .largeDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn {
        display: inline-block;
        padding: 0 20px 0 0;
        color: #006cb0;
        line-height: 40px;
        text-align: center; }
      .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn:hover, .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn:active {
        color: #e6b319; }
      .tablet .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn:after,
      .desktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn:after,
      .largeDesktop .veo_templateT15 .tableSection .filterWrapper .filterBtnWrapper .filterBtn:after {
        content: "";
        display: block;
        width: 20px;
        height: 40px;
        position: absolute;
        right: 0;
        top: 0;
        background-image: url("../images/common/selectArrow.png");
        background-repeat: no-repeat;
        background-size: 20px;
        background-position: right center;
        transition: all 0.2s ease-out; }
  .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper {
    margin-top: 0 !important; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper,
  .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper {
    position: relative;
    transition: margin 0.2s ease-out; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper.active,
  .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper.active,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper.active {
    margin-top: 0 !important; }
  .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder,
  .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder {
    padding: 10px 0;
    float: left;
    text-align: left; }
  .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder:before {
    display: block; }
  .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
    display: block;
    padding: 0 30px;
    position: relative;
    color: #ffffff; }
    .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
      height: 50px;
      line-height: 50px;
      background-color: #e6b319; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
    .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn {
      display: none; }
    .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn.active {
      background-color: #006cb0; }
      .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn.active:after {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg); }
    .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn:before {
      content: "";
      display: block;
      height: 1px;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      background-color: #ffffff; }
    .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionBtn:after {
      content: "";
      display: block;
      width: 40px;
      height: 50px;
      margin: 0 auto;
      position: absolute;
      right: 0;
      top: 0;
      background-image: url("../images/common/topBannerMoreArrow.png");
      background-repeat: no-repeat;
      background-size: 24px;
      background-position: center center;
      transition: -webkit-transform 0.2s ease-out;
      transition: transform 0.2s ease-out;
      transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
  .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer {
    display: block;
    overflow: hidden;
    position: relative; }
    .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer {
      background-color: #f5f5f5; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer,
    .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer {
      overflow: visible; }
    .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection {
      display: block;
      height: 100%;
      margin: 0;
      position: relative;
      overflow: hidden;
      transition: margin 0.2s ease-out; }
      .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection {
        text-align: left; }
      .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection,
      .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection,
      .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection {
        margin-top: 0 !important;
        overflow: visible; }
      .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption {
        display: block;
        max-width: 360px;
        margin: 10px auto;
        padding: 0 30px;
        position: relative;
        /*
								&:last-child
								{
									.tablet &,
									.desktop &,
									.largeDesktop &
									{
										position: absolute;
										top: -10px;
										right: 0;
										transform: translate(20px, 0) translate(100%, 0);
									}
								}
								*/ }
        .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption,
        .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption,
        .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption {
          width: 220px;
          margin: 4px 0;
          padding: 0;
          float: left; }
        .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
          display: block;
          padding: 0 0 0 40px;
          line-height: 30px;
          color: #000000;
          cursor: pointer;
          -webkit-tap-highlight-color: transparent; }
          .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label,
          .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label,
          .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label {
            width: 220px;
            height: 70px;
            overflow: hidden;
            padding: 5px 5px 5px 35px;
            line-height: 30px; }
          .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:hover:after, .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:active:after {
            -webkit-transform: scale(1);
                    transform: scale(1); }
          .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before {
            content: "";
            display: block;
            width: 24px;
            height: 24px;
            position: absolute;
            top: 4px;
            border-radius: 24px;
            border-style: solid;
            border-color: #c6c6c6;
            border-width: 2px; }
            .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before {
              left: 30px; }
            .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before,
            .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before,
            .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:before {
              left: 0;
              top: 9px; }
          .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after {
            content: "";
            display: block;
            width: 16px;
            height: 16px;
            position: absolute;
            top: 8px;
            -webkit-transform: scale(0);
                    transform: scale(0);
            background-color: #006cb0;
            border-radius: 20px;
            transition: -webkit-transform 0.2s ease-out;
            transition: transform 0.2s ease-out;
            transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out; }
            .mobile .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after {
              left: 34px; }
            .tablet .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after,
            .desktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after,
            .largeDesktop .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption label:after {
              left: 4px;
              top: 13px; }
        .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption input[type="radio"] {
          position: absolute;
          left: -9999px;
          -webkit-tap-highlight-color: transparent; }
          .veo_templateT15 .tableSection .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder .toggleSelectionContainer .toggleSelection .itemOption input[type="radio"]:checked + label:after {
            -webkit-transform: scale(1);
                    transform: scale(1); }
  .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper,
  .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper,
  .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper {
    padding: 20px 0 0;
    text-align: left;
    border-style: solid;
    border-color: #888888;
    border-width: 1px 0 0; }
  .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
    display: block;
    padding: 0 30px;
    position: relative;
    color: #000000; }
    .mobile .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
      height: 75px;
      line-height: 75px; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle,
    .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .appliedFilterTitle {
      display: inline-block;
      padding: 0 20px 0 0;
      height: auto;
      color: #000000;
      line-height: 40px; }
  .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn {
    display: block;
    margin: 0 auto;
    position: relative;
    color: #ffffff;
    transition: all 0.2s ease-out; }
    .mobile .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn {
      width: 100px;
      line-height: 40px;
      background-color: #006cb0; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn,
    .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn {
      display: inline-block;
      padding: 0 20px 0 0;
      height: auto;
      color: #006cb0;
      line-height: 40px; }
    .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn:hover, .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilterWrapper .filterResetBtn:active {
      color: #e6b319; }
  .veo_templateT15 .tableSection .filterWrapper .appliedFilters {
    display: block;
    padding: 10px 0; }
    .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilters,
    .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters,
    .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters {
      text-align: left; }
    .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle {
      display: inline-block;
      margin: 4px;
      padding: 4px 26px 4px 10px;
      position: relative;
      line-height: 20px;
      color: #888888;
      border-style: solid;
      border-color: #888888;
      border-width: 1px;
      border-radius: 4px; }
      .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle,
      .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle,
      .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle {
        margin: 4px 4px 4px 0;
        padding: 4px 26px 4px 0;
        border-width: 0; }
      .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle .removeFilterBtn {
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 4px;
        top: 4px;
        background-image: url("../images/common/campus/filterClose.png");
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center center;
        transition: all 0.2s ease-out; }
        .tablet .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle .removeFilterBtn,
        .desktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle .removeFilterBtn,
        .largeDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle .removeFilterBtn {
          top: 9px; }
        .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle .removeFilterBtn:hover, .deviceDesktop .veo_templateT15 .tableSection .filterWrapper .appliedFilters .filterTitle .removeFilterBtn:active {
          -webkit-transform: scale(1.2);
                  transform: scale(1.2); }

.veo_templateT15 .tableSection .tableWrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px; }
  .tablet .veo_templateT15 .tableSection .tableWrapper,
  .desktop .veo_templateT15 .tableSection .tableWrapper,
  .largeDesktop .veo_templateT15 .tableSection .tableWrapper {
    padding: 0 10%; }
  .veo_templateT15 .tableSection .tableWrapper .tableCaption {
    display: block;
    padding: 0 0 30px; }
  .veo_templateT15 .tableSection .tableWrapper .tableIndex {
    display: block; }
    .veo_templateT15 .tableSection .tableWrapper .tableIndex span {
      display: inline-block;
      padding: 0 20px;
      vertical-align: top; }
  .veo_templateT15 .tableSection .tableWrapper table {
    width: 100%; }
    .mobile .veo_templateT15 .tableSection .tableWrapper table {
      margin: 20px 0 0; }
    .tablet .veo_templateT15 .tableSection .tableWrapper table thead tr,
    .desktop .veo_templateT15 .tableSection .tableWrapper table thead tr,
    .largeDesktop .veo_templateT15 .tableSection .tableWrapper table thead tr {
      display: table-row; }
    .veo_templateT15 .tableSection .tableWrapper table tr {
      display: none;
      /*
					.mobile &
					{
						display: block;
					}
					*/
      /*
					&:nth-child(even)
					{
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							background-color: $color_wildSand;
						}
					}
					*/ }
      .veo_templateT15 .tableSection .tableWrapper table tr:first-child th {
        border-style: solid;
        border-width: 0 0 2px; }
        .veo_templateT15 .tableSection .tableWrapper table tr:first-child th.campus {
          border-color: #5a9113; }
        .veo_templateT15 .tableSection .tableWrapper table tr:first-child th.bilingual {
          border-color: #e6b319; }
        .veo_templateT15 .tableSection .tableWrapper table tr:first-child th.trilingual {
          border-color: #006cb0; }
      .mobile .veo_templateT15 .tableSection .tableWrapper table tr.active {
        display: block;
        margin: 10px 0;
        box-shadow: 2px 2px 2px 2px #c6c6c6; }
      .tablet .veo_templateT15 .tableSection .tableWrapper table tr.active,
      .desktop .veo_templateT15 .tableSection .tableWrapper table tr.active,
      .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr.active {
        display: table-row; }
      .tablet .veo_templateT15 .tableSection .tableWrapper table tr.even,
      .desktop .veo_templateT15 .tableSection .tableWrapper table tr.even,
      .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr.even {
        background-color: #f5f5f5; }
      .tablet .veo_templateT15 .tableSection .tableWrapper table tr.langRow,
      .desktop .veo_templateT15 .tableSection .tableWrapper table tr.langRow,
      .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr.langRow {
        background-color: transparent; }
      .veo_templateT15 .tableSection .tableWrapper table tr.langRow th.bilingual {
        color: #e6b319; }
      .veo_templateT15 .tableSection .tableWrapper table tr.langRow th.trilingual {
        color: #006cb0; }
      .mobile .veo_templateT15 .tableSection .tableWrapper table tr.headRow {
        position: absolute;
        top: -9999px;
        left: -9999px; }
      .veo_templateT15 .tableSection .tableWrapper table tr.headRow th {
        display: none;
        color: #ffffff;
        background-color: #006cb0; }
        .tablet .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.active,
        .desktop .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.active,
        .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.active {
          display: table-cell; }
        .veo_templateT15 .tableSection .tableWrapper table tr.headRow th:nth-child(1) {
          background-color: #e6b319; }
        .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.campus {
          background-color: #5a9113; }
        .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.bilingual {
          background-color: #e6b319; }
        .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.trilingual {
          background-color: #006cb0; }
        .tablet .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.mobileHead,
        .desktop .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.mobileHead,
        .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr.headRow th.mobileHead {
          display: none; }
      .veo_templateT15 .tableSection .tableWrapper table tr th, .veo_templateT15 .tableSection .tableWrapper table tr td {
        padding: 20px 6px; }
      .veo_templateT15 .tableSection .tableWrapper table tr th {
        vertical-align: middle; }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr th {
          display: block; }
      .veo_templateT15 .tableSection .tableWrapper table tr td {
        display: none;
        vertical-align: middle;
        color: #000000;
        /*
						&:nth-child(odd)
						{
							.mobile &
							{
								background-color: $color_wildSand;
							}
						}
						*/ }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr td {
          width: 100%;
          border-style: solid;
          border-color: #f5f5f5;
          border-width: 0 2px; }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr td:last-child {
          border-width: 0 2px 2px; }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr td.active {
          display: table; }
        .tablet .veo_templateT15 .tableSection .tableWrapper table tr td.active,
        .desktop .veo_templateT15 .tableSection .tableWrapper table tr td.active,
        .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr td.active {
          display: table-cell; }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr td.even {
          background-color: #f5f5f5; }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr td:before {
          content: attr(data-title);
          display: table-cell;
          width: 50%;
          padding: 10px 4px;
          text-align: right;
          vertical-align: middle; }
        .mobile .veo_templateT15 .tableSection .tableWrapper table tr td span {
          display: table-cell;
          width: 50%;
          padding: 10px 4px;
          vertical-align: middle; }
        .veo_templateT15 .tableSection .tableWrapper table tr td.campus {
          color: #006cb0; }
          .mobile .veo_templateT15 .tableSection .tableWrapper table tr td.campus {
            color: #ffffff;
            background-color: #5a9113;
            border-color: #5a9113; }
          .mobile .veo_templateT15 .tableSection .tableWrapper table tr td.campus:before {
            display: none; }
          .veo_templateT15 .tableSection .tableWrapper table tr td.campus a {
            color: #006cb0;
            transition: all 0.2s ease-out; }
            .mobile .veo_templateT15 .tableSection .tableWrapper table tr td.campus a {
              color: #ffffff; }
            .deviceDesktop .veo_templateT15 .tableSection .tableWrapper table tr td.campus a:hover, .deviceDesktop .veo_templateT15 .tableSection .tableWrapper table tr td.campus a:active {
              color: #e6b319; }
          .veo_templateT15 .tableSection .tableWrapper table tr td.campus span {
            width: 100%; }
        .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead {
          display: block;
          vertical-align: middle; }
          .tablet .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead,
          .desktop .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead,
          .largeDesktop .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead {
            display: none; }
          .mobile .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead:before {
            display: none; }
          .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead.mobileHeadBilingual {
            color: #ffffff;
            background-color: #006cb0;
            border-color: #006cb0; }
          .veo_templateT15 .tableSection .tableWrapper table tr td.mobileHead.mobileHeadTrilingual {
            color: #ffffff;
            background-color: #e6b319;
            border-color: #e6b319; }
  .veo_templateT15 .tableSection .tableWrapper .tableRemarks {
    padding: 20px 0 10px;
    text-align: left; }
    .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksCaption {
      display: block;
      margin: 10px 0; }
    .veo_templateT15 .tableSection .tableWrapper .tableRemarks .remarksDesc {
      display: block; }

.veo_templateT15 .tableSection.kindergartenTimetable {
  margin: 0 0 30px; }
  .desktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow,
  .largeDesktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow {
    width: 660px; }
  .tablet .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow:before,
  .desktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow:before,
  .largeDesktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow:before {
    content: attr(data-title); }
  .desktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol,
  .largeDesktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol {
    width: 440px; }
  .tablet .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol:before,
  .desktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol:before,
  .largeDesktop .veo_templateT15 .tableSection.kindergartenTimetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol:before {
    content: attr(data-title); }

.veo_templateT15 .tableSection.playgroupTimetable {
  margin: 0 0 30px; }
  .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper .tableIndex {
    margin: 10px 0; }
  .mobile .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow {
    position: absolute;
    top: -9999px;
    left: -9999px; }
  .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th {
    display: none;
    color: #ffffff;
    background-color: #006cb0; }
    .tablet .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th.active,
    .desktop .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th.active,
    .largeDesktop .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th.active {
      display: table-cell; }
    .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th:nth-child(1) {
      background-color: #e6b319; }
    .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th.campus {
      background-color: #5a9113; }
    .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th.bilingual {
      background-color: #e6b319; }
    .veo_templateT15 .tableSection.playgroupTimetable .tableWrapper table tr.headRow th.trilingual {
      background-color: #006cb0; }

.veo_templateT15 .tableSection.admission2Timetable {
  margin: 0 0 30px; }
  .desktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow,
  .largeDesktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow {
    width: 660px; }
  .tablet .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow:before,
  .desktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow:before,
  .largeDesktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterRow:before {
    content: attr(data-title); }
  .desktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol,
  .largeDesktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol {
    width: 440px; }
  .tablet .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol:before,
  .desktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol:before,
  .largeDesktop .veo_templateT15 .tableSection.admission2Timetable .filterWrapper .toggleSelectionWrapper .toggleSelectionHolder.filterCol:before {
    content: attr(data-title); }

/* TEMPLATE SEARCH_RESULT */
.veo_template_searchResult .searchBox {
  display: block;
  max-width: 1200px;
  margin: 0 auto 10px;
  padding: 10px 0;
  position: relative;
  color: #000000;
  background-color: #c6c6c6; }
  .tablet .veo_template_searchResult .searchBox {
    padding: 20px 0; }
  .veo_template_searchResult .searchBox .searchBoxInputWrapper {
    display: block;
    margin: 0 92px 0 30px;
    position: relative; }
    .veo_template_searchResult .searchBox .searchBoxInputWrapper input[type=text] {
      display: block;
      width: 100%;
      height: 60px;
      padding: 0 10px;
      border-width: 0; }
  .veo_template_searchResult .searchBox .searchBtn {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    right: 30px;
    top: 10px;
    background-color: #ffffff; }
    .tablet .veo_template_searchResult .searchBox .searchBtn {
      top: 20px; }
    .veo_template_searchResult .searchBox .searchBtn:before {
      content: "";
      display: block;
      width: 40px;
      height: 40px;
      position: absolute;
      left: 10px;
      top: 10px;
      background-image: url("../images/common/sptMenuGeneralIcons.png");
      background-repeat: no-repeat;
      background-size: 240px;
      background-position: -200px center; }

.veo_template_searchResult .searchContent {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px 30px;
  text-align: left; }
  .tablet .veo_template_searchResult .searchContent,
  .desktop .veo_template_searchResult .searchContent,
  .largeDesktop .veo_template_searchResult .searchContent {
    padding: 0 50px 50px; }
  .veo_template_searchResult .searchContent .searchheading {
    color: #000000; }
    .veo_template_searchResult .searchContent .searchheading .searchheadingHighlight {
      color: #006cb0; }
  .veo_template_searchResult .searchContent .summary {
    color: #888888; }
  .veo_template_searchResult .searchContent .results .result_block,
  .veo_template_searchResult .searchContent .results .result_altblock {
    padding: 10px 0;
    position: relative; }
    .tablet .veo_template_searchResult .searchContent .results .result_block,
    .desktop .veo_template_searchResult .searchContent .results .result_block,
    .largeDesktop .veo_template_searchResult .searchContent .results .result_block, .tablet
    .veo_template_searchResult .searchContent .results .result_altblock,
    .desktop
    .veo_template_searchResult .searchContent .results .result_altblock,
    .largeDesktop
    .veo_template_searchResult .searchContent .results .result_altblock {
      padding: 20px 0; }
    .veo_template_searchResult .searchContent .results .result_block .result_index,
    .veo_template_searchResult .searchContent .results .result_altblock .result_index {
      color: #006cb0;
      position: absolute;
      right: 100%;
      top: 10px;
      -webkit-transform: translate(14px, 0);
              transform: translate(14px, 0); }
      .tablet .veo_template_searchResult .searchContent .results .result_block .result_index,
      .desktop .veo_template_searchResult .searchContent .results .result_block .result_index,
      .largeDesktop .veo_template_searchResult .searchContent .results .result_block .result_index, .tablet
      .veo_template_searchResult .searchContent .results .result_altblock .result_index,
      .desktop
      .veo_template_searchResult .searchContent .results .result_altblock .result_index,
      .largeDesktop
      .veo_template_searchResult .searchContent .results .result_altblock .result_index {
        top: 20px;
        -webkit-transform: translate(20px, 0);
                transform: translate(20px, 0); }
    .veo_template_searchResult .searchContent .results .result_block .result_title,
    .veo_template_searchResult .searchContent .results .result_altblock .result_title {
      color: #006cb0;
      padding: 0 0 0 20px; }
      .tablet .veo_template_searchResult .searchContent .results .result_block .result_title,
      .desktop .veo_template_searchResult .searchContent .results .result_block .result_title,
      .largeDesktop .veo_template_searchResult .searchContent .results .result_block .result_title, .tablet
      .veo_template_searchResult .searchContent .results .result_altblock .result_title,
      .desktop
      .veo_template_searchResult .searchContent .results .result_altblock .result_title,
      .largeDesktop
      .veo_template_searchResult .searchContent .results .result_altblock .result_title {
        padding: 0 0 0 30px; }
      .veo_template_searchResult .searchContent .results .result_block .result_title a,
      .veo_template_searchResult .searchContent .results .result_altblock .result_title a {
        color: #006cb0; }
    .veo_template_searchResult .searchContent .results .result_block .result_path,
    .veo_template_searchResult .searchContent .results .result_altblock .result_path {
      overflow: hidden;
      text-overflow: ellipsis;
      color: #006cb0;
      padding: 0 0 0 20px; }
      .tablet .veo_template_searchResult .searchContent .results .result_block .result_path,
      .desktop .veo_template_searchResult .searchContent .results .result_block .result_path,
      .largeDesktop .veo_template_searchResult .searchContent .results .result_block .result_path, .tablet
      .veo_template_searchResult .searchContent .results .result_altblock .result_path,
      .desktop
      .veo_template_searchResult .searchContent .results .result_altblock .result_path,
      .largeDesktop
      .veo_template_searchResult .searchContent .results .result_altblock .result_path {
        padding: 0 0 0 30px; }
      .veo_template_searchResult .searchContent .results .result_block .result_path a,
      .veo_template_searchResult .searchContent .results .result_altblock .result_path a {
        color: #006cb0; }
    .veo_template_searchResult .searchContent .results .result_block .context,
    .veo_template_searchResult .searchContent .results .result_altblock .context {
      color: #000000;
      padding: 0 0 0 20px; }
      .tablet .veo_template_searchResult .searchContent .results .result_block .context,
      .desktop .veo_template_searchResult .searchContent .results .result_block .context,
      .largeDesktop .veo_template_searchResult .searchContent .results .result_block .context, .tablet
      .veo_template_searchResult .searchContent .results .result_altblock .context,
      .desktop
      .veo_template_searchResult .searchContent .results .result_altblock .context,
      .largeDesktop
      .veo_template_searchResult .searchContent .results .result_altblock .context {
        padding: 0 0 0 30px; }
  .veo_template_searchResult .searchContent .result_pages {
    text-align: center; }
    .veo_template_searchResult .searchContent .result_pages a {
      color: #000000; }
      .veo_template_searchResult .searchContent .result_pages a.arrow {
        color: #006cb0; }
    .veo_template_searchResult .searchContent .result_pages span.active {
      color: #006cb0; }

/* POPUP */
.popup {
  display: none;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.9);
  /*
	.itemDetails
	{
		width: 100%;
		background-color: rgba(0, 255, 0, 1);
		position: absolute;
		.tablet &,
		.desktop &,
		.largeDesktop &
		{
			width: 765px;
			height: 735px;
			padding: 0 0 0 525px;
			left: 50%;
			top: 20px;
			transform: translate(-50%, 0);
		}
		.mobile &
		{
			min-height: 100%;
		}
		.material
		{
			position: relative;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				margin: 10px 12px;
			}
			.title
			{
				display: none;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					display: block;
				}
			}
			.thumbnail
			{
				display: block;
				width: 75px;
				height: 75px;
				position: absolute;
				left: 12px;
				top: 12px;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					left: 0;
					top: 24px;
				}
				img
				{
					display: block;
					width: 100%;
				}
			}
			.message
			{
				display: block;
				min-height: 100px;
				margin: 0 0 0 100px;
				padding: 12px 12px 0 0;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					min-height: 80px;
					margin: 0 0 0 85px;
					padding: 4px 0 0;
				}
				.title
				{
					display: block;
				}
				.desc
				{
					display: block;
				}
			}
		}
		.audience
		{
			display: none;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				display: block;
				margin: 10px 12px;
			}
			.title
			{
				display: block;
			}
			.desc
			{
				display: block;
			}
		}
		.outline
		{
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				margin: 10px 12px;
			}
			.title
			{
				display: none;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					display: block;
				}
			}
			.desc
			{
				display: block;
				padding: 0 12px;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					padding: 0;
				}
				&.scrollPane
				{
					width: auto;
					height: auto;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						height: 128px;
					}
					.jspVerticalBar
					{
						width: 8px;
					}
					.jspTrack
					{
						background-color: #ffe6d9;
					}
					.jspDrag
					{
						background-color: #f75100;
					}
				}
			}
		}
		.gallery
		{
			margin: 12px 0;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				width: 525px;
				height: 735px;
				margin: 0;
				position: absolute;
				top: 0;
				left: 0;
			}
			.poster
			{
				padding: 0 0 140vw 0;
				position: relative;
				outline: none;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					padding: 0 0 735px 0;
				}
				img
				{
					display: block;
					width: 100%;
					position: absolute;
					top: 50%;
					left: 0;
					transform: translate(0, -50%);
				}
			}
			.arrow
			{
				z-index: 9;
				display: block;
				width: 45px;
				height: 45px;
				position: absolute;
				top: 50%;
				background-image: url("../images/common/imgGalleryArrowM2x.png");
				background-repeat: no-repeat;
				background-position: 0 0;
				background-size: 100%;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					width: 30px;
					height: 30px;
					top: 103%;
					background-image: url("../images/common/imgGalleryArrow.png");
					background-size: 20px;
				}
				&:hover,
				&:active
				{
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						background-position: 4px 0;
					}
					&.prev
					{
						.mobile &
						{
							transform: translate(-4px, -50%) rotate(180deg);
						}
					}
					&.next
					{
						.mobile &
						{
							transform: translate(4px, -50%);
						}
					}
				}
				&.prev
				{
					left: 0;
					transform: translate(0, -50%) rotate(180deg);
					transition: transform 0.2s ease-out;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						left: 200px;
						transition: background-position 0.2s ease-out;
					}
				}
				&.next
				{
					right: 0;
					transform: translate(0, -50%);
					transition: transform 0.2s ease-out;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						right: 200px;
						transition: background-position 0.2s ease-out;
					}
				}
			}
		}
		.galleryPaging
		{
			display: none;
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				display: block;
				text-align: center;
				position: absolute;
				top: 103%;
				left: 262px;
				transform: translate(-50%, -50%);
			}
		}
		.spec
		{
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				margin: 10px 12px;
			}
			.title
			{
				display: none;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					display: block;
				}
			}
			.desc
			{
				.info
				{
					display: block;
					height: 42px;
					margin: 12px;
					position: relative;
					background-color: #ffe6d9;
					border-radius: 4px;
					border-style: solid;
					border-color: #ffb791;
					border-width: 1px;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						height: 37px;
						margin: 10px 0;
					}
					span
					{
						display: inline-block;
						height: 40px;
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							height: 34px;
						}
					}
				}
				a.info
				{
					padding: 0 40px 0 0;
					transition: background-color 0.2s ease-out;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						padding: 0 35px 0 0;
					}
					&:hover,
					&:active
					{
						background-color: darken(#ffe6d9, 5%);
						&:after
						{
							background-color: darken(#d54600, 5%);
						}
					}
					&:after
					{
						content: "→";
						display: block;
						width: 40px;
						height: 40px;
						position: absolute;
						right: 0;
						top: 0;
						background-color: #d54600;
						border-radius: 0 4px 4px 0;
						color: #fff;
						transition: background-color 0.2s ease-out;
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							width: 35px;
							height: 35px;
						}
					}
				}

				.download
				{
					display: block;
					height: 42px;
					margin: 12px;
					position: relative;
					background-color: #f75100;
					border-radius: 4px;
					transition: background-color 0.2s ease-out;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						height: 37px;
						margin: 10px 0;
						//padding: 0 24px 0 0;
						padding: 0 37px 0 0;
					}
					&:hover,
					&:active
					{
						background-color: darken(#f75100, 5%);
						&:after
						{
							background-color: darken(#d54600, 5%);
						}
					}
					&:after
					{
						content: "→";
						display: block;
						width: 42px;
						height: 42px;
						position: absolute;
						right: 0;
						top: 0;
						line-height: 40px;
						background-color: #d54600;
						border-radius: 0 4px 4px 0;
						transition: background-color 0.2s ease-out;
						.tablet &,
						.desktop &,
						.largeDesktop &
						{
							width: 37px;
							height: 37px;
							line-height: 33px;
						}
					}
				}
			}
			.remarks
			{
				display: block;
				text-decoration: underline;
				&:hover,
				&:active
				{
					text-decoration: none;
				}
			}
		}
		.printBtn
		{
			display: block;
			width: 30px;
			height: 30px;
			margin: 10px 0 10px 12px;
			background-image: url("../images/common/imgPrint.png");
			background-repeat: no-repeat;
			background-position: center center;
			background-size: 100%;
			transition: background-color 0.2s ease-out;
			&:hover,
			&:active
			{
				background-color: #eee;
			}
		}
		.related
		{
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				width: 216px;
				margin: 10px 12px;
				position: absolute;
				right: 0;
				bottom: 0;
			}
			.title
			{
				table
				{
					display: block;
					width: 100%;
					margin: 10px 0;
					padding: 0 12px;
					border-width: 0;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						padding: 0;
					}
					td
					{
						border-width: 0;
						&.text
						{
							padding: 0 10px;
							white-space: nowrap;
							.tablet &,
							.desktop &,
							.largeDesktop &
							{
								padding: 0 10px 0 0;
							}
						}
						&.throughLine
						{
							width: 50%;
							position: relative;
							&:after
							{
								content: "";
								display: block;
								width: 100%;
								height: 1px;
								position: absolute;
								left: 50%;
								top: 50%;
								background-color: #4d4d4d;
								transform: translate(-50%, -50%);
							}
							&.left
							{
								.tablet &,
								.desktop &,
								.largeDesktop &
								{
									width: 0;
								}
							}
							&.right
							{
								.tablet &,
								.desktop &,
								.largeDesktop &
								{
									width: 100%;
								}
							}
						}
					}
				}
			}
			.desc
			{
				display: block;
				margin: 0 12px;
				.tablet &,
				.desktop &,
				.largeDesktop &
				{
					margin: 0;
				}
				&.scrollPane
				{
					width: auto;
					height: auto;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						height: 128px;
					}
					.jspVerticalBar
					{
						width: 8px;
					}
					.jspTrack
					{
						background-color: #ffe6d9;
					}
					.jspDrag
					{
						background-color: #f75100;
					}
				}
				.relatedMaterial
				{
					display: block;
					width: 50%;
					float: left;
					position: relative;
					transition: background-color 0.2s ease-out;
					.tablet &,
					.desktop &,
					.largeDesktop &
					{
						width: auto;
						float: none;
						margin: 10px 0;
					}
					&:hover,
					&:active
					{
						background-color: #eee;
					}
					.thumbnail
					{
						display: block;
						width: 45px;
						height: 45px;
						position: absolute;
						left: 0;
						top: 0;
						img
						{
							display: block;
							width: 100%;
						}
					}
					.message
					{
						display: block;
						min-height: 49px;
						margin: 0 0 0 49px;
						padding: 0 4px 0 0;
						.title
						{
							display: block;
						}
						.desc
						{
							display: block;
							margin: 0
						}
					}
				}
			}
		}
	}
	*/ }
  .popup .maskClose {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0; }
  .popup .popupInnerWrapper {
    position: relative;
    margin: 100px 0 50px; }
    .popup .popupInnerWrapper .content {
      padding: 10px 0; }
      .tablet .popup .popupInnerWrapper .content,
      .desktop .popup .popupInnerWrapper .content,
      .largeDesktop .popup .popupInnerWrapper .content {
        padding: 20px 50px; }
  .popupOpen .popup {
    display: block;
    height: 100%;
    overflow-y: auto; }
  .popup .btnClose {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: -40px;
    background-image: url("../images/common/menuCloseBtn.png");
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center center;
    /*
		width: 40px;
		height: 40px;
		position: absolute;
		top: 0;
		right: 0;
		background-repeat: no-repeat;
		background-size: 100%;
		transition: transform 0.2s ease-out;
		.tablet &,
		.desktop &,
		.largeDesktop &
		{
			left: 50%;
			transform: translate(362px, 0);
		}
		&:hover,
		&:active
		{
			transform: rotate(90deg);
			.tablet &,
			.desktop &,
			.largeDesktop &
			{
				transform: translate(362px, 0) rotate(90deg);
			}
		}
		*/ }

.popup .content {
  max-width: 1300px;
  margin: 0 auto; }
  .popup .content .youtubeWrapper {
    width: 100%;
    padding: 0 0 56.25%;
    position: relative;
    overflow: hidden; }
    .popup .content .youtubeWrapper .youtube {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }
  .popup .content .youkuWrapper {
    width: 100%;
    padding: 0 0 56.25%;
    position: relative;
    overflow: hidden; }
    .popup .content .youkuWrapper .youku {
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0; }

@charset "UTF-8";
/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../images/common/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick.eot");
  src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }
  
.videoInsert {
    max-width: 100%;
    height: auto;
}  
  
