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

/*image div*/

div.gallery {
  margin: 5px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

/*paragraph stuff*/
.large{
	font-size: 23px;
}
.23par {
  border: 1px solid black;
  padding: 10px;
  width: 200px;
  height: 200px;
  text-align: justify
}

/*construction*/

.con {
  width: 100px;
  height: 100px;
  background: red;
  position: relative;
  animation-name: example;
  animation-duration: 3s;  
  animation-delay: 2s;
  animation-fill-mode: backwards;
}

@keyframes example {
  from {top: 0px; background-color: yellow;}
  to {top: 200px;}
}

/*home questions*/

/* unvisited link */
.QLink a {
  background-color: #d6dab1;
  color: black;
  padding: 3px 15px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

/* mouse over link */
.QLink a:hover {
  background-color: rgba(97,93,106,.6);
  color: white;
}

/* selected link */
.QLink a:active {
  color: blue;
}

/*video*/

video {
  max-width: 100%;
  height: auto;
}

/*gallery*/

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media (max-width : 768px ){
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
}
/*video*/

.vidy{
  width: 100%;
  border: 5px solid black;
  padding: 10px;
  margin: 0px;
  float: left;
    
}

.container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;/* 16:9 Aspect Ratio */
}

.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*Berg*/

#wrapper {
          background-image: url("../images09/berg_img/OLD_PAPER_TEXTURE.png");
    background-color: #f7f6ed;
    background-position:top;
    
}

#logo {
    background-image: url("../images09/berg_img/HeadBackShort.png");
    background-position: right;
    background-repeat: no-repeat;
}

.linky ul{
list-style-type: none;
}

.linky li a {
  list-style: none;
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
  background-color: #d6dab1;
  box-shadow: 0 3px 5px rgba(0,0,0,0.12), 0 3px 5px rgba(0,0,0,0.24);
  padding: 8px;
  margin-bottom: 7px;
}

/* Change the link color on hover */
.linky li a:hover {
  background-color: rgba(97,93,106,.6);
  color: white;
}

.responsive {
  width: 100%;
  height: auto;
}

.imgRight {
	float:right;
}

p {
    font-style: normal;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
    font-size: 20px;
	text-align: justify;
}
/*Rebuild Chart*/

#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
  width: 100%;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #6f6577;
  color: white;
}

* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Lucida Sans", sans-serif;
}

.header {
  background-color: #9933cc;
  color: #ffffff;
  padding: 15px;
}

a {
  text-decoration: none;
  color: black;
}


.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #d6dab1;
  color: #ffffff;
  box-shadow: 0 3px 5px rgba(0,0,0,0.12), 0 3px 5px rgba(0,0,0,0.24);
  text-decoration: none;
}

.menu li:hover {
  background-color: rgba(97,93,106,.4);
}

.aside {
  background-color: #33b5e5;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer {
  background-color: #d6dab1;
  color: #00000;
  text-align: center;
  font-size: 12px;
  padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width : 1024px ){
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}
@media only screen and (min-width : 1366px ){
  /* For Large screens: */
  .col-h-1 {width: 8.33%;}
  .col-h-2 {width: 16.66%;}
  .col-h-3 {width: 25%;}
  .col-h-4 {width: 33.33%;}
  .col-h-5 {width: 41.66%;}
  .col-h-6 {width: 50%;}
  .col-h-7 {width: 58.33%;}
  .col-h-8 {width: 66.66%;}
  .col-h-9 {width: 75%;}
  .col-h-10 {width: 83.33%;}
  .col-h-11 {width: 91.66%;}
  .col-h-12 {width: 100%;}
}

   /*prices list*/
table {
  border-collapse: collapse;
  width: 100%;
}

th, td {
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #DDD;
}
    
tr:nth-child(even){
    background-color: #f2f2f2;
    }

tr:hover {background-color: #d9c8e8;}



    
/*All pages*/   
.bannerImg {
  max-width: 100%;
  height: auto;
}

	h3 {
	font-family: source-sans-pro, sans-serif;
	font-style: normal;
	font-weight: 200;
	color: rgba(50,50,50,1.00);
	}
	
body {margin:0;font-family:Arial}
.toplogo {
  background-color: white;
	}
.topnav {
  overflow: hidden;
  background-color: #615d6a;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #92997e;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #7e826e;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
