body {
	margin: 0;
	font-family: 'Roboto', sans-serif;
	background: #F9F9F9;
	color: #333;
}

/**
 * 	Text styles
 */

h1 {
	font-size: 1.5em;
}

h2 {
	font-size: 1.2em;
}

h3 {
	font-sie: 1em;
}

a {
	text-decoration: none;
	color: rgb( 20, 100, 255 );
}

a:hover {
	color: rgb( 50, 150, 255 );
}

.description {
	font-size: 0.9em;
	font-style: italic;
}

header {
	margin-top: -21px;
	padding-bottom: 10px;
	border-bottom: 1px solid #EEE;
	box-shadow: 0 2px 10px #E7E7E7;

	background: rgb(179, 99, 56); /* Old browsers */
	background: -moz-linear-gradient(top, rgb(179, 99, 56) 0%, rgb( 185, 122, 87 ) 100%); /* FF3.6+ */
	background: -webkit-linear-gradient(top,  rgb(179, 99, 56) 0%, rgb( 185, 122, 87 ) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgb(179, 99, 56) 0%, rgb( 185, 122, 87 ) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgb(179, 99, 56) 0%, rgb( 185, 122, 87 ) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgb(179, 99, 56) 0%, rgb( 185, 122, 87 ) 100%); /* W3C */
}

header.blue {
	background: #7abcff; /* Old browsers */
	background: -moz-linear-gradient(top,  #7abcff 0%, #4096ee 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#7abcff), color-stop(100%,#4096ee)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #7abcff 0%,#4096ee 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #7abcff 0%,#4096ee 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #7abcff 0%,#4096ee 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #7abcff 0%,#4096ee 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
}

header.green {
	background: rgb(0, 180, 0);
	background: linear-gradient(to bottom, rgb(0, 230, 0) 0%, rgb(0, 200, 0) 100%); /* W3C */
}

header a {
	text-decoration: none;
/* 	color: gold; */
	color: rgba(0, 0, 0, 0.7);
}

header a:hover {
/* 	color: rgb(255, 255, 155); */
	color: rgba(0, 0, 0, 0.3);
}

header.green a {
	color: rgb(0, 100, 0);
}

header.green a:hover {
	color: rgb(0, 140, 0);
}

header .logo {
	max-height: 35px;
/* 	border: 1px solid gold; */
}

header #title {
	margin: 10px;
	margin-left: 30px;
	padding-top: 30px;
}

header #title a h1 {
	display: inline;
	vertical-align: middle;
	margin-left: 10px;
	font-weight: 300;
	font-size: 1.7em;
	font-family: 'Georgia', serif;
}

header #title a img {
	vertical-align: middle;
}

header nav {
	/*padding-top: 8px;*/
	padding-top: 0.1em;
	padding-bottom: 0.1em;
	font-weight: 300;
}

header nav table {
	margin-left: 1em;
}

header.floatingBar nav table {
	margin-left: 2em;
}

header nav table td {
	padding: 0.5em 1em 0.5em;
}

header nav table td:hover {
	background: rgba(255, 255, 255, 0.3);
}

header nav table td ul {
	list-style: none;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	padding: 1em;
	margin-top: 0;
	margin-left: -1em;
}

header nav table td:hover ul, header nav table td ul:hover {
	max-height: 100px;
	opacity: 1;
}

header #menu {
	display: inline;
	margin-left: -1em;
}

header #menu a {
	margin-right: 2em;
}

header ul#menu {
	list-style-type: none;
}

header ul#menu li ul {
	display: none;
	list-style-type: none;
	position: absolute;
	border: 1px solid black;
}

header ul#menu li ul li {
	display: block;
}

header ul#menu li:hover ul {
	display: inline;
	list-style-type: none;
}

header #menu li {
	display: inline;
}

header #signinButton {
	float: right;
	margin-top: -5px;
	margin-right: 10px;

	display: none; /* hide until needed */
}

header #userInfo {
	float: right;
	display: inline;
	margin-right: 10px;
	/*margin-top: -0.5em; */
	padding-top: 0.2em;
}

header #userInfo img {
/*	max-height: 25px;
	max-width: 25px;
*/
	max-height: 2em;
	max-width: 2em;
	margin-right: 10px;
	vertical-align: middle;
}

header #userInfo ul {
	display: none;
}

header #userInfo a:hover ~ ul {
	display: block;
}

header #userInfo #name {
	vertical-align: middle;
}

footer {
	margin-top: 10px;
	padding: 10px;
	border-top: 1px solid #ccc;
}

footer #disclaimer {
	text-align: center;
}

#alertScreen {
	display:none; /* hide until needed */
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba( 0, 0, 0, 0.5 );
	z-index: 100;
}

#alertScreen #alert {
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
	background: white;
	padding: 30px;
	box-shadow: 0px 0px 10px #555;
	border-radius: 2px;
	max-width: 90%;
	width: 300px;
	-webkit-transition: all 0.3s ease-in-out;
}

#alertScreen #alert img {
	max-height: 95%;
	max-width: 95%;
}

#alertScreen #alert * {
	text-align: center;
}

img#menuIcon {
	display: none;
}

.floatingBar {
	position: fixed;
	top: 0;
	width: 100%;
	height: 2em;
	box-shadow: 0px 0px 5px #333;
	background: chocolate;
	-webkit-transition: height 0.3s ease-in-out;
}

.floatingBar img#menuIcon {
	display: inline;
	position: absolute;
	top: 0;
	left: 0;
	margin: 4px;
}

.floatingBar #menu {
	margin-left: 1em;
}

#timerBar {
	max-width: 10em;
	width: 6em;
    font-size: 18pt;
	float: right;
	margin-top: -2px;
	padding: 5px 1em 5px;
	font-weight: 500;
	color: gold;
	border-radius: 0 0 0 5px;
	box-shadow: 0 8px 10px #ccc;
	background: rgb( 185, 122, 87 );
	-webkit-transition: all 0.3s ease-in-out;
}

#timerBar.floating {
	position: fixed;
	top: 40px;
	right: 0;
	background: chocolate;
}

.hidden {
	height: 0 !important;	/* hidden until needed */
	overflow: auto;
	opacity: 0;
	padding: 0 !important;
}

#timerBar a {
	float: right;
	color: gold;
}

#page {
/*	width: 60%;
*/	max-width: 800px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}

.card {
	background: white;
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid #ccc;
	color: #444;
	box-shadow: 2px 2px 10px #F0F0F0;
	border-radius: 2px;
}

.card .cardHeader {
	border-bottom: 1px solid rgba(255, 0, 0, 0.5);
	padding: 2em 2em 0.5em;
}

.card .cardHeader h1 {
	margin-bottom: 0;
	display: inline;
}

.card .cardHeader .plusOne {
	float: right;
	margin-top: 5px;
}

.card .recipe {
	background: url('images/card_tile.png');
	background-repeat: repeat;
	padding: 10px 2em 30px;
}

.card .recipe .byline {
	margin-top: 10px;
}

.card #search {

}

.content .mainInfo {

}

.content .moreInfo {
/*	position: absolute;
	top: 178px;
	right: 20%;
*/	font-size: 80%;
	float: right;
	margin-left: 30px;
	margin-right: 20px;
}

.cardFooter {
	margin: -1em 1em 0.5em;
}

.cardFooter .shareButtons * {
	vertical-align: baseline;
	margin-left: 2px;
	margin-right: 2px;
}

.card .recipe.preview img {
	float: right;
	max-height: 50%;
	max-width: 8em;
}

.date {
	font-size: 80%;
}

.author {
	font-size: 80%;
}

img.timer {
	src: url('images/timer.png');	
	margin-top: 4px;
	float: right;
	max-height: 1em;
}

img.timer:hover {
	opacity: 0.5;
}

img.timer:hover ~ li {
/*	background-color: rgba( 255, 255, 0, 0.5 );
	font-weight: 500;
*/	color: rgba( 30, 30, 30, 0.5 );
}

#videos {

}

#videos .video {

}

.video {
	max-height: 250px;
	max-width: 30%;
	box-shadow: 2px 2px 10px #ccc;
	vertical-align: middle;
	margin: 10px 1% 10px;	
}

#gallery {
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}

#gallery img {
	max-height: 250px;
	max-width: 30%;
	border: 1px solid #bbb;
	box-shadow: 2px 2px 10px #ccc;
	vertical-align: middle;
	margin: 10px 1% 10px;
}

#gallery img:hover {
	opacity: 0.5;
}

#comments {
	margin-top: 20px;
}

.key {
	font-weight: 400;
}

.value {
	font-weight: 300;
	float: right;
}

form .key {
	float: right;
}

a #previous {
	float: left;
}

a #next {
	float: right;
}

.g-plusone {
	float: right;
	display: inline;
}

#profilePicture {
	max-width: 8em;
	max-height: 8em;
	float: right;
	margin: 1em;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 10px #ccc;
}

#disclaimer {
	font-style: italic;
	font-size: 80%;
	font-weight: 300;
}

.button, .input[type="button"] {
	
}

/* Cooking Class terms */
.class {
	color: green;
	text-decoration: underline;
}

.class:hover {
	
}

/* Small screens */
@media (max-width: 800px) { 
	body {
		font-size: 70%;
	}

	#page {
		width: 90%;
    }
    
    header #menu a {
    	margin-right: 1em;
    }
    
    header #signinButton {
		float: none;
	}
    
    header #title a h1 {
		font-family: 'Roboto Slab', 'Georgia', serif;
	}
}
