@charset "UTF-8";
/* CSS Document */

/*@font-face {
   font-family: sofiaPro;
	src:url(Mostardesign - Sofia Pro Medium.otf) format("opentype");
}

@font-face {
   font-family: sofiaPro;
   src: url(Mostardesign - Sofia Pro Bold.otf) format("opentype");
   font-weight: bold;
}*/



* {
  box-sizing: border-box;
}

img {
  border-radius: 3%;
}
	

body {
  font-family: sans-serif;
  /*background: #f68e56;*/
 background: transparent;
 color:black;
}

/* Header/Blog Title */
.header {
  text-align: left;
  padding-left: 60px;
  background: transparent;
 color: #f68e56;
	position: fixed;
	/*background-color: #2aa615;*/
	/*background-color: white;*/
	width:100%;
	-webkit-animation-name: example; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite; /* Safari 4.0 - 8.0 */
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
	
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
 0%   {color: #f68e56; left:0px; top:0px;}
  25%  {color:#f68e56; left:200px; top:0px;}
  50%  {color:red; left:200px; top:0px;}
  75%  {color:#f68e56; left:0px; top:0px;}
  100% {color: yellow; left:0px; top:0px;}
}
}

/* Standard syntax */
@keyframes example {
   0%   {color: #f68e56; left:0px; top:0px;}
  25%  {color:#f68e56; left:200px; top:0px;}
  50%  {color:red; left:200px; top:0px;}
  75%  {color:#f68e56; left:0px; top:0px;}
  100% {color: yellow; left:0px; top:0px;}
}

.header h1 {
  font-size: 50px;
  
}

ul {
    font-family: sans-serif;
	list-style-type: none;
	text-align:left;
    padding-top: 120px;
    width: 22%;
    background-color:transparent;
    position: fixed;
    height: 100%;
    overflow: auto;
	
}

li a {
    display: block;
    color: #000;
    padding-top:10px;
	padding-bottom:10px;
	padding-right:8px;
	padding-left:8px;
    text-decoration: none;
	color:#f68e56;
}
li.sublist {
	font-size:10px;
	padding-left:20px;
	
}

li a.active {
    background-color:#0000ff;
    color: white;
}

li a:hover:not(.active) {
    background-color:#ffff00;
    color: #0000ff;
}


.column1 {
	color:black;
    float: left;
	padding-right:20px;
	padding-top: 140px;
	padding-left: 25%;
	width: 100%; 

	
	
	
}

iframe.mainframe {
	width:100%;
	height:900px; 
	border: none;
	
	
	
	
	
}

/* Footer */
.footer {
 
   position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: red;
   color: white;
   text-align: left;
	line-height:10px;
	padding-left:60px;
	

}

.footer a {
	color: white;
	text-decoration: none;
}

.footer a:hover{
	color:blue;
}

.footer a:active{
	color: blue;
	background-color:yellow;
}



/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

/*style for the image galleries*/

/* Slideshow container */
.slideshow-container {
  max-width: 70%;
  
 
 
  position: relative;
  margin: auto;

}

.slideshow-container img{
	display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
	
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: red;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

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

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: yellow;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: blue;
}

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

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

@keyframes fade {
  from {opacity: .5} 
  to {opacity: 1}
}
*/



	
