* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
    font-family: 'baskerville';
    src: url('../font/librebaskerville-italic-webfont.eot');
    src: url('../font/librebaskerville-italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('../font/librebaskerville-italic-webfont.woff2') format('woff2'),
         url('../font/librebaskerville-italic-webfont.woff') format('woff'),
         url('../font/librebaskerville-italic-webfont.ttf') format('truetype'),
         url('../font/librebaskerville-italic-webfont.svg#libre_baskervilleitalic') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
	background-color: #fbf0e0;
	font-family: 'Titillium Web', sans-serif;
	padding:0 20px;
}
body .serif {
	font-family: 'baskerville', times italic, arial, sans-serif;
	font-size: 34px;
	line-height: 40px;
}
body .serif span {
	display: inline-block;
	padding-top:28px;
	border-top: 2px solid #000000;
}
.headName {
	color: #f84438;
    font-size: 100px;
    font-weight: 700;
    line-height: 95px;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top:240px;
}
#intro {
	display: block;
	padding-top: 100px;
	color:#000000;
	font-size:13px;
	margin-bottom: 70px;
}
#intro a {
	text-decoration: none;
	border:none;
	color: #F84338;
}
#outerWrapper {
	background-color: #fbf0e0;
	width: 100%;
	position: relative;
}
#bgimg {
	width:100%;
	height:auto;
}
.no-responsiveLogo {
	position: absolute;
	top:70px;
}
#wrapper {
	width:100%;
	max-width:960px;
	margin: 0 auto;
}
#coomingSoon {
	color: #ce645a;
	font-size:25px;
	font-style: italic;
	padding-bottom:22px;
	border-bottom:2px solid #000000;
	margin-bottom:30px;
}
#content {
	color:#000000;
	font-weight:700;
	line-height: 55px;
	font-size:40px;
	padding-bottom: 100px;
	padding-top: 35px;
}
#info,
.fancybox-wrap,
.fancybox-outer,
.fancybox-inner,
body .fancybox-skin {
	background: #fbf0e0 ;
}
a.button,
.morph-button > button {
	display: inline-block;
	padding:9px 30px;
	margin-right: 10px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #000000;
	border:1px solid #000000;
	/*line-height: 35px;*/
	margin-top:80px;
	line-height: 25px;
	font-size:25px;
}
a.button:hover,
.morph-button > button:hover {
	color: #f84438;
	border:1px solid #f84438;
}
#footer {
	border-top:1px solid #000000;
	padding-top:10px;
	color: #000000;
	padding-bottom: 20px;
	font-size:13px;
}
#footer a {
	text-decoration: none;
	color: #000000;
	border: none;
}
#footer span {
	float:right;
	font-size:13px;
}
.clr {
	border:none;
	height: 0;
	background: none;
	color: none;
	clear: both;
	width: 100%;
}
#content .fifty {
	font-size: 13px;
	font-weight: normal;
	line-height: 18px;
}
.fifty {
	width: 50%;
}

.Grid {
	float:left;
}
.reverseGrid {
	float:right;
}
.left {
	float: left;
	padding-right: 5px;
}
.right {
	float: left;
	padding-left: 5px;
}/*
@keyframes animatedBackground {
	from { background-position: 0 0; }
	to { background-position: 100% 0; }
}
#backgroundanimate {
	width:100%;
	height:38vw;
	background: url("../img/background.jpg") no-repeat fixed center center / cover  rgba(0, 0, 0, 0);
	background-size: 100%;
	animation: animatedBackground 40s linear infinite;
	//animation: 60s linear 0s normal none infinite running imageZoomInOut;
	top:0;
} */
#backgroundimmageholder {
	overflow: hidden;
	width:100%;
	height:38vw;
	position: relative;
}
#backgroundanimate {
	/*background:url(../img/background.jpg) center center no-repeat fixed;
    background-size:100% 100%;
	width:100%;
	height:38vw;*/
	//position: fixed;
	width: 100%;
    -webkit-animation:imageZoomInOut 60s infinite linear;
    -moz-animation:imageZoomInOut 60s infinite linear;
    animation:imageZoomInOut 60s infinite linear
}
@-webkit-keyframes imageZoomInOut {
    0% {
        -webkit-transform:scale(1);
        -webkit-transform-origin:center
    }
    50% {
        -webkit-transform:scale(1.24);
        -webkit-transform-origin:center
    }
    100% {
        -webkit-transform:scale(1);
        -webkit-transform-origin:center
    }
}
@-moz-keyframes imageZoomInOut {
    0% {
        -moz-transform:scale(1);
        -moz-transform-origin:center
    }
    50% {
        -moz-transform:scale(1.24);
        -moz-transform-origin:center
    }
    100% {
        -moz-transform:scale(1);
        -moz-transform-origin:center
    }
}
@keyframes imageZoomInOut {
    0% {
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -ms-transform:scale(1);
        -o-transform:scale(1);
        transform:scale(1);
        -webkit-transform-origin:center;
        -moz-transform-origin:center;
        -ms-transform-origin:center;
        -o-transform-origin:center;
        transform-origin:center
    }
    50% {
        -webkit-transform:scale(1.24);
        -moz-transform:scale(1.24);
        -ms-transform:scale(1.24);
        -o-transform:scale(1.24);
        transform:scale(1.24);
        -webkit-transform-origin:center;
        -moz-transform-origin:center;
        -ms-transform-origin:center;
        -o-transform-origin:center;
        transform-origin:center
    }
    100% {
        -webkit-transform:scale(1);
        -moz-transform:scale(1);
        -ms-transform:scale(1);
        -o-transform:scale(1);
        transform:scale(1);
        -webkit-transform-origin:center;
        -moz-transform-origin:center;
        -ms-transform-origin:center;
        -o-transform-origin:center;
        transform-origin:center
    }
}