﻿/* The work below, CSSBox, is released under the Creative Commons
   Attribution-ShareAlike 4.0 license and is available on
   https://github.com/TheLastProject/CSSBox. You are not required to add
   additional credit to your website, just leave the above text in this file */


body				{background-color:#ccc;}
h1					{text-align:center;}
#logo				{margin:15px 0px 0px 335px;}
#logo img			{padding: 12px 22px}
#wrapper 			{width:900px; margin:0px auto; background-color:#ffffff;}   
#description		{font-family: Arial, Helvetica, sans-serif; margin:0px 35px; padding:10px 20px; line-height:160%; text-align:justify}
#footer 			{clear:both; background-color:black; padding:10px 0px;}
#footer p			{font-family: Arial, Helvetica, sans-serif;font-size:12px;text-align:center; color:#ffffff;}
#pic				{margin:0px 0px 10px 100px}
#pic1				{margin:0px 14px 5px 35px}
#pic2				{margin: 0px 0px 10px 130px;}
#pic3				{border: 2px solid #000000;margin: 0px 50px 0px 50px;padding: 0px 50px 5px 75px;}
#pic4				{border: 2px solid #ffffff;margin: 0px 50px 0px 50px;padding: 0px 50px 5px 75px;}
#pic5				{border: 2px solid #000000;margin: 0px 100px 0px 100px;padding: 0px 25px 5px 25px;}







div.cssbox {
  display: inline-block;
}

span.cssbox_full {
  z-index: 999;
  position: fixed;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.8);
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: opacity 0.5s linear;
}

span.cssbox_full img {
  position: fixed;
  background-color: white;
  margin: 0;
  padding: 0;
  max-height: 90%;
  max-width: 90%;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px black;
}

a.cssbox_close,
a.cssbox_prev,
a.cssbox_next {
  z-index: 999;
  position: fixed;
  text-decoration: none;
  visibility: hidden;
  color: white;
  font-size: 36px;
}

a.cssbox_close {
  top: 1%;
  right: 1%
}

a.cssbox_close::after {
  content: '\00d7';
}

a.cssbox_prev,
a.cssbox_next {
  top: 50%;
  transform: translate(0%, -50%);
}

a.cssbox_prev {
  left: 5%;
}

a.cssbox_next {
  right: 5%;
}

a:target ~ a.cssbox_close,
a:target ~ a.cssbox_prev,
a:target ~ a.cssbox_next {
  visibility: visible;
}

a:target > img.cssbox_thumb + span.cssbox_full {
  visibility: visible;
  opacity: 1;
  pointer-events: initial;
}
/* This is the end of CSSBox */
