
body {
  margin: 0;
  padding: 0;
  background: #202020;

}


#galleryContainer {
  width: 100%;
  height: 700px;        /* Image height + 200px */
  overflow: hidden;
  position: absolute;
  top: 30px;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 1;
}

/*
  The gallery div that contains all the images

  We'll set the width dynamically in the JavaScript as the images load
*/

#gallery {
  width: 100px;
  height: 600px;        /* Image height + 100px */
  padding: 80px 0px;
  position: absolute;
  z-index: 1;
}


/*
  Individual slides within the gallery:

  Float them left so that they're all side by side
  Fixed height (the width will vary as required)
  Add some horizontal margin between the slides
  Add a bottom fading reflection for WebKit browsers
*/

#gallery img {
  float: left;
  height: 500px;
  margin: 0 100px;      /* Adjust the left/right margin to show greater or fewer slides at once */
  -webkit-box-reflect:
    below
    0
    -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(1, rgba(255, 255, 255, .5)),
      color-stop(.8, rgba(255, 255, 255, 0))
    );
}


/*
  Left and right buttons:

  Position them on the left and right sides of the gallery
  Stretch them to the height of the gallery
  Hide them by default
*/

#leftButton, #rightButton {
  position: absolute;
  z-index: 2;
  /*top: -150px;*/
  top: 50px;
  bottom: 0;
  padding: 0;
  /*margin-top: auto;
  margin-bottom: auto;*/
  margin: auto 0;
  width: 15%;
  height: 500px;        /* Image height */
  border: none;
  outline: none;
  color: #ffffff;
  background: transparent url(images/blank.gif);
  font-size: 100px;
  font-family: "Courier New", courier, fixed;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

#leftButton {
  left: 0;
}

#rightButton {
  right: 0;
}

/* (Turn off dotted black outline on FF3) */

#leftButton::-moz-focus-inner, #rightButton::-moz-focus-inner {
  border: none;
}

/*
  Left and right button hover states:
  Fade them in to 50% opacity
*/

#leftButton:hover, #rightButton:hover {
  opacity: .8;
  filter: alpha(opacity=50);
  outline: none;
}


/*
  Image caption:

  Position just under the centre image
  Hide by default
*/
 
  
  
#caption {
  position: absolute;
  z-index: 2;
  top: 600px;

  width: 100%;
  height: 32px;
  color: #DEDEDE;
  text-align: center;

  font-size: 12px;
  margin-top: auto;
  margin-bottom: auto;
  
  //display: none;
}

#elated {
font-size: 8px;	
}
/*
  Loading text:

  Position in the centre of the gallery container
  Hide by default
*/

#loading {
  position: absolute;
  z-index: 1;
  bottom: 50%;
  width: 100%;
  color: #ffffff;
  text-align: center;

  font-size: 36px;
  letter-spacing: .1em;
  opacity: 0;
  filter: alpha(opacity=0);
}


/*
  Tutorial info box:

  Position it in the bottom right corner of the window
  Give the 'i' h1 a circular border
  Hide the whole div by default
  Fade it in on hover 
*/

#info {
  color: #ffffff;
  position: fixed;
  bottom: 20px;
  right: 80px;
  z-index: 99;
  border: none;
  border-radius: 20px;
  padding: 20px;
  background: transparent;
  -webkit-transition: background-color .5s;
  -moz-transition: background-color .5s;
  -o-transition: background-color .5s;
  transition: background-color .5s;
  font-size: 75%;
}

#info>* {
  margin: 20px 40px 30px 0;
  cursor: default;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  -webkit-transition: opacity .5s;
  -moz-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
  zoom: 1;  /* Force elements to be positioned in IE7, otherwise opacity doesn't work! */
}

#info p {
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  margin: 0;
}

#info h1 {
  position: fixed;
  z-index: 99;
  margin: 0;
  padding: 17px 1px 4px 14px;
  right: 30px;
  bottom: 30px;
  width: 20px;
  height: 14px;
  font-size: 20px;
  border: 3px solid #dedede;
  line-height: 1px;
  border-radius: 20px;
  color: #dedede;
  opacity: .6;
  filter: alpha(opacity=50);
}

#info:hover, #info.hover {
  background: rgba(50,50,50,.6);
}

#info:hover *, #info.hover * {
  opacity: 1;
  filter: alpha(opacity=100);
  color: #ffffff;
}

/* (Give the link the same colour as the other text in the box) */

#info a {color: #dedede; text-decoration:  none;}
#info a:visited { color: #dedede; }
#info a:hover { color: #666699;}
#info a:focus { outline: 0; }
#info a:active { outline: 0; }

.withfadeout {
	position: static;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.withfadeout:hover {
	position: static;
  display: block;
  -webkit-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
} 

#image5 {
    float: left;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-left: 0%;
    margin-top: 0px;
    clear: none;
    color: rgb(0, 0, 0);
}
#text18 {
    float: left;
    font-size: 10px;
    color: rgb(208, 208, 208);
    width: 74.4439461883408%;
    height: auto;
    text-align: left;
    line-height: 1em;
    word-wrap: break-word;
    margin-left: 10px;
    margin-top: 14px;
    clear: none;
    min-height: 0px;
    min-width: 0.5em;
    font-family: Abel;
}

#box5 {
    position: fixed;
    height: auto;
    bottom: 20px;
    left: 10px;
    clear: none;
    width: 370px;
}
#domfil {
	  position: fixed;
    float: left;
    font-size: 12px;
    color: rgb(250, 250, 250);
    width: 237px;
    height: 30px;
    text-align: left;
    line-height: 1em;
    word-wrap: break-word;
    margin-left: 50px;
    margin-top: 20px;
    clear: none;
    min-height: 30px;
    min-width: 0px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: rgb(37, 37, 37) 3px 3px 3px;
    letter-spacing: 2px;
    margin-right: 0px;
}

#textPS {
    position: fixed;
    float: left;
    font-size: 20px;
    color: rgb(90, 90, 128);
    width: 600;
    height: 30px;
    text-align: left;
    line-height: 1em;
    word-wrap: break-word;
    margin-left: 50px;
    margin-top: 50px;
    clear: none;
    min-height: 0px;
    min-width: 0px;
    font-family: 'Conv_GeosansLight';
    text-shadow: rgb(37, 37, 37) 3px 3px 3px;
}


#galleryname{
    position: fixed;
    font-size: 16px;
    color: rgb(255, 255, 255);
    width: 500px;
    height: auto;
    text-align: right;
    line-height: 1em;
    word-wrap: break-word;
    margin-left: 30%;
    margin-right: auto;    
    margin-top: 26px;
    clear: none;
    min-height: 0px;
    min-width: 0.5em;
    text-shadow: rgb(37, 37, 37) 3px 3px 3px;

}



#imagehome {
    float: right;
    width: auto;
    max-width: 100%;
    height: auto;
    margin-right: 30px;
    margin-top: 10px;
    clear: none;
    color: rgb(0, 0, 0);

}
