/*
 * Base structure
 */

html,
body {
  height: 100%;
  /*background-image: url('/images/theparing-splashscreen.jpg');*/
  background-position: center top;
}

body {
  color: #fff;
  text-align: center;
}

/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
  display: table;
  width: 100%;
  height: 100%; /* For at least Firefox */
  min-height: 100%;
  -webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
          box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.site-wrapper-inner {
  display: table-cell;
  vertical-align: middle;
}
.cover-container {
  margin-right: auto;
  margin-left: auto;
}

/* Padding for spacing */
.inner {
  padding: 30px;
}

/*
 * Cover
 */

.cover {
  padding: 1em;
  border: 1px solid #B51129;
  color:#303030;
  z-index:1000;
  position: relative;
}

.gradient-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.25);
  background: -webkit-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%);
  background: -moz-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%);
  background: -ms-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%);
  background: radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.25) 1%, rgba(0, 0, 0, 0.25) 100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 0;
}

@media(min-width:768px){
	.cover {
		background-image:url('/images/theparing-splashwhitebg.png');
	}
}

@media(max-width:768px){
	html,
	body {
		background-position: center top;
	}
	
	.cover {
		text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
					 0px 8px 13px rgba(0,0,0,0.1),
					 0px 18px 23px rgba(0,0,0,0.1);
		color:#ffffff;
		border: none;
		margin-top: 5em;
	}
	
	.gradient-layer {
		background: rgba(0, 0, 0, 0.75);
		background: -webkit-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 1) 100%);
		background: -moz-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 1) 100%);
		background: -ms-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 1) 100%);
		background: radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.5) 1%, rgba(0, 0, 0, 1) 100%);
	}
}

/*
 * Footer
 */

.mastfooter {
	color: #999; /* IE8 proofing */
	background-color: rgba(23,23,23, .8);
	position: fixed;
	bottom: 0;
	width: 100%;
	padding: 1em 0;
}

/*
 * Affix and center
 */

@media (min-width: 768px) {
  /* Pull out the header and footer */
  .masthead {
    position: fixed;
    top: 0;
  }
  .mastfoot {
    position: fixed;
    bottom: 0;
  }
  /* Start the vertical centering */
  .site-wrapper-inner {
    vertical-align: middle;
  }

  /* Handle the widths */
  .masthead,
  .mastfoot,
  .cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
  }
}

@media (min-width: 992px) {
  .masthead,
  .mastfoot,
  .cover-container {
    width: 700px;
  }
}

/*BEGIN GML home bg animation*/
#slideshow {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	z-index: 0;
	/*background-image: url(/Images/homebg/TheParing-1.jpg);*/
	transition: background 1s linear;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen {
	div#preloader {
		position: absolute;
		left: -9999px;
		top: -9999px;
	}

		div#preloader img {
			display: block;
		}
}

@media print {
	div#preloader,
	div#preloader img {
		visibility: hidden;
		display: none;
	}
}
/*END GML home bg animation*/