@charset "utf-8";
/* CSS Document */

body {
	margin: 0;
	padding: 0;
	background-color: black;
}

a:link 	{text-decoration: none; color: crimson; font-weight: bold;}
a:visited {text-decoration: none; color: crimson; font-weight: bold;}
a:hover 	{text-decoration: none; color: antiquewhite; font-weight: bold; background-color: orange;}
a:active 	{text-decoration: none; color: antiquewhite; font-weight: bold; background-color: crimson;}

li a:link 	{text-decoration: none; color: antiquewhite;}
li a:visited 	{text-decoration: none; color: antiquewhite;}
li a:hover 	{text-decoration: none; color: antiquewhite; background-color: firebrick; border-radius: 10px; padding: 0px 10px;}
li a:active 	{text-decoration: none; color: antiquewhite; background-color: black; border-radius: 10px; padding: 0px 10px;}


/* DIV Sections */

#layout {
	width: 960px;
	height: 100%;
	margin: auto;
	background-color: cadetblue;
}

#header {
	display: block;
	background-image: url(images/bbq_header.jpg);
	height: 345px;
}

#content {
	display: block;
	background-image: url(images/bbq_background.jpg);
}

#navbar {
	display: block;
	float: left;
	width: 170px;
	margin: -20px 0px 0px 20px;
}


#main {
	display: block;
	float: left;
	width: 480px;
	margin: -20px 0px 0px 20px;
}

#sidebar {
	display: block;
	float: left;
	width: 230px;
	margin: -20px 0px 0px 20px;
}

#footer {
	display: block;
	background-image: url(images/bbq_footer.jpg);
	height: 70px;
	padding: 60px 50px 15px 50px;
	text-align: center;
}

#videobox {
	display: block;
	position: relative;
	top: 25px;
	left: 435px;
	height: 270px;
	width: 500px;
}

/* Main Navigation */

ul {
	list-style-type: none;
	margin: 0;
	padding: 5px;
}

li {
	font-family: 'Bubblegum Sans', cursive;
	width: 150px;
	height: 30px;
	font-size: 20px;
	padding-top: 8px;
	margin-bottom: 8px;
	text-align: center;
	text-transform: uppercase;
	background-image: url(images/navbar_rib.png);
}

/* Headings and Paragraphs */

h1, h3 {
	text-align: center;
	font-family: 'Bree Serif', serif;
	margin: 0;
	padding: 0;
	color: wheat;
}

h2 {
	font-family: 'Bree Serif', serif;
	margin: 0 15px;
	padding: 0;
}

p {
	font-family: 'Quicksand', sans-serif;
	font-size: 14px;
	margin: 0px;
}

p.bodytext {
	margin: 10px 25px;
	
}

p.image img {
	border: 5px solid DarkGoldenRod;
	margin: 0px 10px;	
}

p.crew_desc {
	text-align: center;
	font-family: tahoma, sans serif;
	font-size: 12px;
	font-weight: bold;
	line-height: 110%;
	padding: 5px 15px 25px;
}

p.awards {
	text-indent: -20px;
	margin: 10px 10px 10px 50px;
}

p.awards::first-line {
	font-weight: bold;
}

p.menu {
	text-indent: -20px;
	margin: 10px 50px 10px 75px;
}

p.menu::first-line {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

p.special {
	padding: 5px 30px;
	text-align: center;
}

p.special img {
	border: 5px double black;
}

img.banner {
	float: left;
	padding: 10px 20px;
	
}

h1 {
	width: 460px;
	margin: 0px 10px;
	padding-bottom: 2px;
	border-radius: 10px;
	font-size: 24px;
	background-color: midnightblue;
}

#navbar h3 {
	width: 160px;
	margin: 0px 5px 0px 5px;
	padding-bottom: 2px;
	border-radius: 10px;
	font-size: 18px;
	background-color: midnightblue;
	z-index: 0px;
}

#navbar p {
	text-align: center;
	font-size: 12px;
	background-color: antiquewhite;
	margin: 0px 5px;
	padding: 3px;
}

#sidebar h3 {
	width: 220px;
	margin: 0px 5px;
	padding-bottom: 2px;
	border-radius: 10px;
	font-size: 18px;
	background-color: midnightblue;
	z-index: 0px;
}

#sidebar p {
	color: antiquewhite;
	margin: 10px 5px 0px 5px;
}

#footer p {
	font-family: 'Maven Pro', sans-serif;
}

/* Special Elements */

hr {
	width: 80%;
	height: 5px;
	background-color: midnightblue;
	border-bottom: 3px double dodgerblue;
	border-top: 1px solid dodgerblue;
}

div.short_brace {
	position: relative;
	left: -20px;
	top: -20px;
	width: 210px;
	height: 30px;
	z-index: 10px;
}

div.the_sauce {
	margin: 10px 35px;
	width: 400px;
	height: 100px;
}

div.the_sauce::first-line {
	padding-top: 15px;
	font-size: 18px;
	font-weight: bold;
}


.event_left {
	display: block;
	float: left;
	text-align: right;
	font-weight: bold;
	width: 125px;
	padding-right: 5px;
	padding-top: 10px;
}

.event_right {
	display: block;
	float: left;
	text-align: left;
	width: 325px;
	padding-top: 10px;
}

img.image_wrap {
	float: left;
	padding: 0px 15px;
}

img.menubanner {
	border: 5px double black;
	margin: 10px 5px;
}

img.menubanner:hover {
	position: absolute;
	width: 100px;
	height: 112px;
	border: 5px solid crimson;
	transition-duration: .5s;
	z-index: 10;
}