@charset "utf-8";
/* Coffee Site CSS */
/* Global */
body { background: rgb(223,224,189);
	font: 100%/1.5 Verdana, Arial, Helvetica, "Luxi Serif", sans-serif;
	color: rgb(132,114,92); }
.wrapper { max-width: 60em; 
	min-width: 18.75em; }
header, main, footer { display: block; 	
	text-align: center;
	min-width: 20em;
	max-width: 60em; }
footer { margin-top: .5em; 
	padding: .5em; }

/* Images */
.lqimgdiv { width: 100%; }
.lqimg { width: 33.333333%; 
	height:auto; }

/* Text */
h1, h2, h3 { font-family: 'Lobster Two', cursive;
	color: rgb(118,82,42);
	margin: .1em; }
h1 { font-size: 2.58em; }
h2, h3 { font-size: 1.29em;
	font-weight: normal;
	font-style: italic; }
p { text-align: justify;
	text-indent: 2em; }

/* Links */
a { text-decoration: none; }
a:link, a:visited { color: rgb(118,82,42);
	border-bottom: .1em solid rgb(118,82,42); } 
a:hover, a:active, a:focus { color: rgb(77,117,41);
	border-bottom: .1em solid rgb(77,117,41); } 
								
/* Fixed Footer */
footer { margin-left: -1px;
	position: fixed; 
	width: 100%; 
	bottom: 0; 
	left: 0; 
	border-top: .2em solid rgb(132,114,92); 
	background: #F5F1DE; }
.last { margin-bottom: 5em; }

/* Mobile */
@media screen and (max-width: 37.4em) {
	footer { position: static; 
		line-height: 1.75; }
	footer a { font-weight: bolder; 
		font-size: 1.1em;}
	.last { margin-bottom: 1em; }
	.hidden { display: none; }
}

/* Print Style*/
@media print {
	body { background: white;
		color: black;
		font: 12pt/2em "Times New Roman", Times, "Luxi Serif", serif; }
	h1, h2, h3 { color: black; }
	h1 { font-size: 24pt; }
	h2, h3 { font-size: 16pt; }
	footer { display: none; }
}

/* Form */
form { width: 18em; 
	border: .2em solid rgb(132,114,92); 
	margin: 1em auto; 
	padding: 1em; 
	display: block;
	font-weight: bolder; 
	background: #F5F1DE; }	
label, input { display: block; 
	margin: 0; 
	text-align: left; }
label { margin-top: 1em; }
textarea { width: 22em; }	
.button { width: 8em;
	text-align: center; 
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	-moz-box-shadow: 2px 2px 2px rgba(0,0,0,.5);
	-webkit-box-shadow: 2px 2px 2px rgba(0,0,0,.5);
	box-shadow: 2px 2px 2px rgba(0,0,0,.5); }
.submit	{ font-weight: bold;
	background: rgb(132,114,92); 
	color:#FFF; 
	margin-right: 3em;}
.small { margin: .5em; 
	display: inline; }
	
/* Book & Coffee Reviews */
article { border: .1em solid rgb(132,114,92); 
	background: #F5F1DE; 
	margin: .5em; 
	padding: .5em; 
	clear: both; }
article h2 { font-weight: bold; 
	font-style: normal; }
article img { float: left; 
	width: 20%;
	min-width: 6.250em;
	height: auto; 
	margin: 1em 1em 0 0;
	border: .1em solid rgb(132,114,92); }	

