@import url(http://fonts.googleapis.com/css?family=Lato:400italic,700italic);
/* Container */
.modal {
  /* Overlay page content */

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  /* Transition on opacity */

  /* Hidden before corresponding openModal a element is clicked */

  opacity: 0;
  display: none;
}
/* Show modal. Note: as of Feb 2012, pointer-events not supported by Opera or IE */
/* Content */
.modal > div {
  width: 100px;
  height: 100px;
  position: relative;
  margin: 20px auto;
  /* Default minimise animation */

  /* Prettify */

  padding: 20px;
  border-radius: 7px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
  background: #fff;
  background: -moz-linear-gradient(#ffffff, #cccccc);
  background: -webkit-linear-gradient(#ffffff, #cccccc);
  background: -o-linear-gradient(#ffffff, #cccccc);
  text-shadow: 0 1px 0 #fff;
}
.modal > div img[class="loading"] {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
}
.modal > div img[class="foto"] {
  position: absolute;
  left: 20px;
}
/* Override animation on modal open */
.modal h2 {
  font-size: 36px;
  padding: 0 0 20px;
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale3d(0.1, 0.1, 1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
  }
  55% {
    -webkit-transform: scale3d(1.08, 1.08, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
  }
  75% {
    -webkit-transform: scale3d(0.95, 0.95, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
  }
}
@-webkit-keyframes minimise {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0.1, 0.1, 1);
  }
}
@-moz-keyframes bounce {
  0% {
    -moz-transform: scale3d(0.1, 0.1, 1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
  }
  55% {
    -moz-transform: scale3d(1.08, 1.08, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0);
  }
  75% {
    -moz-transform: scale3d(0.95, 0.95, 1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
  }
  100% {
    -moz-transform: scale3d(1, 1, 1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.9);
  }
}
@-moz-keyframes minimise {
  0% {
    -moz-transform: scale3d(1, 1, 1);
  }
  100% {
    -moz-transform: scale3d(0.1, 0.1, 1);
  }
}
.modal a {
  font-family: 'Arial', sans-serif;
  font-size: 5em;
  font-style: normal;
  font-weight: bold;
  position: absolute;
  color: transparent;
}
.modal a:focus,
.modal a:hover {
  outline: none;
  /* Reset native styles */

  text-decoration: none;
}
.modal a:after {
  display: block;
  position: absolute;
  text-shadow: none;
  text-align: center;
  background: transparent;
  color: #d1d2d4;
  opacity: 0.7;
}
.modal a:focus:after,
.modal a:hover:after {
  -webkit-transform: scale(1.3, 1.3);
  -moz-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
  opacity: 0.9;
}
/* Modal close link and button */
.modal a[href="#close"] {
  left: 25%;
  top: 0;
  width: 50%;
  height: 25%;
}
.modal a[href="#close"]:after {
  content: 'X';
  right: 0px;
  top: 36px;
  width: 1.3em;
}
/* Modal Next link and button */
.modal a[href="#next"] {
  right: 0;
  width: 25%;
  top: 20%;
  height: 60%;
}
.modal a[href="#next"]:after {
  content: '>';
  right: 0px;
  top: 50%;
  width: 1.5em;
  font-size: 1.3em;
}
/* Modal Previous link and button */
.modal a[href="#prev"] {
  left: 0;
  width: 25%;
  top: 20%;
  height: 60%;
}
.modal a[href="#prev"]:after {
  content: '<';
  left: 0px;
  top: 50%;
  width: 1.5em;
  font-size: 1.3em;
}
.modal .caption {
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.modal .caption:focus,
.modal .caption:hover {
  opacity: 1;
}
.modal .caption p {
  color: #d1d2d4;
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 100%;
  font-size: 2.4em;
  line-height: 2.4em;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 20px;
  background: black;
  opacity: 0.5;
}
/* Open modal */
a.openModal {
  margin: 1em auto;
  display: block;
  width: 200px;
  text-align: center;
  padding: 4px;
  border-radius: 7px;
  background: #d1d2d4;
  background: -moz-linear-gradient(#eeeeee, #d1d2d4);
  background: -webkit-linear-gradient(#eeeeee, #d1d2d4);
  background: -o-linear-gradient(#eeeeee, #d1d2d4);
  text-shadow: 0 1px 0 #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
a.openModal img {
  vertical-align: middle;
}
/* Open modal for image galleries */
a.openModal.float {
  margin: 4px 4px;
  display: inline-block;
}
a.openModal:hover,
a.openModal:focus {
  background: -moz-linear-gradient(#d1d2d4, #eeeeee);
  background: -webkit-linear-gradient(#d1d2d4, #eeeeee);
  background: -o-linear-gradient(#d1d2d4, #eeeeee);
}
html {
  height: 100%;
}
body {
  background: #485726;
  height: 100%;
}
#wrapper {
  font-family: 'Lato', sans-serif;
  font-style: italic;
  font-size: 0.9em;
  color: #000000;
  background: #485726;
  min-width: 240px;
  margin: auto;
  padding: 0;
  max-width: 1840px;
  height: 100%;
}
#wrappercontent {
  width: 70%;
  margin: auto;
  background: #ffffff;
  min-width: 240px;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  margin: 0 auto -20px;
  /* the bottom margin is the negative value of the footer's height */

  position: relative;
}
#menuwrapper {
  background: #ffffff;
  height: 155px;
  margin: auto;
  /* centers #menuwrapper on the page */

  position: relative;
  overflow: hidden;
}
#logo {
  float: left;
  margin-left: 6%;
  margin-top: 8px;
}
#menu {
  float: right;
  position: absolute;
  bottom: 20px;
  right: 35px;
}
#menu ul {
  padding: 0;
  margin: 0;
  /* resets default settings of ul */

}
#menu ul li {
  list-style: none;
  width: 70px;
  line-height: 30px;
  float: left;
  margin-right: 15px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}
#menu ul li:hover {
  font-weight: bold;
  border-bottom-width: 4px;
}
#menu ul li:nth-child(1) {
  border-bottom-color: #ab82ba;
}
#menu ul li:nth-child(2) {
  border-bottom-color: #f16637;
}
#menu ul li:nth-child(3) {
  border-bottom-color: #df6fab;
}
#menu ul li:nth-child(4) {
  border-bottom-color: #2097d6;
}
#menu ul li:last-child {
  margin-right: 0;
}
#menu ul li a {
  display: block;
  /* makes sure the a surface will fill up the whole li surface */

  text-decoration: none;
  text-align: left;
  color: black;
}
#menu ul li a:hover {
  font-weight: bold;
}
#headerwrapper {
  height: 430px;
  background: #d1d2d4;
  margin: 0 6px;
  position: relative;
}
#header {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 418px;
  width: 100%;
  visibility: hidden;
  margin: auto;
}
#header img {
  -webkit-transition: opacity 3s ease-in-out;
  -moz-transition: opacity 3s ease-in-out;
  -o-transition: opacity 3s ease-in-out;
  transition: opacity 3s ease-in-out;
  width: 100%;
}
#headernext {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 418px;
  width: 100%;
  visibility: hidden;
  margin: auto;
}
#headernext img {
  width: 100%;
}
#headercaption {
  position: absolute;
  color: white;
  font-size: 0.8em;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
#content {
  max-width: 70%;
  background: #ffffff;
  margin: auto;
  border-top-width: 6px;
  border-top-style: solid;
  border-top-color: #ffffff;
  margin-top: 12px;
  text-align: center;
}
#content img.mid {
  vertical-align: middle;
}
#content p.top {
  margin-top: -14px;
  padding-top: 0;
}
#content h3 {
  margin: 0;
  padding: 0;
}
#content ul li {
  list-style: none;
}
#content ul li::before {
  display: inline-block;
  content: '\2022';
  height: 0.2em;
  width: 30px;
  margin-left: -30px;
  text-align: center;
  font-size: 0.7em;
  line-height: 0;
  vertical-align: middle;
}
#contactform input,
#contactform textarea {
  padding: 9px;
  border: solid 1px #E5E5E5;
  outline: 0;
  width: 200px;
  background: #FFFFFF;
  background: -webkit-gradient(linear, left top, left 25, from(#ffffff), color-stop(4%, #eeeeee), to(#ffffff));
  background: -moz-linear-gradient(top, #ffffff, #eeeeee 1px, #ffffff 25px);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
  color: #999999;
}
#contactform textarea {
  width: 200px;
  max-width: 400px;
  height: 150px;
  line-height: 150%;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#contactform input:hover,
#contactform textarea:hover,
#contactform input:focus,
#contactform textarea:focus {
  border-color: #C9C9C9;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
}
#contactform .submit input {
  width: auto;
  padding: 9px 15px;
  background: #d1d2d4;
  border: 0;
  font-size: 14px;
  color: #FFFFFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#contactform .submit input:hover,
#contactform .submit input:focus {
  background: #C9C9C9;
}
#contactform p.sentmessageok {
  color: #999999;
  font-weight: bold;
}
#contactform p.sentmessageerror {
  color: red;
  font-weight: bold;
}
#contactform input.error,
#contactform textarea.error {
  border: solid 1px red;
}
#bottombar {
  height: 6px;
  background: #d1d2d4;
  margin: 0 6px;
}
#push {
  height: 20px;
}
#footer {
  background: #ffffff;
  width: 100%;
  position: relative;
  width: 70%;
  margin: auto;
  height: 20px;
}
#footer p {
  font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  font-size: 0.6em;
  text-align: right;
  margin: 0 8px 0 0;
  padding: 0;
  line-height: 1.4em;
  position: absolute;
  right: -1px;
  bottom: 1px;
}
#footer p a {
  color: black;
  text-decoration: none;
  -webkit-transition: color 1s ease-in-out;
  -moz-transition: color 1s ease-in-out;
  -o-transition: color 1s ease-in-out;
  transition: color 1s ease-in-out;
}
#footer p a:hover {
  color: green;
}
