@charset "UTF-8";
/* CSS Document */
:root {
    --bordergrey: #ccc;
    --inputbkgnd: #F3F3F3;
    --mainblue: #00237a;
    --textcolor: #333;    
    --secblue: #697CAD;
    --whiteblue: #C1CBE0;
    --tooltipcolor: #485A7F;
    --offwhite: #DEDEDE;
}

/* Launcher */ 
div.slideshow { 
	position: relative;
	display: block;
}
.slideshowtitle {
	font-weight: 400;
	margin: 0;
	font-size: 1.1em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}
.full .slideshow {
    height: inherit;
}

img.slideshowimage {
	width: 100%;
	position: relative;	
	display: block;
}

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);
}    
    
/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position:relative;
    margin: 0;
    padding: 0;
    height: auto;
    overflow: hidden;
    background-color: rgba(0,0,0,0.6);
    display: none;
}
.slides {
  display: none;
}
.slides img {
    width: 100%;
}

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

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

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
td.content .slides a {
    transition: all 0.3s ease;
}  
/* 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 {*/
td.content a.prev, td.content a.next {    
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px 16px;
  color: rgba(255,255,255,0.6);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  background-color: rgba(0,0,0,0.3);
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 0 50px 50px 0;
  user-select: none;
}
td.content a.next {
  right: 0;
  border-radius: 50px 0 0 50px;
}
/*.close {
  right: 25%;
  top: 10%;
  background-color: transparent;
}*/    
td.content a.prev:hover, td.content a.next:hover {
    color: rgba(255,255,255,0.8);
}

/* 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);
}
.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);
}
td.content .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 {
        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;
} 
/* Progress dots */
.progress {
    text-align: center;
    width: auto;
    margin: 0 auto;
    padding: 0 0 0 0;
    position: relative;
    vertical-align: middle;
    display:inline-block; 
    vertical-align: middle;
    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: #BBBBBB;
}
.active {
    background-color: var(--secblue);
}
.dot:hover{
  background-color: var(--mainblue);
}
.controls {
    text-align: center;
    display:none;
    margin: 10px 0;
}
.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%;
}


/* References */
.references {
	display:block;
}

.references li {
	font-size: inherit;
}

.references li a.anchor:target:hover:before {
	content: "";
}

.references li a.anchor:target {
	cursor: default;
} 
    
.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;
}
    </style>    

