html {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

body {
	height: 100%;
	margin: 0;
	padding: 0 0 20px 0;
	background-color: #dedad5;
	border-top: white solid 1px;
}

#container {
	height: 100%;
	padding: 0;
	margin: 0 auto 0 auto;
	width: 590px;
}

#header {
	margin: -1px auto 10px auto;
	padding: 0;
	height: 85px;
	width: 350px;
	background-color: #ae1501;
	background: -webkit-gradient(linear, left top, left bottom, from(#ae1501), to(#810001));
	border-top: #e51d04 solid 1px;
	border-left: #620001 solid 1px;
	border-right: #620001 solid 1px;
	border-bottom: #620001 solid 1px;
	-webkit-box-shadow: 0 1px 3px #2f2e2d;
	-moz-box-shadow: 0 1px 3px black;
	box-shadow: 0 1px 3px black;
	-webkit-animation-duration: 1.5s; 
	-webkit-animation-name: 'fade';
}


@-webkit-keyframes 'fade' { 
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}		
}

#content {
	float: left;
	margin: 0 0 0 10px;
	width: 560px;
	
}

#coffees {
	margin: 20px 0 0 0;
	padding: 0 0 10px 0;
	border-bottom: gray solid 1px;
}

#footer {
	border-top: white solid 1px;
	margin-bottom: 15px;
	padding: 5px 0 0 45px;
}

p {
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
	color: black;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	line-height: 1.8;
	text-shadow: white 0 1px 0;
	text-align: justify;
}

h1 {
	margin: 0;
	padding-top: 5px;
	margin-bottom: 0;
	letter-spacing: -5px;
	color: white;
	font: bold 52px Georgia, "Times New Roman", Times, serif;
	text-shadow: #410101 0 -1px 1px;
	text-align: center;
	-webkit-animation-duration: 3s; 
	-webkit-animation-name: 'fade';
	
}

h2 {
	margin: -8px 0 0 19px;
	padding: 0;
	letter-spacing: 10px;
	color: white;
	font: 15px Georgia, "Times New Roman", Times, serif;
	text-shadow: #410101 0 -1px 0;
	text-align: center;
	-webkit-animation-duration: 3s; 
	-webkit-animation-name: 'fade';
}

h3 {
	margin-top: 10px;
	margin-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	text-shadow: white 0 1px 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
}

h4 {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 0;
	margin-left: 13px;
}

.special {
	color: #ae1501;
	font-weight: bold;
}

em {
	padding-left: 5px;
	font-style: italic;
	font-size: 11px;
}

strong {
	padding-left: 15px;
	font-weight: bold;
	text-align: left;
}

a, a:visited {
	color: #ae1501;
	text-decoration: none;
	font-weight: bold;
	padding: 2px 4px 2px 4px;
}

a:hover {
	color: white;
	text-decoration: none;
	font-weight: bold;
	background: #ae1501;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	text-shadow: gray 0 -1px 0;
	-webkit-animation-duration: .7s; 
	-webkit-animation-name: 'fade';
}

@-webkit-keyframes 'fade' { 
	0% {
		background: #dedad5;
		color: #ae1501;
		text-shadow: white 0 1px 0;
	}
	100% {
		background: #ae1501;
		color: white;
		text-shadow: gray 0 -1px 0;
	}		
}

