body {
	background-image: -webkit-gradient(
	linear,
	left top,
	right bottom,
	color-stop(0, #A8A8A8),
	color-stop(0.82, #000000)
	);
	background-image: -o-linear-gradient(right bottom, #A8A8A8 0%, #000000 82%);
	background-image: -moz-linear-gradient(right bottom, #A8A8A8 0%, #000000 82%);
	background-image: -webkit-linear-gradient(right bottom, #A8A8A8 0%, #000000 82%);
	background-image: -ms-linear-gradient(right bottom, #A8A8A8 0%, #000000 82%);
	background-image: linear-gradient(to right bottom, #A8A8A8 0%, #000000 82%);
}

#grid-container {
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.grid-item {
  opacity: 0;
  float: left;
  box-sizing: border-box;
}

.grid-item img {
  width: 100%;
  height: 100%;
}

.grid-item.loaded {
  opacity: 1;
  transition: opacity .5s;
}

#footer {
    clear: both;
    position: relative;
    z-index: 10;
    height: 3em;
    margin-top: -3em;
}

#footerA {
   position:absolute;
   bottom:0;
   width:100%;
   height:60px;   /* Height of the footer */
   background:#6cf;
}

#footerB {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
	text-align:center;
}

#footerC {
    position: fixed; 
    bottom: 0;
    /*left: 0;
    right: 0; */
    height: 50px;
	width: 50%;
    margin: 0 auto; 
}

/*###################################################################################*/
/* BUTTONS Style */
/*###################################################################################*/

.myButton {
	-moz-box-shadow: 0px 13px 12px -10px #000405;
	-webkit-box-shadow: 0px 13px 12px -10px #000405;
	box-shadow: 0px 13px 12px -10px #000405;
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c7c7c7), color-stop(1, #4f5252));
	background:-moz-linear-gradient(top, #c7c7c7 5%, #4f5252 100%);
	background:-webkit-linear-gradient(top, #c7c7c7 5%, #4f5252 100%);
	background:-o-linear-gradient(top, #c7c7c7 5%, #4f5252 100%);
	background:-ms-linear-gradient(top, #c7c7c7 5%, #4f5252 100%);
	background:linear-gradient(to bottom, #c7c7c7 5%, #4f5252 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c7c7c7', endColorstr='#4f5252',GradientType=0);
	background-color:#c7c7c7;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Georgia;
	font-size:9px;
	font-weight:bold;
	padding:8px 7px;
	text-decoration:none;
	text-shadow:0px 0px 0px #8e9091;
}
.myButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #4f5252), color-stop(1, #c7c7c7));
	background:-moz-linear-gradient(top, #4f5252 5%, #c7c7c7 100%);
	background:-webkit-linear-gradient(top, #4f5252 5%, #c7c7c7 100%);
	background:-o-linear-gradient(top, #4f5252 5%, #c7c7c7 100%);
	background:-ms-linear-gradient(top, #4f5252 5%, #c7c7c7 100%);
	background:linear-gradient(to bottom, #4f5252 5%, #c7c7c7 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#4f5252', endColorstr='#c7c7c7',GradientType=0);
	background-color:#4f5252;
}
.myButton:active {
	position:relative;
	top:1px;
}