@charset "UTF-8";
/* CSS Document */
:root {
    --bordergrey: #ccc;
    --inputbkgnd: #F3F3F3;
    --mainblue: #6699CC;
    --textgrey: #999;
    --textcolor: #333;    
    --secblue: #697CAD;
    --whiteblue: #C1CBE0;
    --tooltipcolor: #485A7F;
    --offwhite: #DEDEDE;
}
* { 
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /*disable hideous Android blue hightlight*/
}
body {
	background-image: linear-gradient(to bottom, var(--tooltipcolor),var(--whiteblue),var(--tooltipcolor));
	font-family: Arial, Arial, Helvetica, sans-serif;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;    
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    //padding: 16px;
	overflow: hidden;
    font-size: 1.3vw;
}
/* Launcher */ 
div.slideshow { 
    padding: 0;
    margin: 0;
//    border: 1px dashed orange;
}

.full {
    max-width: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
}
.full .slideshow {
    height: inherit;
}
  
/* Slideshow container */
.slideshow-container {
    //max-width: 100vw;
    margin-top: 18px;
    margin-bottom: 18px;
    margin-left: 18px;
    margin-right: 18px;
    padding: 0;
    //height: auto;
    height: calc(94vh - 36px);
    width: calc(100vw - 36px); 
    overflow: hidden;
    background-color: white;
    display: none;
    border-radius: 16px;
}
.slides {
  display: none;
    height: 100%;
    width: 100%;
    background: white;
}

table {
	width: calc(100vw - 36px);
	border-style: none;
	border-width: 0px;
	border-spacing: 0px;
    border-collapse: collapse;
    background-color: white;    
}

h1 {
	font-size: 2.1em;
    font-family: inherit;
	font-weight: bold;
    font-style: italic;
	text-align: center;
//	color: var(--tooltipcolor);
	color: var(--secblue);    
	margin-top: 0.6em;
	margin-bottom: 0;
}

h2 {
	font-size: 1.6em;
    font-family: inherit;    
	font-weight: normal;
	text-align:center;
//	color: var(--secblue);
    color: var(--tooltipcolor);    
	margin-top: 0.6em;
	margin-bottom: 0;
}

h3 {
	font-size: 1.35em;
    font-family: inherit;    
	font-weight: normal;
	text-align:center;
//	color: var(--secblue);
    color: var(--tooltipcolor);
	margin-top: 0.3em;
	margin-bottom: 0;    
}

h4 {
	font-size: 1.3em;
    font-family: inherit;    
	font-weight: normal;
	text-align:center;
	color: var(--textgrey);
	margin-top: 0.7em;
    margin-bottom: 0;
}

.slide_text, .slide_headers, .slide_img {
    color: var(--textcolor);
    font-size: 1.6em;
    padding: 3vh 3.5vw; /* This is the padding that carries on but varies in the justification */
    margin: 0;
    line-height: 1.25;
}

.slide_headers {
    text-align: center;
    padding: 2vh 2vw;  
}
.slide_text {    
    vertical-align: top;
//    border: 1px solid green;
}
.slide_caption {
}
.slide_img {
    vertical-align: top;
    //text-align: right;
    max-width: 42vw;
    min-width: 42vw;
	font-size: 1.2em;
//    border: 3px solid red;
    } 
.slides img {
    object-fit: cover;
	border: 0;
    min-width: 30vw;
    margin-top: 0.7vh;
    margin-bottom: 1.7vh;
    max-width: calc(42vw - 7vw);  /* will have to calculate via javascript */
    max-height: calc(42vh - 6vh);
}
.slides .firstslide {
	max-width: 100%; 
    max-height: 100%;
    width: 100%;
    height: 100%;    
    margin: 0;
    margin-top: 0;
    padding: 0;
    object-fit: cover;    
}
.right {
    text-align: right;
    padding: 3vh 3vw 3vh 4vw;
}
.left {
    text-align: left;
    padding: 3vh 4vw 3vh 3vw;
}
.below {
    max-width: 100%;
    min-width: 100%;
}
.below img {
    width: calc(100%);
    max-width: calc(100%);
    max-height: 30vh;
}

.controls {
    position: absolute;
    bottom: 0;
    padding: 1.5vh 0 0 0;
    height: 6vh;
    width: 100%;
    text-align: center;
    display: none;
    margin: 0 auto;
} 

/* Progress dots */
.progress {
    text-align: center;
    width: auto;
    margin: 0 auto;
    padding: 0 0 0 0;
    position: relative;
    //vertical-align: top;
    display:inline-block; 
    //max-width: 450px;
}
    
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 2px;
  display: inline-block;
  transition: background-color 0.3s ease;
  border-radius: 50%;
  background-color: var(--secblue);
}
.active {
    background-color: var(--offwhite);
}
.dot:hover{
  background-color: var(--whiteblue);
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
.slides a {
    transition: all 2s ease;
}  

a.prev, a.next {    
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.0);
  //background-color: rgba(0,0,0,0.0);
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 0 50px 50px 0;
  user-select: none;
//display: none;    
}
a.next {
  right: 18px;
  border-radius: 50px 0 0 50px;
}
    
a.prev:hover, a.next:hover {
    color: var(--secblue);
    //text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}


/*.close {
  right: 25%;
  top: 10%;
  background-color: transparent;
}*/
/* Caption and info text 
.slide_text, .slide_text_ext, .slideshow-info {
    color: var(--offwhite);
    font-size: 15px;
    padding: 12px 12px;
    margin: 0 0 -6px 0;
    position: absolute;
    bottom: 2px;
    width: calc(100% - 24px); 
    background-color: rgba(0,0,0,0.6);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}*/

/*.slideshowtitle {
	font-weight: 400;
	margin: 0;
	font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}*/
/*.thumbnail {
	padding: 0;
    margin: 0;
    background-color: magenta;
	border: solid 1px #CCC;
	//padding: 4px;
    //max-width: 300px;
}*/
/*div.slideshowdesc {
	text-align: center;
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;	
	background-color: transparent;
	top: 0;
	left: 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

div.slideshowdesc .allcenter {
	position: relative;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 2em;	
}  

div.slideshowdesc .launch {
	font-size: 5em;	 
    line-height: 0.5em;
    cursor: pointer;
    color: var(--secblue);
    background-color: var(--inputbkgnd);
    border-radius: 60px;
}
div.slideshowdesc .launch:hover {
  color: var(--mainblue);
}  */  
  
/* Popup icon */
/*td.content .slides a:hover:after {
    content: "";
    width: 20px;
    height: 15px;
    padding: 10px;
    position:absolute;
    top: 0px;
    right:0px;
    display: block; 
    background: rgba(0,0,0,0.3) url('/palomar/stylesnscripts/lightbox/img/expand.png') center center no-repeat;
    z-index: 2; 
}*/
/* Previous and next chevrons */
/*td.content a.prev, td.content a.next, .close {*/

/*

.slide_text_ext, .slideshow-info {    
    display: none;
}
.slideshow-info {    
    z-index: 3;
    background-color: rgba(0,0,0,0.8);
    height: calc(100% - 8px);
    overflow-y: auto;
}
.slideshow-info *, .closeme {
    color:var(--offwhite);
}
.slideshow-info a {
    text-shadow: 0px 0px 0px rgba(0,255,0,0);
    text-decoration: underline;
}    
.closeme {
    position: relative; 
    float:right;
    font-size: x-large;
    cursor: pointer;
    margin: 10px;
}
.slide_text a {
    color: inherit;
}
.togglecap {
       display: none;
//        float: right; 
//        right: 12px;
//        bottom: 10px;
//        margin: 0 0 0 6px;
//        font-size: large;
//        cursor: pointer;
}
*/    

/* Number text (1/3 etc) 
.numbertext, .jump {
  color: white;
  background-color: rgba(0,0,0,0.3);
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3); 
  z-index: 2;    
}
.jump {
    display: none;
} 

.play, .pause, .stop, .info {
    cursor: pointer;
    color: var(--secblue);
    font-size: 30px;
    margin: 0 10px;
    padding: 0;
    vertical-align: middle;
    text-shadow: 0px 0px 0px rgba(0,0,0,0);
    -webkit-animation-name: blow;
    -webkit-animation-duration: 0.7s;
    animation-name: blow;
    animation-duration: 0.7s;      
} 
.info {
      font-size: 34px;  
}
.stop {
    font-size: 40px;
    position: absolute;
    top: -10px;
    right: -28px;
    z-index: 4;
    line-height: 0.5em;
    background-color: var(--inputbkgnd);
    border-radius: 60px;
}  
.play, .stop {
    display: none; 
}
 .play:hover, .pause:hover, .stop:hover, .info:hover {
  color: var(--mainblue);
}
@-webkit-keyframes blow {
  from {text-shadow: 0px 0px 0px var(--secblue);}
  to {text-shadow: 0px 0px 100px var(--secblue);}
}    
@keyframes blow {
  from {text-shadow: 0px 0px 0px var(--secblue);}
  to {text-shadow: 0px 0px 100px var(--secblue);}
}    */




/* Responsive roles 
@media only screen and (max-width: 650px) {
    .progress{
        display: none;
    }
}
@media only screen and (max-width: 550px) {
    .togglecap {
        display: none;
    }
} */

/* Video format 
.video3to2 {  
   position: relative; 
   padding-bottom: 66.66%; 
   height: 0;
   overflow: hidden; 
   max-width: 100%;
}
.video3to2 iframe, .video3to2 object, .video3to2 embed { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}

    
.showhide {
    display: none;
}
.showhidebtn, .showhideallbtn {
    background-color: var(--offwhite); 
    color: var(--textcolor);
    border: 1px solid var(--bordergrey);
    border-radius: 2px;
    cursor: pointer;
    font-size: small;
    padding: 2px 8px 4px;
    float: none;
    display: block; 
    margin: 10px 0 10px;    
}
.showhidebtn:hover, .showhideallbtn:hover {
    background-color: var(--whiteblue); 
    color: inherit;   
}
.showhideallbtn {
    color: var(--mainblue);
    display: block;
    margin: 0 auto;
}
button .chev {
    pointer-events: none;
    cursor: default;
}    
button:hover .chev, button .chev:hover {
    cursor: pointer;
    color: inherit;
}*/
  

