@charset "utf-8";


/* This CSS file contains the details to create special layouts and functionality in your webpages, including slideshows, columns, image overlays, modals and more. */


/* Create three unequal columns that float next to each other */
.column {
 
}

/*columns that take up half of the width*/
.columnhalf {
  float: left;
  padding: 10px;
  width: 50%;
}

.columnhalf .overlay
	{height: auto;
	width: auto;
	margin: 10px;
}

.columnhalf:hover .overlay {
  opacity: 1;

}

/*columns that take up one third of the width*/
.columnthird {
	float: left;
   	padding: 10px;
  	width: 33.3%;
	position: relative;
}	

.columnthird .overlay
	{height: auto;
	width: auto;
	margin: 10px;
}


.columnthird:hover .overlay {
  opacity: 1;

}


/*columns that take up one quarter of the width*/
.columnquarter {
  float: left;
  padding: 10px;
  width: 25%;
}

.columnquarter .overlay
	{height: auto;
	width: auto;
	margin: 10px;
}

.columnquarter:hover .overlay {
  opacity: 1;

}

/* Middle column */
.column.middle {
  background-color: #f1f1f1;
    width: 100%;
  margin: 2px;
  text-align: center;
  line-height: 75px;
  font-size: 17px;
}
	

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
	}


/*these prevent columns from getting too skinny when the window is smaller than full size*/

@media screen and (max-width: 1000px) {
    .columnhalf {
        width: 100%;
    }
}

@media screen and (max-width: 1300px) {
    .columnthird {
        width: 50%;
    }
	}
	
@media screen and (max-width: 900px) {
    .columnthird {
        width: 90%;
    }
}


@media screen and (max-width: 1300px) {
    .columnquarter {
        width: 50%;
    }
}

@media screen and (max-width: 700px) {
    .columnquarter {
        width: 100%;
    }
}

/*these are styles for sectioning off content into columns or squares with violet lines in between*/

.line_br{
	border-right:thin;
	border-right-style:solid;
	border-right-color:#7D3F98;
	border-bottom:thin;
	border-bottom-style:solid;
	border-bottom-color:#7D3F98;
	padding: 8px;
	vertical-align:top;
}
.line_b{
	border-bottom:thin;
	border-bottom-style:solid;
	border-bottom-color:#7D3F98;
	padding: 8px;
	vertical-align:top;
}

.line_r{
	border-right:thin;
	border-right-style:solid;
	border-right-color:#7D3F98;
	padding: 8px;
	vertical-align:top;
}
.line_l{
	border-left:thin;
	border-left-style:solid;
	border-left-color:#7D3F98;
	padding: 8px;
	vertical-align:top;
}

.line_t{
	border-top:thin;
	border-top-style:solid;
	border-top-color:#7D3F98;
	padding: 8px;
	vertical-align:top;
}

	
.line_n{
	padding: 8px;
	vertical-align:top;
}

/*These styles define the tooltip */

.tooltip {
    position: relative;
	cursor:help;
}


.tooltip .tooltiptext {
    visibility: hidden;
    width: 90%;
    background-color: #7D3F98;
    color: #fff;
 	font-weight: bold;
    text-align: left;
    border-radius: 6px;
    padding: 5px;
	
	/* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 100%;
    left: 20px;
    opacity: 0;
    transition: opacity 1s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: #7D3F98 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}



/*Clickable images */

.hoveropacity:hover {
		opacity: .75;
		cursor: pointer;
	}

.hoveropacity2:hover {
		opacity: .40;
		cursor: pointer;
	}
	
	
h2.bar1 {
		text-align: center;
		padding: 30px 10px;
		background-color: #563D82;
		color: white;
	}
	
.imagetext_container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.imagetext_container img {
	vertical-align: middle;
	}

.imagetext_container .imagetext {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Black background with transparency */
    color: #f1f1f1;
    width: 100%;
    padding: 5px;
}	
	
.imagetext_container .imagetext h2 {
	text-align: center;
	padding: 3px;
	font-size: 19px;
	}

.overlaytext {
  color: white;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
	font-weight: bold;
}

/*Flowchart */

.flowchart {
  position: relative;
  text-align: center;
cursor: pointer;
}

.flowchart_text_top {
  position: absolute;
  bottom: 20px;
  right: 70px;
font-size: 18px;
    color: black;
}
.flowchart_text {
  position: absolute;
  bottom: 20px;
  right: 50px;
font-size: 18px;
    color: black;
}


/*Overlays and modals*/

.overlay img {
  display: block;
  width: 100%;
  height: auto;
	cursor: pointer;
}

.overlay img:hover {
 
	cursor: pointer;
}

.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height:100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #563D82;
	cursor: pointer;
	
}

.modal1 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal1-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */

.closemodal1 {
	color: #FF0000;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.closemodal1:hover,
.closemodal1:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}


/* Add Animation */
.modal1-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

h2.bar1 {
		text-align: center;
		padding: 15px 10px;
		background-color: #563D82;
		color: white;
	}

/* violetbackground is for the row of bars */

.violetbackground {
		background-color:#7D3F98;
		color: #FFFFFF;
		font-size: 18px;
			padding:5px;
	text-align: left;
	vertical-align: top;
	font-weight: bold;
		cursor:pointer;
	}
	
	
.violetbackground:hover {
		background-color:#563D82;
	}
	
	
.violetbackgroundactive, .violetbackgroundactive:hover  {
    background-color: #B9AFD6; 
	color: black;
	font-size: 18px;
	padding:5px;
	text-align: left;
	vertical-align: top;
	font-weight: bold;
	
	} 

/* bcolor is used for the row of icons */

.bcolor {
  	position: relative;
	min-width: 120px;
	}

.bcolor:hover .overlay {
  opacity: 1;
}

.bcolor1 {  	position: relative;
	min-width: 120px;
}

/*Question with answer reveal*/

.answer .overlay {
  	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height:100%;
	width: 100%;
	transition: .5s ease;
	cursor: pointer;
	opacity: 1;
	background-color: #563D82;
	color: white;
}


.reveal .overlay {
  	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height:100%;
	width: 100%;
	transition: .5s ease;
	cursor: pointer;
	opacity: 1;
	background-color: #563D82;
	color: white;
}

td.question{
	background-color: #B9AFD6;
	color: black;
}

td.answer{
	background-color: #ECECEC;
	color: #563D82;
	position: relative;
}
	
.fadeans {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}

.question{
	background-color: #ffffff;
    padding: 20px;
	color: black;
}


.answerlink {
	background-color: rgba(255,255,255,0.3);
	border: none;
	border-radius: 0 3px 3px 0;
    color:#515151;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	width: 150px;
	outline: none;
	padding-top: 16px;
	padding-right: 4px;
	padding-left: 4px;
	padding-bottom: 16px;
	margin-top: 3px;
	margin-bottom: 3px;
	cursor: pointer;
	/*border-radius: 10px;*/
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2), 0 3px 10px 0 rgba(0,0,0,0.19);
	valign: middle;}
	
.answerlink:hover{
	background-color: rgba(0,0,0,0.4);
	color: white;
	text-decoration: none;
	font-weight: bold;	
	}

/*Slideshow */

.slides1 {display: none}

.slides1 p {
text-align: left; 
}


/* Slideshow container */
.slideshow-container1 {
  max-width: 1000px;
    height: 175px;
  position: relative;
  margin: auto;
}

.slideshow-container2 {
  max-width: 1000px;
    height: 175px;
  position: relative;
  margin: auto;
    align-self: center;
    padding: 3px 8px 3px;
    background-color: #7d3f98;
    color:white;
	}

/* Next & previous buttons */

.prev1, .next1 {
	cursor: pointer;
	position: absolute;
	top: 70%;
	width: auto;
	padding: 16px;
	color: rgba(194,192,192,.5);
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	background-color: rgba(255,255,255,0.3);
}


/* Position the "next button" to the right */
.next1 {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev1:hover, .next1:hover, .prev1:active, .next1:active  {
  background-color: rgba(0,0,0,0.4);
	color: white;
	text-decoration: none;
}

/* Caption text */
.text1 {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
	
/* Number text (1/3 etc) */
.numbertext1 {

    color: #bbb;
	font-size: 13px;
	padding: 8px 12px;
	position: absolute;
	bottom: 0;
	right: 0;
}


/* The dots/bullets/indicators */
.dot1 {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
	
.active, .dot1:hover {
  background-color: #717171;
}


/* The dots/bullets/indicators */
.indicator1 {
	cursor: pointer;
	height: 25px;
	width: 25px;
	margin: 0 2px;
	color: black;
	background-color: #D4D4D4;
	border-radius: 25%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .indicator1:hover {
	background-color: #717171;
	color: white;
}

.darkvioletpanel{
	background-color: #563D82;
	color: white;
	}

.contentpanel {
    background-color: #E5E5E5;
    color: black;
}

p.contentpanel {
    padding: 15px;
}


/* 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}
}

/* Activity */

.activity {
    cursor: pointer;
}

/* long bar buttons */

	a.questionlist {
		color: white;
		
	}
	
	a.questionlist:hover {
		font-weight: bold;
		text-decoration: none;
		
	}

/*Blocks */

.block_1 {
	position: relative;
	margin: 1% ; 
	text-align: left;	
    background-color: lightgray;
	color: black;
}

.block_1 .overlay {
	
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height:100%;
	width: 100%;
    padding: 15px;
	transition: .5s ease;
	cursor: pointer;
	opacity: 1;
	background-color:#563D82;
	}

.mapblock {
    position: relative;
	text-align: left;	
    padding: 20px;
    height: 200px;
    background-image: linear-gradient(#eeeeee,#ffffff);
	color: black;
      
}

/*Side button style */

ul.horizblock {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
 
}

li.horizblockb a {
    display: block;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
	background-color: #7d3f98;
	border: thin #FFFFFF solid;
}

li.horizblockb a:hover, li.horizblockbactive a  {
    background-color: #563d82;
	color: white;
	display: block;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
	border: thin #FFFFFF solid;
}