a {
	color: #fd6120;
	font-weight: 400;
	text-decoration: underline;
}
a:hover,
a:focus {
	color: #fd6120;
	text-decoration: none;
}

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }

.alignright {
	text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  	color: #000000;
  	font-weight: 400;
	font-family: 'myriad-pro', sans-serif;
	line-height: 120%;
	margin: 0;
	padding: 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
	color: #000000;
	text-decoration: none;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
h1 a:focus, h2 a:focus, h3 a:focus, h4 a:focus, h5 a:focus, h6 a:focus {
	color: #000000;
	text-decoration: none;
}

h2 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 2rem;
}
h3 {
	font-size: 3rem;
	margin-bottom: 2rem;
}
h4 {
	font-size: 2.4rem;
	margin-bottom: 1rem;
}

ul.inline li {
	position: relative;
	display: inline-block;
}

ul.carousel {
	text-align: center;
}
.fade-in {
	opacity: 0.75;
}
.fade-in:hover {
	opacity: 1;
}

.btn-primary {
	background-image: none;
	background-color: #fd6120;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd6120', endColorstr='#fd6120', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	background-repeat: repeat-x;
	border: none;
	text-decoration: none;
	padding: 1rem 2rem;
	margin: 0 0.25rem 2rem 0.25rem;
	color: #ffffff;
	font: 400 1.8rem 'myriad-pro', sans-serif;
	transition: all 200ms ease;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary:disabled,
.btn-primary[disabled] {
	background-color: #ff7f4a;
	color: #ffffff;
	text-decoration: none;
}

.btn-secondary {
	background-image: none;
	background-color: #32363a;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#32363a', endColorstr='#32363a', GradientType=0);
	filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
	background-repeat: repeat-x;
	border: none;
	text-decoration: none;
	padding: 1rem 2rem;
	color: #ffffff;
	font: 400 1.8rem 'myriad-pro', sans-serif;
	transition: all 200ms ease;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary:disabled,
.btn-secondary[disabled] {
	background-color: #070707;
	color: #ffffff;
	text-decoration: none;
}

.bouncing-wrapper {
	position: absolute;
	left: 50%;
	bottom: 2rem;
	width: 100px;
	margin-left: -50px;
	text-align: center;
}
.bouncing {
	font-size: 4rem;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-ms-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}
.bouncing a {
	color: #fd6120;
	outline: 0;
	-webkit-transition: color 0.5s linear;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
}
.bouncing:hover,
.bouncing a:hover {
	color: #000000;
	text-decoration: none;
	-webkit-transition: color 0.5s linear;
	-moz-transition: color 0.5s ease;
	-ms-transition: color 0.5s ease;
	-o-transition: color 0.5s ease;
	transition: color 0.5s ease;
	-webkit-animation: none 2s;
	-moz-animation: none 2s;
	-ms-animation: none 2s;
	animation: none 2s;
}

@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}
@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}
@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

@media (min-width: 768px) {		
	.alignright {
		text-align: right;
	}
}

@media (min-width: 1200px) {
	h2 {
		font-size: 5rem;
		margin-bottom: 4rem;
	}
	h3 {
		font-size: 3.4rem;
		margin-bottom: 1.6rem;
	}
	h4 {
		font-size: 2.6rem;
		margin-bottom: 1rem;
	}
}