/*GLOBAL CHANGES*/

/*use google font "Lato" instead of Avenir*/
body {font-family: 'Lato', sans-serif;}

/*Changes font-weight across site*/
p, li, th, td {
  font-weight: 400;
  }

/* Rem change to contain page after 1024px */
@media (min-width: 1024px) {
    .inner{ max-width: 70rem;}       
}

/*table helper class for wide tables (reduces padding)*/
.small-padding th,.small-padding td{
    padding: 1rem;
}

/*responsive table columns (td) below 600px*/

@media all and (max-width:600px){
    table{
        width:100%;
    }
    
    td{
        display:block;
        width:100%;
    }
    
    tr{
        display:block;
    }
    
    tr tr{
        margin-bottom:0;
    }
}

/*darken input fields*/
input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]), select, textarea{
	color: #666;
}
::-webkit-input-placeholder {
   color: #666;
}
:-moz-placeholder { /* Firefox 18- */
   color: #666;  
}
::-moz-placeholder {  /* Firefox 19+ */
   color: #666;  
}
:-ms-input-placeholder {  
   color: #666;  
}


.filter form, .course-finder-module form {
    overflow: inherit;
}

/*Video wrapper for video embed*/
.videoWrapper {
	position: relative;
	padding-bottom: 56%; /* 16:9 */
	padding-top: 0;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/*show all tabs on print*/
@media print {
    .tab-container {
        display:block !important;
    }
}

/*allow panel content to be right aligned*/
@media (min-width: 768px) {
    .panel.r-align {
      text-align: right; }
}

/*--Panels: Additonal CSS to make list font color change with panel selection--*/
.bg--red ul.list-style li{
  	color: #ffffff;
}

.bg--red ul.list-style li span{
    color: #ffffff;
    font-weight: 300;
}

.bg--grey-d ul.list-style li{
  	color: #ffffff;
}

.bg--grey-d ul.list-style li span{
    color: #ffffff;
    font-weight: 300;
}

.bg--grey ul.list-style li{
  	color: #ffffff;
}

.bg--grey ul.list-style li span{
    color: #ffffff;
    font-weight: 300;
}

.bg--grey-md ul.list-style li span{
    color: #ffffff;
    font-weight: 300;
}

.bg--grey-ml ul.list-style li span{
    font-weight: 300;
}


/*amendments to Header Logo for white QUB Logo*/
.header__logo {
  background: transparent;
}

body > header {
    margin-right: 0rem;
}


@media (min-width: 769px) {
.header__logo {
  background: transparent;
  width: 260px;
  margin: 15px 0 0 0;
  padding: 0 0 0 25px; }
  
}

/* Make Country ID appear on mobile */

.header__links li:nth-child(4):last-child {
    display: inline-block;
}
  

/* Header Drawers CSS added 02.02.16 */


/*--hide login drawer--*/
li.login-drawer {
    display: none;
}

/*--ql-drawer--*/
.ql-area .inner {
    padding: 0 0 0 2rem;
}

.ql-area {
    position: relative;
    z-index: 100;
    height: 100%;
    padding: 1.25rem 2rem;
    background: #efefef;
    display:none;
    border-bottom: 4px solid #c41030;
    color: #58595b;
}

#ql-margin{
 	margin-bottom: 1rem; 
    padding: 0; 
}

.ql-area button{
padding: 0.85rem 4.5rem;
}

#quick-links .column.ql-header{
   	width: 80%;
    padding: 0;
    margin-bottom: 1rem;
  }

button.ql-icon {
    padding: 1.75rem;
    color: #fff;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 2.75rem;
    text-transform: uppercase;
    border: none;
    margin-left: 0;
}

button.ql-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

button.ql-icon.active {
    background: #EFEFEF;
    border-radius: 0;
}

button.ql__toggle {
    position: absolute;
    right: 0.2rem;
    top: 0;
    z-index: 100;
    display: block;
    background: transparent;
    border: none;
    float: right;
    padding: 0;
}

button.ql__toggle:before {
    content: 'x';
    font-size: 2.2rem;
    color: #c41030;
}

@media (max-width: 767px) {
button.ql__toggle {
    width: 10%;
    top: -1.2rem;
}
}

@media (max-width: 512px){
button.ql__toggle:before {
    font-size: 1.8rem;
}
}

h2.quick-links{
    font-size: 1.125em;
    font-weight: 700;
    margin-bottom: 0.25rem;
    margin-top: 1.25rem;
    color: #c41030;
    text-transform: uppercase;
    line-height: 1.25em;
    font-style: normal;
    padding: 0;
}

h5.quick-links{
 	font-size: 1em;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
}

#quick-links .column .subheading {
    width: 50%;
    padding: 0;
    margin: 0;
}

#quick-links ul{
    padding-left: 0;
}

#quick-links ul li {
    list-style-type: none;
}

/*--Search Drawer--*/

.search-box-area {
    position: relative;
    z-index: 100;
    padding: 1.25rem 2rem;
    background: #efefef;
    display:none;
    border-bottom: 4px solid #c41030;
}

.search-box-area button{
padding: 0.85rem 4.5rem;
}

button.search-icon {
    padding: 1.75rem;
    color: #fff;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 2.75rem;
    text-transform: uppercase;
    border: none;
    margin-left: 0;
}

button.search-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

button.search-icon.active {
    background: #EFEFEF;
    border-radius: 0;
}

#search {
    margin-top: 0;
}

#search .column{
    margin-bottom: 1.75rem;
}

button.search__toggle {
    position: absolute;
    right: 0.2rem;
    top: 0;
    z-index: 100;
    display: block;
    background: transparent;
    border: none;
    float: right;
    padding: 0;
}

button.search__toggle:before {
    content: 'x';
    font-size: 2.2rem;
    color: #c41030;
}

#search .column.search-input {
    width: 80%;
}

#search .column.search-button {
    width: 20%;
}

h3.search-prompt{
    font-size: 1.75em;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.25em;
    font-style: normal;
    margin: 0;
    padding: 0;
    color: #58595b;
}

h2.search-title{
    font-size: 1.125em;
    font-weight: 700;
    margin-bottom: 0.25rem;
    margin-top: 1.25rem;
    color: #c41030;
    text-transform: uppercase;
    line-height: 1.25em;
    font-style: normal;
    padding: 0;
}

/*--Login Drawer--*/
.login-area {
    position: relative;
    z-index: 100;
    height: 100%;
    padding: 1.25rem 2rem;
    background: #efefef;
    border-bottom: 6px solid #c41030;
    display:none;
}

.login-area button{
padding: 0.85rem 4.5rem;
}

button.login-icon {
    padding: 1.75rem;
    color: #fff;
    font-size: 1.25em;
    font-weight: 500;
    line-height: 2.75rem;
    text-transform: uppercase;
    border: none;
    margin-left: 0;
}

button.login-icon:hover {
    background: rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

button.login-icon.active {
    background: #EFEFEF;
    border-radius: 0;
}

button.login-icon.active span{
    color: #c41030;
}

button.login__toggle {
    position: absolute;
    right: 0.2rem;
    top: 0;
    z-index: 100;
    display: block;
    background: transparent;
    border: none;
    float: right;
    padding: 0;
}

button.login__toggle:before {
    content: 'x';
    font-size: 2.2rem;
    color: #c41030;
}

/*--CSS Additions for Header Login Area --*/

.login-area .inner {
    padding: 1rem 1.75rem 2rem 1.75rem;
}

.column .sign-in{
    padding: 0.5rem 2rem 0 0;
}

.column .sign-in:last-child{
    border-right: 1px solid #000;
}

.column .register{
    border-left: 1px solid #dedede;    
}

/*--header-drawer media queries--*/
@media (max-width: 640px) {

    button.login-icon span {
        display: none;
    }
  
}

@media (max-width: 512px) {
  
    #search .column {
        margin-bottom: 1.2rem;
    }

    button.search-icon, button.login-icon, button.ql-icon{
        padding: 1.25rem;
        line-height: 2.5rem;
    } 

    h3.search-prompt{
        font-size: 1.4em;
    }

    button.search__toggle:before{
            font-size: 1.8rem;
    }

}

@media (max-width: 767px){
    
    #search .column.search-input {
        width: 100%;
    }

    #search .column.search-button {
        width: 100%;
    }

    .search-box-area button {
        width: 100%;
        margin: 0;
    }

    button.search__toggle{
        width: 10%;
        top: -1.2rem;    
    }
     
}

@media (min-width: 768px) and (max-width: 959px) {
    
    #search .column {
        width: 100%;
    }

    #search .column.search-input {
        width: 65%;
    }

    #search .column.search-button {
        width: 35%;
    }
    
}

@media (min-width: 959px) and (max-width: 1023px) {

    #search .column {
        width: 100%;
    }

    #search .column.search-input {
        width: 75%;
    }

    #search .column.search-button {
        width: 25%;
    }
        
}

@media (min-width: 1024px) and (max-width: 1279px) {

    #search .column.search-input {
        width: 75%;
    }

    #search .column.search-button {
        width: 25%;
    }

}

@media (min-width: 1200px){
    .search-box-area .inner {
    padding: 0 0 0 2rem;
}
 
}

@media (max-width: 512px) {
     #quick-links .column.ql-col-width {
     padding: 0;
  }
}

@media (min-width: 513px) and (max-width: 767px) {
     #quick-links .column.ql-col-width {
     float: left;
     height: 100%;
     padding: 0 8rem 0 0;
  }
}

@media (min-width: 768px) {
	 #quick-links .column.ql-col-width {
    width: 33%;
    padding: 0;
  		}
  	
  	 #quick-links .column{
    width: 100%; 
  }
  
}

/*--Country-ID-drawer--*/
.country-id-area .inner {
    padding: 0 0 0 2rem;
}

.country-id-area {
    position: relative;
    z-index: 100;
    height: 100%;
    padding: 1.25rem 2rem;
    background: #efefef;
    display:none;
    border-bottom: 4px solid #c41030;
    color: #58595b;
}

button.country-id {
    padding: 0;
    color: #fff;
    font-weight: 500;
    line-height: 2.75rem;
    text-transform: uppercase;
    border: none;
    margin-left: 0;
}

button.country__toggle {
    position: absolute;
    right: 0.2rem;
    top: 0;
    z-index: 100;
    display: block;
    background: transparent;
    border: none;
    float: right;
    padding: 0;
}

button.country__toggle:before {
    content: 'x';
    font-size: 2.2rem;
    color: #c41030;
}

button.country-id.active a {
    background: #EFEFEF;
    border-radius: 0;
    color: #c41030;
}


/**Footer**/
.bg--grey-dark{
  background: #767678;
  color: #fff;
}


/****************************/

/* TEMPLATES  */

/****************************/

/*allow ability to "flip" one horz template*/
@media (min-width: 1024px){  
  .img-block.horz.flip .column:nth-child(4n + 1) {
      float: left;
      left: 0;
  }
  .img-block.horz.flip .column:nth-child(odd) > div:first-child:before {
      border-width: 0 6px 0 0;
  }
  .img-block.horz.flip .column:nth-child(4n + 1) .img-arrow {
      right: 0;
      left: auto;
  }
  .img-block.horz.flip .column:nth-child(odd) .img-arrow:after {
      left: 0.375rem;
  }
}


/*change arrow backgrounds to match selected bg colour*/
.bg--grey-ml .img-arrow:before, .bg--grey-ml .img-arrow:after {
    background: #DEDEDE;
}
.bg--grey-md .img-arrow:before, .bg--grey-md .img-arrow:after {
    background: #bdbdbe;
}
.bg--grey .img-arrow:before, .bg--grey .img-arrow:after {
    background: #58595b;
}
.bg--grey-d .img-arrow:before, .bg--grey-d .img-arrow:after {
    background: #9b9b9d;
}
.bg--grey-md.img-block p:last-child a:first-child:last-child:after, 
.bg--grey-d.img-block p:last-child a:first-child:last-child:after, 
.bg--grey.img-block p:last-child a:first-child:last-child:after {
    background: url("/home/media/Media,596846,en.png") right center no-repeat;
}


/* Inner Video Bounding Class */

.panel .inner-video{
    padding: 0rem 0rem;
    max-width: 70rem;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
}


/*Tabbed content - list formatting for content panels*/
.ui-tabs-panel ul{
    padding:1rem;
}

.ui-tabs-panel li{
    list-style-type: disc;
}

/* News listing (html format) */
.news-listing .colspan-8 {
    padding: 1rem 1.75rem;
}
.news-listing h3 {
    font-size: 1.5rem;
}

/* News full (fulltext format) */
article .news-author img {
    float: left;
    width: 100px !important;
    height: 100px !important;
    margin-right: 1rem;
}


/* News carousel (text/carousel format) */
.carousel-news h3 {
    font-size: 1.5rem;
}



/*"share" widget*/
.hideshare-wrap {
  position: relative;
  float: right;
}
.hideshare-list {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.hideshare-list li {
  display: inline-block;
  zoom: 1;
  *display: inline;
  margin: 0.2em;
}
.hideshare-wrap span {
  display: none;
}




/**Menu** Additional Sidebar Menu CSS*/

.sidebar ul:first-child > li > a:before{
  background-position: 42% 4.5%;
  background-size: 125%;
}

.sidebar ul:first-child > li > a:hover:before {
    background-position: 42% center;
}

.sidebar ul:first-child > li.mm-selected > a:before {
    background-position: 42% 95.5%;
}

.sidebar ul:first-child > li.mm-selected > a:hover:before {
    background-position: 40% center;
}


.sidebar li.home span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}

li.home a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597337,en.png"); 
}   
/*--*/
    
.sidebar li.study span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}

li.study a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597342,en.png"); 
}   
/*--*/

.sidebar li.research span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}

li.research a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597345,en.png"); 
}   
/*--*/

.sidebar li.business span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}

li.business a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597358,en.png"); 
}   
/*--*/
                
.sidebar li.discover span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}

li.discover a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597361,en.png"); 
}   
/*--*/
                  
.sidebar li.connect span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}

li.connect a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597364,en.png"); 
}   
/*--*/
    
.sidebar li.why-qub span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}  
                                    
                                    
.sidebar li.international span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}   
                                   
li.international a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597300,en.png"); 
}      

/*--*/  
li.why-qub a:last-child:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,597306,en.png"); 
} 

/*--*/
.sidebar li.back-to-top span {
    padding: 1.55rem 1.55rem 1.55rem 0.85rem;
}   
                                    
li.back-to-top a:before {
    width: 5rem !important;
    background-image: url("/home/media/Media,512566,en.png"); 
}      
           

/* Student Quote Template */               
                                    .student-quote blockquote { margin: 50px 0 20px 0; } 
                                    .student-quote cite { margin-bottom: 20px; }              

                                    
 /*Bootstrap Carousel*/
  
/*--Sets colour of text overlay for DTP Banner and Carousel--*/
                                    
@media (min-width: 768px) {
.banner__caption-carousel.light h2.alt {
      color: #ffffff;                                                            
    }                              
}
                                    
.banner__caption-carousel.dark h2.alt {
      color: #c41030;                                                            
    }      
                                    
.banner__caption-carousel.dark h3 {
      color: #595a5c;                           
}
    
@media (min-width: 768px) {                                    
.banner__caption-banner.light h2.alt{
      color: #ffffff;                            
	}
}
                                    
.banner__caption-banner.dark h2.alt{
      color: #c41030;                                                            
    }      
                                    
.banner__caption-banner.dark h3 {
      color: #595a5c;                           
}

.banner__caption-banner a.button.dark {
    color: #c41030;
    border: 2px solid #c41030;
}

.banner__caption-banner a.button.dark:hover {
    background-color: #c41030;
    color: #ffffff;
    border: 2px solid #c41030;
}
    
.banner__caption-banner.dark p {
      color: #595a5c;                           
}
/*--*/
                                    
div#myCarousel {
    margin: 0 -1.75rem;
}
   
h1.alt{
	font-weight: 700;
} 

.main-title h1 {
    font-size: 1.3em;
}  

  /*--original code
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: calc(100% + 3.5rem);
    margin: -1.75rem;
}
  --*/
 
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    width: 100%;
    margin: 0 auto;
}  
  
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: .6s ease-in-out left;
       -o-transition: .6s ease-in-out left;
          transition: .6s ease-in-out left;
}
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  line-height: 1;
}
  
.carousel-inner .item a:hover {
    text-decoration: none;
}
  
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    -webkit-transition: -webkit-transform .6s ease-in-out;
         -o-transition:      -o-transform .6s ease-in-out;
            transition:         transform .6s ease-in-out;

    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-perspective: 1000px;
            perspective: 1000px;
  }
  .carousel-inner > .item.next,
  .carousel-inner > .item.active.right {
    left: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .carousel-inner > .item.prev,
  .carousel-inner > .item.active.left {
    left: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  .carousel-inner > .item.next.left,
  .carousel-inner > .item.prev.right,
  .carousel-inner > .item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}
.carousel-inner > .active {
  left: 0;
}
.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-inner > .next {
  left: 100%;
}
.carousel-inner > .prev {
  left: -100%;
}
.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}
.carousel-inner > .active.left {
  left: -100%;
}
.carousel-inner > .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15%;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  filter: alpha(opacity=50);
  opacity: .5;
}
.carousel-control.left {

}
.carousel-control.right {
  right: 0;
  left: auto;
}
.carousel-control:hover,
.carousel-control:focus {
  color: #fff;
  text-decoration: none;
  filter: alpha(opacity=90);
  outline: 0;
  opacity: .9;
}
.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: inline-block;
  margin-top: -10px;
}
.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
  left: 50%;
  margin-left: -10px;
}
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
  right: 50%;
  margin-right: -10px;
}
.carousel-control .icon-prev,
.carousel-control .icon-next {
  width: 20px;
  height: 20px;
  font-family: serif;
  line-height: 1;
}
.carousel-control .icon-prev:before {
  content: '\2039';
}
.carousel-control .icon-next:before {
  content: '\203a';
}
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 15;
  width: 60%;
  padding-left: 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
}
.carousel-indicators li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 1px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
}
.carousel-indicators .active {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}
.carousel-caption .btn {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    font-size: 30px;
  }
  .carousel-control .glyphicon-chevron-left,
  .carousel-control .icon-prev {
    margin-left: -15px;
  }
  .carousel-control .glyphicon-chevron-right,
  .carousel-control .icon-next {
    margin-right: -15px;
  }
  .carousel-caption {
    right: 20%;
    left: 20%;
    padding-bottom: 30px;
  }
  .carousel-indicators {
    bottom: 20px;
  }
}
    
@media (min-width: 1280px){
  	.banner__caption-carousel h3 {font-size: 3.5em;}
}
  
@media (min-width: 640px) and (max-width: 767px){
   .carousel-indicators{
    top: 260px;
    left: 50%;
    }
  
  .carousel-inner{
    height: 530px;
    }   
}
  
@media (max-width: 767px){
    .banner__caption-carousel {
    padding: 3.5rem 1.75rem 1.75rem 1.75rem;
    background: none;
	}
  
    .banner__caption-carousel h3 span {
    background: none;
    color: #58595b;
}
  
}

@media (min-width: 1280px){
	.banner__caption-carousel{
 	background: none;
    width: 50%;
    padding: 1.75rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}  
   
}
  
@media (min-width: 768px) and (max-width: 1279px){
	.banner__caption-carousel{
 	background: none;
    width: 50%;
    padding: 1.75rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}  

}
  
@media (min-width: 1024px) and (max-width: 1279px){
  
	.banner__caption-carousel h3{
     font-size: 2.625em;
}  
  
}
  
@media (max-width: 639px){
  .carousel-indicators{
    display: none;
    }
  
  .carousel-inner{
    height: 440px;
    }
}
             
/* Amendments to Bootstrap Carousel CSS to include background on text 12.01.16 */
.banner__caption h3 span{
     display: inline-block;
}
            
h2.alt span{
	 line-height: 1.6;
     padding: 2px 5px 2px 2px;                           
}
            
@media (max-width: 767px){

      .banner__caption h3 span{
       background: none;   
       color: #58595b;
       }
              
       h2.alt span{      
       background: none; 
       }               
}
            
/*--Full Width CSS for Carousel Option--*/
.inner-bs-carousel-full{max-width:100%; margin-left: auto; margin-right: auto;}
@media (min-width: 1280px) and (max-width: 1365px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 6rem;}}
@media (min-width: 1366px) and (max-width: 1460px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 10rem;}}
@media (min-width: 1461px) and (max-width: 1530px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 12rem;}}
@media (min-width: 1531px) and (max-width: 1620px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 14rem;}}
@media (min-width: 1621px) and (max-width: 1660px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 17rem;}}
@media (min-width: 1661px) and (max-width: 1760px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 20rem;}}
@media (min-width: 1761px) and (max-width: 1800px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 22rem;}}
@media (min-width: 1801px) and (max-width: 1890px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 24rem;}}
@media (min-width: 1891px) and (max-width: 1930px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 26rem;}}
@media (min-width: 1931px) and (max-width: 1990px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 28rem;}}
@media (min-width: 1991px){.inner-bs-carousel-full .banner__caption-carousel{margin-left: 30rem;}}

/*--Bounded CSS for Carousel Option--*/
.inner-bs-carousel{max-width:70rem; margin-left: auto; margin-right: auto;}
            
            
/*--DTP Banner: options for full width or bound Template--*/
.inner-banner{max-width:70rem;}

.inner-banner-full{overflow: visible; position: relative; margin-right: auto; margin-left: auto;}
.inner-banner-full img {display: block; width: 100%;}
@media (min-width: 1024px) and (max-width: 1279px){.inner-banner-full h3 {font-size: 2.625em;}}
@media (min-width: 1280px){.inner-banner-full h3 {font-size: 3.5em;}}
@media (min-width: 1280px) and (max-width: 1365px){.inner-banner-full .banner__caption-banner{margin-left: 6rem;}}
@media (min-width: 1366px) and (max-width: 1460px){.inner-banner-full .banner__caption-banner{margin-left: 10rem;}}
@media (min-width: 1461px) and (max-width: 1530px){.inner-banner-full .banner__caption-banner{margin-left: 12rem;}}
@media (min-width: 1531px) and (max-width: 1620px){.inner-banner-full .banner__caption-banner{margin-left: 14rem;}}
@media (min-width: 1621px) and (max-width: 1660px){.inner-banner-full .banner__caption-banner{margin-left: 17rem;}}
@media (min-width: 1661px) and (max-width: 1760px){.inner-banner-full .banner__caption-banner{margin-left: 20rem;}}
@media (min-width: 1761px) and (max-width: 1800px){.inner-banner-full .banner__caption-banner{margin-left: 22rem;}}
@media (min-width: 1801px) and (max-width: 1890px){.inner-banner-full .banner__caption-banner{margin-left: 24rem;}}
@media (min-width: 1891px) and (max-width: 1930px){.inner-banner-full .banner__caption-banner{margin-left: 26rem;}}
@media (min-width: 1931px) and (max-width: 1990px){.inner-banner-full .banner__caption-banner{margin-left: 28rem;}}
@media (min-width: 1991px){.inner-banner-full .banner__caption-banner{margin-left: 30rem;}}

.banner__caption-banner {
    padding: 1.75rem;
}
            
.banner__caption-banner a.button {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #fff;
}

.banner__caption-banner a.button:hover{
   background-color: #fff;
    color: #c41030;
}
            
.inner-banner{
      overflow: visible;
      position: relative;
      margin-right: auto;
      margin-left: auto;
      padding-left: 1.75rem;
      padding-right: 1.75rem;
}
  
.inner-banner img{
    display: block;
    max-width: calc(100% + 3.5rem);
    margin: 0 -1.75rem;
}
             
@media (max-width: 767px) {
.banner__caption-banner a.button {
    background-color: transparent;
    border: 2px solid #c41030;
    color: #c41030;
}

.banner__caption-banner a.button:hover{
   background-color: #c41030;
   color: #fff;
}
              
.inner-banner {
	padding-left: 0;
	padding-right: 0;                
}
              
             
}
  
@media (min-width: 768px){  
	.banner__caption-banner {
    background: none;
    width: 50%;
    padding: 1.75rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
  

}

@media (min-width: 1024px) {
.inner-banner h3{
	font-size: 2.625em;  
}

}
  
@media (min-width: 1280px) {
.inner-banner h3{
	font-size: 3.5em;  
}
                                      

}
                                    
@media (min-width: 1280px) {
.inner-banner h3{
	font-size: 3.5em;  
}

}

@media (min-width: 1px) {
.breadcrumbs {
	display: none;  
}
}

@media (min-width: 601px) {
.breadcrumbs {
	display: block;  
}
}
                                    
/*DTP - General Content Padding Update*/
.panel .inner-gc {
    padding: 2rem 1.75rem 1rem 1.75rem;
    background-color: #ffffff;
    max-width: 70rem;
    margin-left: auto;
    margin-right: auto;
}

.inner-gc hr {
    margin: 2rem 0 0 0;
    border: 1px solid #dedede;
}
                                    
/*Link Color update for accordion*/
#accordion .ui-widget-content a {
     color: #c41030;
}
                                    
/*Cookie Control CSS modifications*/
div#ccc-icon button{
	padding: 0 0 0 63px;  
    margin: 0;
}
                                    
button.ccc-expand{
	width: 145px;	                                      
}

button.ccc-close{
	padding: 0;   	
}
  
button.ccc-close:hover {
    background-color: transparent;
}
                                    
.ccc-inner h2{
    text-transform: capitalize;
}      
                                    
/*--take rem of last list item in footer--*/
footer ul.list-inline li:last-child {
    margin-right: 0;
}
            
/*---end--*/            