﻿
.style-em {
	border-width: 0px;
	float: right;
	position:fixed;
	right:0px;
	top:0px;
	z-index: 4;
}
.style-tel {
	border-width: 0px;
	float: right;
	position:fixed;
	right:80px; 
	top:0px;
	z-index: 4;
}

/* Navigation Menu - Background */

.navigation {
  /* critical sizing and position styles */
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  
  /* non-critical appearance styles */
  list-style: none;
  background: #6FDBFF;
}

/* Navigation Menu - List items */
.nav-item {
  /* non-critical appearance styles */
  width: 200px;
  border-top: 1px solid #111;
  border-bottom: 1px solid #000;
}

.nav-item a {
  /* non-critical appearance styles */
  display: block;
  padding: 5px;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
  color: ;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.2s, background 0.5s;
}

.nav-item a:hover {
  color:   #4b0476;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(61,20,75,0.65) 100%);
}

/* Site Wrapper - Everything that isn't navigation */
.site-wrap {
  /* Critical position and size styles */
  min-height: 100%;
  min-width: 100%;
  background-color: #CCCCCC; /* Needs a background or else the nav will show through */
  position: relative;
  top: 0;
  left:0px;right:0px;
  bottom: 100%;
  left: 0;
  z-index: 1;
  text-align:center;
  
  /* non-critical apperance styles */
  
  padding-left:0em;
  padding-right:0em;
  padding-top:4em; background-color: #3D195F;
  background-size: 200%;
}

/* Nav Trigger */
.nav-trigger {
  /* critical styles - hide the checkbox input */
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

label[for="nav-trigger"] {
  /* critical positioning styles */
  position: fixed; 
  background-color: #175560;
   
  left: 0px; top: 0px;
  z-index: 2;
  
  /* non-critical apperance styles */
  height: 50px;
  width: 100%;
  cursor: pointer;
  background-image: url('../img/menu01.png'); background-repeat:no-repeat;
  background-size: contain;
}

  

/* Make the Magic Happen */
.nav-trigger + label, .site-wrap {
  transition: left 0.2s;
}

.nav-trigger:checked + label {
  left: 200px;
}

.nav-trigger:checked ~ .site-wrap {
  left: 200px;
  box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
}

body {
    /* Without this, the body has excess horizontal scroll when the menu is open */
  overflow-x: hidden;
}

/* Additional non-critical styles */


code {
    padding: 2px;
    background: #ddd;
}

/* Micro reset */
*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0;}
html, body { height: 100%; width: 100%; font-family:  Tahoma; }

