* {
	margin: 0;
	padding: 0;
}


/* Creates grid */

.grid {
	display: grid;
	grid-template-columns: 1fr 8fr;
	grid-template-rows: 5fr 2fr;
	width: 100vw;
	height: 100vh;
}

.grid-sidebar {
	grid-column: 1/2;
	grid-row: 1/7;
	background-image: linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 20%, rgb(255,255,255) 100%);
    background-image: -o-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 20%, rgb(255,255,255) 100%);
    background-image: -moz-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 20%, rgb(255,255,255) 100%);
    background-image: -webkit-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 20%, rgb(255,255,255) 100%);
    background-image: -ms-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 20%, rgb(255,255,255) 100%);
}

.grid-sidebar-subgrid1 {
	grid-column: 1/2;
	grid-row: 1/6;
	background-image: linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -o-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -moz-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -webkit-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -ms-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
}

.grid-sidebar-subgrid2 {
	grid-column: 1/2;
	grid-row: 2/6;
	background-image: linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%);
    background-image: -o-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%);
    background-image: -moz-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%);
    background-image: -webkit-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%);
    background-image: -ms-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%);
}

.grid-sidebar-subgrid3 {
	grid-column: 1/2;
	grid-row: 6/7;
	background-image: linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -o-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -moz-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -webkit-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -ms-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
}

.grid-content {
	grid-column: 2/9;
	grid-row: 1/6;
	border-left: 2px solid grey;
	border-bottom: 2px solid grey;
	text-align: center;
	overflow: hidden;
}

.grid-content-pub {
	grid-column: 2/9;
	grid-row: 1/6;
	background-image: linear-gradient(to bottom right, rgba(255, 255, 255, .3), rgba(255, 255, 255, .3)), url("../img/resources/background1.png");
	background-size: cover;
	border-left: 2px solid grey;
	border-bottom: 2px solid grey;
	text-align: center;
	overflow: hidden;
}

.grid-content-aff {
	grid-column: 2/9;
	grid-row: 1/6;
	background-image: linear-gradient(to bottom right, rgba(255, 255, 255, .2), rgba(255, 255, 255, .2)), url("../img/resources/background3.png");
	background-size: cover;
	border-left: 2px solid grey;
	border-bottom: 2px solid grey;
	text-align: center;
	overflow: hidden;
}

.grid-footer {
	grid-column: 2/9;
	grid-row: 6/7;
	background-image: linear-gradient(right, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 1%, rgb(255,255,255) 2%, rgb(255,255,255) 98%, rgb(169, 169, 169) 99%, rgb(105, 105, 105) 100%);
    background-image: -o-linear-gradient(right, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 1%, rgb(255,255,255) 2%, rgb(255,255,255) 98%, rgb(169, 169, 169) 99%, rgb(105, 105, 105) 100%);
    background-image: -moz-linear-gradient(right, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 1%, rgb(255,255,255) 2%, rgb(255,255,255) 98%, rgb(169, 169, 169) 99%, rgb(105, 105, 105) 100%);
    background-image: -webkit-linear-gradient(right, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 1%, rgb(255,255,255) 2%, rgb(255,255,255) 98%, rgb(169, 169, 169) 99%, rgb(105, 105, 105) 100%);
    background-image: -ms-linear-gradient(right, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 1%, rgb(255,255,255) 2%, rgb(255,255,255) 98%, rgb(169, 169, 169) 99%, rgb(105, 105, 105) 100%);
	color: white;
	text-align: center;
}

.grid-footer h1 {
	font-family: cambria;
	font-size: 3vh;
	font-weight: bold;
	text-align: right;
	padding-right: 5vw;
	color: white;
	-webkit-text-stroke: 0.5px black;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.3), -2px -2px 2px rgba(0,0,0,0.3), -2px 2px 2px rgba(0,0,0,0.3), 2px -2px 2px rgba(0,0,0,0.3);
}

.grid-content-subgrid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	width: 100%;
	height: 100%;
}	

.grid-content-subgrid-back {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	width: 100%;
	height: 100%;
	background-image: url("./img/resources/background2.png");
	background-size: cover;
}	

.grid-content-subgrid1 {
	grid-column: 1/4;
	grid-row: 1/4;
}

.grid-content-subgrid2 {
	grid-column: 2/3;
	grid-row: 1/2;
}

.grid-content-subgrid2 h1 {
	font-family: Helvetica;
	font-size: 3vw;
	font-weight: bold;
	text-align: center;
	color: white;
    text-shadow: 0 0 5vh black, 0 0 4.5vh black, 0 0 4vh black;
	margin-bottom: 3vh;
}

.grid-content-subgrid3 {
	grid-column: 3/4;
	grid-row: 1/2;
}

.grid-content-subgrid4 {
	grid-column: 1/4;
	grid-row: 2/3;
	text-align: center;
}

.grid-content-subgrid4 h1 {
	font-family: cambria;
	font-size: 3vw;
	font-weight: bold;
	text-align: right;
	padding-right: 5vw;
	color: white;
	-webkit-text-stroke: 0.5px black;
	text-shadow: 5px 5px 5px rgba(0,0,0,0.3), -5px -5px 5px rgba(0,0,0,0.3), -5px 5px 5px rgba(0,0,0,0.3), 5px -5px 5px rgba(0,0,0,0.3);
}

.grid-content-subgrid4 h2 {
	font-family: arial;
	font-size: 2vw;
	text-align: center;
	color: white;
    text-shadow: 0px -5px 0px rgba(0,0,0,.5);
}

.grid-content-subgrid4 h3 {
	font-family: cambria;
	font-size: 1vw;
	text-align: center;
	color: white;
    text-shadow: 0px -5px 0px rgba(0,0,0,.5);
}

.grid-content-subgrid4 p {
	font-family: cambria;
	font-size: 1vw;
	text-align: center;
	color: white;
    text-shadow: 0px -5px 0px rgba(0,0,0,.5);
}

.grid-content-subgrid5 {
	grid-column: 1/4;
	grid-row: 3/4;
	text-align: center;
}

.grid-content-subgrid5 p1 {
	font-family: cambria;
	font-size: 1vw;
	text-align: center;
	color: white;
    text-shadow: 0px -5px 0px rgba(0,0,0,.5);
}

.grid-content-subgrid10 {
	grid-column: 1/4;
	grid-row: 1/4;
}

.grid-content-subgrid10 h1 {
	font-family: cambria;
	font-size: 2vw;
	font-weight: bold;
	text-align: center;
	padding-right: 5vw;
	color: white;
	-webkit-text-stroke: 0.5px black;
	text-shadow: 2px 2px 2px rgba(0,0,0,0.3), -2px -2px 2px rgba(0,0,0,0.3), -2px 2px 2px rgba(0,0,0,0.3), 2px -2px 2px rgba(0,0,0,0.3);
}

.grid-content-subgrid10 p {
	font-family: cambria;
	font-size: 1vw;
	text-align: left;
	padding-right: 5vw;
	padding-left: 5vw;
	color: black;
}

/* Logo image properties */

.logo {
    position: relative;
	text-align: right;
	width: 9vw;
	height: auto;
	padding-right: 0.7vw;
}

/* Sidebar dropdown buttons and menus */

.button-container {
	text-align: right;
	padding-right: 8%;
	border-radius: 0px 20px 20px 0px;
}

.dropbtn {
	text-align: right;
	color: grey;  
    background-color: white;
    padding: 8px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
	text-align: left;
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
	background-image: linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -o-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -moz-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -webkit-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
    background-image: -ms-linear-gradient(left, rgb(105, 105, 105) 0%, rgb(169, 169, 169) 2%, rgb(255,255,255) 5%, rgb(255,255,255) 95%, rgb(169, 169, 169) 98%, rgb(105, 105, 105) 100%);
	width: 200px;
	border-radius: 0px 10px 5px 10px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 10;
}

.dropdown-content a {
    color: grey;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
	background-image: linear-gradient(left, rgb(255, 255, 255) 0%, rgb(169, 169, 169) 2%, rgb(160,160,160) 5%, rgb(160,160,160) 95%, rgb(169, 169, 169) 98%, rgb(255, 255, 255) 100%);
    background-image: -o-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(169, 169, 169) 2%, rgb(160,160,160) 5%, rgb(160,160,160) 95%, rgb(169, 169, 169) 98%, rgb(255, 255, 255) 100%);
    background-image: -moz-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(169, 169, 169) 2%, rgb(160,160,160) 5%, rgb(160,160,160) 95%, rgb(169, 169, 169) 98%, rgb(255, 255, 255) 100%);
    background-image: -webkit-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(169, 169, 169) 2%, rgb(160,160,160) 5%, rgb(160,160,160) 95%, rgb(169, 169, 169) 98%, rgb(255, 255, 255) 100%);
    background-image: -ms-linear-gradient(left, rgb(255, 255, 255) 0%, rgb(169, 169, 169) 2%, rgb(160,160,160) 5%, rgb(160,160,160) 95%, rgb(169, 169, 169) 98%, rgb(255, 255, 255) 100%);
	color: black;
	border-radius: 0px 10px 5px 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
	animation: dropdown 1s forwards;
	display: block;
	color: black;
}

.dropdown:hover .dropbtn {
    background-color: #ddd;
}

@keyframes dropdown {
	0% {transform: translateX(-25px);}
	100% {opacity: 1; transform: translateX(0px);}
}

/* Sidebar social media icons */
.icons{
	text-align: center;
	position: relative;
	top: 10px;
	width: 100%;
}

.socialIcons img {
	height: 3vh;
	width: 3vh;
	opacity: 0.4;
	filter: alpha(opacity=40);
	margin-right: 10px;
}

.icons img {
	position: relative;
	display: inline;
	margin-right: 0 auto;
	margin-left: 0 auto;
}

.socialIcons img:hover {
	opacity:1;
}

/* Copyright */
.copyright {
	color: black;
	text-align: center;
	font-size: small;
	padding: 10px 10px 1px 10px;
}


/* Slideshow */
#slideshow {
	position: relative;
	width: 100vw;
	height: 100vh;
}

#slideshow > div {
	position: absolute;
}






/* Stuff */

/* logo image properties */
.logo {
    position: relative;
	text-align: right;
	width: 80%;
	height: auto;
	margin-right: 10px;
	margin-bottom: 100px;
	margin-top: 10px;
}

a:link {
    text-decoration: none;
}

a:hover {
    color: #f1f1f1;
}










/* Button Styles */

.button {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: rgb(45,68,156);
    padding: 10px 10px 10px 10px;
    font-size: 18px;
    border: 1px solid #2d6898;
    background-image: linear-gradient(bottom, rgb(45,68,156) 0%, rgb(45,68,107) 100%);
    background-image: -o-linear-gradient(bottom, rgb(45,68,156) 0%, rgb(45,68,107) 100%);
    background-image: -moz-linear-gradient(bottom, rgb(45,68,156) 0%, rgb(45,68,107) 100%);
    background-image: -webkit-linear-gradient(bottom, rgb(45,68,156) 0%, rgb(45,68,107) 100%);
    background-image: -ms-linear-gradient(bottom, rgb(45,68,156) 0%, rgb(45,68,107) 100%);
 	border-radius: 8px;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

.button:hover {
    background-image: : -ms-linear-gradient(bottom, rgb(0,0,0) 0%, rgb(0,0,0) 100%);;
}


/* ---------------------------- */
/*       Home Page Content      */
/* ---------------------------- */

/* Home Page Slideshow */
#rotating-item-wrapper {
	position: relative;
	z-index: -4;
}
.rotating-item {
	display: none;
	position: absolute;
	opacity: 0.90;
	top: 0;
	left: 0;
	min-width: 100vw;
	min-height: 100vh;
}

/* ---------------------------- */
/*          PCV Content         */
/* ---------------------------- */

.pcvbutton {
    display: inline-block;
    text-decoration: none;
	width: 70vw;
}

.pcvbutton p {
	font-family: Helvetica;
	text-align: justify;
	font-size: 2vh;
	hyphens: auto;
	color: white;
    text-shadow: 0 0 5vh black, 0 0 4.5vh black, 0 0 4vh black;
}

.pcvcolumn {
	float: left;
	width: 20%;
	font-size: 2vh;
}

/* Creates zoom box */

.thumbnail {
	width: 15vw;
	min-width: 200px;
	height: auto;
	margin-right: 10px;
    border: 2px solid lightgray;
    -webkit-box-shadow: 0px 6px 0px gray, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px gray, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 3px 0px gray, 0px 3px 15px rgba(0,0,0,.1), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

.thumbnailJRL {
	width: 25%;
	height: auto;
    border: 2px solid lightgray;
}


/* ---------------------------- */
/*        Model Content         */
/* ---------------------------- */

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 5vh;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
	position: relative;
	background-color: black;
	margin: auto;
	padding: 0;
	width: 60vw;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: blue;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.demo {
  opacity: 0.6;
}


/* ---------------------------- */
/*        Model1 Content        */
/* ---------------------------- */

.modal1 {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 5vh;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.modal-content1 {
	position: relative;
	background-color: black;
	margin: auto;
	padding: 0;
	width: 60vw;
}

.mySlides1 {
  display: none;
}

.prev1,
.next1 {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: blue;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next1 {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev1 {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.prev1:hover,
.next1:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.demo1 {
  opacity: 0.6;
}

/* ---------------------------- */
/*      Modeltaft Content       */
/* ---------------------------- */

.modaltaft {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 5vh;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.modal-contenttaft {
	position: relative;
	background-color: black;
	margin: auto;
	padding: 0;
	width: 60vw;
}

.mySlidestaft {
  display: none;
}

.prevtaft,
.nexttaft {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: blue;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.nexttaft {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevtaft {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.prevtaft:hover,
.nexttaft:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.demotaft {
  opacity: 0.6;
}

/* ---------------------------- */
/*      Modelgatz Content       */
/* ---------------------------- */

.modalgatz {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 5vh;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.modal-contentgatz {
	position: relative;
	background-color: black;
	margin: auto;
	padding: 0;
	width: 60vw;
}

.mySlidesgatz {
  display: none;
}

.prevgatz,
.nextgatz {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: blue;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.nextgatz {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevgatz {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.prevgatz:hover,
.nextgatz:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.demogatz {
  opacity: 0.6;
}


/* ---------------------------- */
/*      Modelsasha Content       */
/* ---------------------------- */

.modalsasha {
	display: none;
	position: fixed;
	z-index: 1;
	padding-top: 5vh;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.8);
}

.modal-contentsasha {
	position: relative;
	background-color: black;
	margin: auto;
	padding: 0;
	width: 60vw;
}

.mySlidessasha {
  display: none;
}

.prevsasha,
.nextsasha {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: blue;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.nextsasha {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prevsasha {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.prevsasha:hover,
.nextsasha:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.demosasha {
  opacity: 0.6;
}




/* ---------------------------- */
/*         Model Content        */
/* ---------------------------- */

/* The Close Button */
.close {
	color: white;
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.cursor {
  cursor: pointer;
}


/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
	font-family: Helvetica;
	background-color: black;
	padding: 10px 10px;
	color: white;
	font-size: 2vh;
	text-align: justify;
}


.active,
.demo:hover {
  opacity: 1;
}


.PCVimg {
	width: 15vw;
	min-width: 200px;
	height: auto;
	margin-right: 10px;
    border: 2px solid lightgray;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px gray, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px gray, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 3px 0px gray, 0px 3px 15px rgba(0,0,0,.1), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}

img.hover-shadow {
  transition: 0.3s;
}


.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.8);
}

#myVideo {
	position: relative;
	min-width: 100%; 
	min-height: 100%;
	z-index: -1;

}


/* ---------------------------- */
/*      About Page Content      */
/* ---------------------------- */

#viewDiv {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
}

      #layerToggle {
        top: 20px;
        right: 20px;
        position: absolute;
        z-index: 99;
        background-color: white;
        border-radius: 8px;
        padding: 10px;
        opacity: 0.75;
      }

.aboutbutton {
    display: inline-block;
	float: right;
    text-decoration: none;
    color: gray;
    background-color: rbga(225,225,225,0.4);
    padding: 10px 10px 10px 10px;
	margin-right: 0.8vw;
	font-family: Helvetica;
    font-size: 1.5vh;
    border: 1px solid lightgray;
    background-image: linear-gradient(bottom, rbga(225,225,225,0.4), rbga(225,225,225,0.4));
    background-image: -o-linear-gradient(bottom, rbga(225,225,225,0.4), rbga(225,225,225,0.4));
    background-image: -moz-linear-gradient(bottom, rbga(225,225,225,0.4), rbga(225,225,225,0.4));
    background-image: -webkit-linear-gradient(bottom, rbga(225,225,225,0.4), rbga(225,225,225,0.4));
    background-image: -ms-linear-gradient(bottom, rbga(225,225,225,0.4), rbga(225,225,225,0.4));
 	border-radius: 4px;
    -webkit-box-shadow: 0px 6px 0px gray, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px gray, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 3px 0px gray, 0px 3px 15px rgba(0,0,0,.1), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}



/*           Shapes             */

.circle {
    width:10px;
    height:10px;
	border: 2px solid blue;
    border-radius:50px;
    font-size:20px;
    color:red;
    line-height:100px;
    background: white;
    display: inline-block;
}

.square {
    width:10px;
    height:10px;
	border: 2px solid blue;
    font-size:20px;
    color:red;
    line-height:100px;
    background: white;
    display: inline-block;
}

.circle2 {
    width:10px;
    height:10px;
	border: 2px solid red;
    border-radius:50px;
    font-size:20px;
    color:red;
    line-height:100px;
    background: white;
    display: inline-block;
}

.square2 {
    width:10px;
    height:10px;
	border: 2px solid red;
    font-size:20px;
    color:red;
    line-height:100px;
    background: white;
    display: inline-block;
}

/* ---------------------------- */
/*         Misc Content         */
/* ---------------------------- */

.resourcesbutton {
	width: 15vw;
	min-width: 200px;
	height: 8vw;
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: #233269;
    margin-left: 3vw;
	margin-right: 3vw;
    padding-left: 3vw;
	padding-right: 3vw;
	font-family: Helvetica;
    font-size: 18px;
    border: 1px solid #2d6898;
    background-image: linear-gradient(bottom, #CC0000 0%, #7A0000 100%);
    background-image: -o-linear-gradient(bottom, #CC0000 0%, #7A0000 100%);
    background-image: -moz-linear-gradient(bottom, #CC0000 0%, #7A0000 100%);
    background-image: -webkit-linear-gradient(bottom, #CC0000 0%, #7A0000 100%);
    background-image: -ms-linear-gradient(bottom, #CC0000 0%, #7A0000 100%);
 	border-radius: 8px;
    text-shadow: 0px -1px 0px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    -moz-box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
    box-shadow: 0px 6px 0px #2b638f, 0px 3px 15px rgba(0,0,0,.4), inset 0px 1px 0px rgba(255,255,255,.3), inset 0px 0px 3px rgba(255,255,255,.5);
}



