* {
  box-sizing: border-box;
} 
body {
  margin: 1%;
}
#cCupHeader{
	padding:2%;
}
#divMenuButtons {
	/* background-color: white; */
	/* padding: 1%; */
	float: center;
	margin: 1%;
    border: 0px; 
}
.menu {
	float:center; 
	 width:100%;   /* will shift buttons */
	/*text-align:left;  */
	padding:2px; 	
	/* margin-top: 1%; */
	 border: 1px solid; 
	/*	background-color:  #edbb99; */
}
.Center {
	/* background-color:  #e8f8f5  ; */
	float:left;
	width:50%;
	padding:1%;  
}
.right {
	/* background-color: #f7dc6f ; */
	float:left;
	width:20%;
	padding:1%; 
}
#divLocContact{
	text-align: center;
    font-size: 14px;
}
#iFrameMap {
	width: 300px;
	height: 100px;	
}
#btnHome, #btnMenu, #btnAbout, #btnLocation,  #btnContact, #btnPictures, #Buttom {
    background-color: #708090;
     -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius:6px;	
    color: #fff;
    font-family: arial;
    font-size: 30px;
    text-decoration: none;
    cursor: pointer;
	float: center;	
	margin: 0%;
	/* width: 15%  */
}
/* Spinning cup div container & image */
#imgSpinCup{width: 100%; height: 100%px;}
#divSpinCup { 
	width:  12%;
	height: auto;	
	float: left;
	position: absolute;
    top: 3%;
    left: 4%;
	z-index: -1;
	-webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;  
	-moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;	
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(0deg); }
    to { -ms-transform: rotate(360deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    from { transform:rotate(0deg); }
    to { transform:rotate(360deg);  }
}
/* Page title and header lines */
h1 {
	font-family: Matura MT Script Capitals;
	font-size: 50px;
	color: #000066;
	padding: 0%;
	float: center;
	text-align: center;
	margin: 1%;
	line-height: 30px;
	text-shadow: 5px 5px 5px  #76D7C4;
}
h2 {
	font-family: Arial;
	font-size: 30px;
	color: #000066;
	text-align: center;
	top: -1px;
	line-height: 30px;
}	
h3 {
	font-family: Arial;
	font-size: 20px;
	color: #000066;
	text-align: center;
	top: -1px;
	line-height: 20px;
}	
/* Sign div container & image */
#imgSignLeft{width: 100%; height: 100%;}
#divSignLeft { 
	position: absolute;
	width:  14%;
	height: auto;	
    top: 3%;
    left: 3%;
	float: left;
	z-index: -1;	
}
/* Sign div container & image */
#imgSignRight{width: 100%; height: 100%;}
#divSignRight { 
	position: absolute;
	width:  16%; 
	height: auto;		
    top: .6%;
    left: 84%;
	z-index: -1;	
}
/*-------------------------------*/
/* Image slider START           */
/*-------------------------------*/
body {
	margin: 1%;
	font-family: Arial;
}
.welcome {
	font-family: Comic Sans MS;
	font-size: 24pt;
	text-shadow: 5px 5px 5px #FF0000;
	padding: .5%;
}
.p2 {
	font-family: Trebuchet MS;
	font-size: 16pt;
	padding: .5%;
}
.p3 {
	font-family: Trebuchet MS;
	font-size: 14pt;	
	padding: .5%;
}
.menuDivSlides {
	display: none
}
.menuDivSlideShowContainer img {
	vertical-align: middle;
	width: 94%;
    height: 1000px;
	}

/* Slideshow container */
.menuDivSlideShowContainer {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #2F4F4F;
  font-weight: bold;
  font-size: 20px;
  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: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* 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}
}
/*---- Developer info -- */
#divDeveloperInfo {		
	font-family: Comic Sans MS;
    font-size: 10pt;    		
	padding: 2%;	
	text-align: center;
	border-Top: 4px Double gray;
}
/* On smaller screens, decrease text size */
/*
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}

/*-------------------------------*/
/* Media queries START           */
/*-------------------------------*/

/*-------------------------------------------*/  
/* For Laptop and Desktops   -- LARGE --     */
/* ----- Yellow -----                        */
/*-------------------------------------------*/  
@media screen and (min-width: 1024px) and (max-height: 1310px) {
   /* .myBody {background: #FFFF00;} */  /* comment color yellow, use for testing */
	#btnhome, #btnmenu, #btnabout, #btnlocation,  #btncontact, #btnpictures{ font-size: 10%; } 
	#divSignLeft { width:  14%; height: auto;  top: 2%;  left: 4%; }	
	#divSignRight { width:  14%; height: auto;  top: 4%;  left: 78%; }	    
/* 	.menuDivSlideShowContainer { width: 98%; height: 998px; } 
	.menuDivSlideShowContainer img { width: 98%; height: 1020px;  */}
	.menuDivSlideShowContainer { width: 98%; height: 998px; } 
	.menuDivSlideShowContainer img { width: 98%; height: 1020px; }
	#divDeveloperInfo { font-size: 100%; }
	#divLocContact{	font-size: 12%; }
	#iFrameMap {	width: 400px;	height: 200px;	}
	body { margin: 1%; }
}

/*-------------------------------------------*/  
/* For iPads and/or tablets  -- MEDIUM --    */
/* ----- Aquamarine (green) #7FFFD4 -----    */
/*-------------------------------------------*/  
@media screen and (max-width: 1024px)  {
    /*.myBody {background: #7FFFD4;} */
	.Center, .right  .left{ width:100%; }
	.menu { width:100%; padding: 1% }
    #btnHome, #btnMenu, #btnAbout, #btnLocation,  #btnContact, #btnPictures{font-size: 80%; width: 16%; padding: 1%; }   
	h1  {font-size: 160%; line-height: 98%;}
    h2, h3 {font-size: 100%; line-height: 95%;}
	.welcome {font-size: 140%; }
	.p2, .p3 {font-size: 100%; line-height: 100%;} 	
	.menuDivSlideShowContainer { width: 90%; height: 720px; } 
	.menuDivSlideShowContainer img { width: 90%; height: 725px;	} 
	.prev, .next {  margin-top: 1%;}
	#divDeveloperInfo { font-size: 60%; }
	body { margin: 1%; }
}

/*---------------------------------------*/  
/* For Mobile Phones  -- SMALL --        */
/* ----- Cornflower Blue  #6495ED -----  */  
/*---------------------------------------*/  
@media only screen and (max-width: 480px) {
    /*.myBody {background: #6495ED;} */
	.Center, .right { width:100%; }
	.menu { width:100%; padding: 1% }
	#btnHome, #btnMenu, #btnAbout, #btnLocation, #btnContact, #btnPictures{font-size: 60%; width: 18%; padding: 1% }
	h1  {font-size: 94%; line-height: 98%;}
	h2, h3 {font-size: 55%; line-height: 94%;}
	#divSignLeft { width:  12%; height: auto;  top: .5%;  left: auto; }	
	#divSignRight { width:  15%; height: auto;  top: .2%;  left: 84%; }		
	.p3 { font-family: Trebuchet MS;	font-size: 10pt; padding: .2%;}
	.menuDivSlideShowContainer { width: 90%; height: 470px; } 
	.menuDivSlideShowContainer img { width: 90%; height: 480px;	} 
	.prev, .next {  margin-top: 1%;}
	#divDeveloperInfo { font-size: 60%; }		
	body { margin: 1%; }
}


/*-------------------------------*/
/* Media queries END             */
/*-------------------------------*/

