text-decoration: underline;text-decoration: underline;text-decoration: underline;text-decoration: underline;@font-face {
    font-family: 'Verdana';
    src: url('index/Verdana.ttf') format('truetype')
}
html {
	margin: 0px;
	padding: 0px;
	background-color: #FFF0F1;
}
body {
    margin: 0px;
	padding: 0px;
}
*{
	transition:all 0.3s ease-in-out;
}

/* Buttons */
.outerbut {
    display: table;
    position: fixed;
    height: 60px;
    width: 100%;
    margin: 0px;
    padding: 0px;
	z-index: 1000;
}
.middlebut {
    display: table-cell;
    vertical-align: top;
    padding-top: 15px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    margin: 0px;
}
.innerbut {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0px;
}
a.btn {
	color: #700000;
	outline: none;
	text-decoration: none;
	padding-top: 5px;
	padding-right: 1.5%;
	padding-left: 1.5%;
	padding-bottom: 5px;
	white-space: nowrap;
	background-color: rgba(255,0,4,0.15);
	border-radius: 5px;
}
a.btn:hover {
	padding-right: 4%;
	padding-left: 4%;
	letter-spacing: 5px;
	font-weight: bold;
	background-color: rgba(255,0,4,0.15);
}
h3 {
    font-family: 'Verdana';
    text-align: center;
    line-height: 250%;
    margin-top: -10px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 20px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    font-size: 24px;
    width: 100%;
    font-weight: normal;
}
@media screen and (max-width: 500px) {
h3 {
    font-size: 16px;
}
}

/* Content */
#contentwrap {
	width: 95%;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 70px;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 20px;
	max-width: 600px;
}
#content {
    display: block;
    width: 95%;
    padding-top: 0px;
    padding-right: 5px;
    padding-bottom: 0px;
    padding-left: 5px;
    text-align: center;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
}
#content img, fieldset {
	margin: 0px;
	padding: 0px;
}
#content img {
	max-width: 100%;
	height: auto;
}
#contentbuy {
    display: block;
    width: 94%;
    padding: 0px;
    text-align: left;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 10px;
}
#contentbuy h1 {
	font-family: 'Verdana';
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 10px;
	padding-bottom: 0px;
	color: #D40000;
	font-size: 30px;
	line-height: 160%;
	font-weight: bold;
	text-transform: none;
	text-align: left;
}
#contentbuy h2 {
	font-family: 'Verdana';
	margin: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-left: 10px;
	padding-bottom: 0px;
	color: #FF0000;
	font-size: 20px;
	line-height: 100%;
	font-weight: bold;
	text-transform: uppercase;
	text-align: left;
}
#contentbuy h3 {
    font-family: 'Verdana';
    margin-top: 0px;
    margin-right: 0px;
    margin-left: 10px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 10px;
    padding-bottom: 10px;
    color: #1E1E1E;
    font-size: 17px;
    line-height: 140%;
    font-weight: normal;
    text-align: left;
}
a.buy {
	color: #FFFFFF;
	outline: none;
	text-decoration: none;
	padding-top: 6px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 6px;
	background-color: #AE0000;
	font-weight: normal;
	border-radius: 25px;
	text-align: center;
}
a.buy:hover {
	background-color: #FF0000;
}
@media screen and (max-width: 500px) {
#contentwrap {
	padding-top: 50px;
}
}
@media screen and (max-width: 400px) {
#contentbuy h1 {
	font-size: 25px;
}
#contentbuy h2 {
	font-size: 17px;
}
#contentbuy h3 {
    font-size: 14px;
	margin-left: 0px;
}
}
@media screen and (max-width: 320px) {
#contentbuy h1 {
	font-size: 20px;
}
#contentbuy h2 {
	font-size: 16px;
}
#contentbuy h3 {
    font-size: 12px;
}
}
@media screen and (max-width: 280px) {
#contentbuy {
    margin-left: 0px;
}
}

/* FadeIn */
.box {
    width: 100%;
    margin: 0px;
	padding: 0px;
}
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;  
}
.fade-in.one {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
.fade-in.two {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.fade-in.three {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}
.fade-in.four {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.fade-in.five {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.fade-in.six {
  -webkit-animation-delay: 1.0s;
  -moz-animation-delay: 1.0s;
  animation-delay: 1.0s;
}
