@charset "utf-8";
body {
	font: 80%/1.4 Arial, Helvetica, sans-serif;
	background-image:url(springfieldrestaurant_bg.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	background-color: #000;
	margin: 0;
	padding: 0;
	color: #fff;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #960;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #960;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #CCC;
}
ul.dropmenu {
	float: left;
	margin: 0px; 
	padding: 0px;
	display:block;
	height:35px;
}

.dropmenu li a, .dropmenu li{
	display: block;
}

.dropmenu li a:hover, .dropmenu li.open > a{
	background-color: #300;
	color: #fff;
}

.dropmenu li{
	list-style: none;
	position: relative;	
	top: 1px;
	margin-bottom: 1px;
}

.dropmenu li span{
	background:url("images/plus.png") repeat-x scroll 0 0 transparent;
	display:block;
	float:right;
	height:10px;
	position:absolute;
	right:10px;
	top:13px;
	width:10px;
}

.dropmenu li a, .dropmenu li div{
	-moz-border-radius:5px 5px 5px 5px;
	border-radius:5px 5px 5px 5px;
	background-image: url(images/menu1.png);
	background-repeat: repeat-x;
	color:#FFF;
	display:block;
	font-weight:bold;
	padding:10px 30px 9px 15px;
	text-decoration:none;
	width: 150px;
}

/* Submenu */
.dropmenu li ul, .dropmenu li > div {
	display: none;
	position: absolute;
	left: 100%;
	top: 0%;
	padding: 0px;
	margin-top: -4px;
}

.dropmenu.css-only li:hover > ul, .dropmenu.css-only li:hover > div{
	display: block;
}
/* .dropmenu .open > ul, .dropmenu .open > div{ */
/* 	display: none !important; */
/* } */

.dropmenu li ul li, .dropmenu li ul li a{
	float: none;	
	color: #FFF;
	text-transform: none;
}

.dropmenu li ul li{
	_display: inline;	
}

.dropmenu li > div{
	width: 200px;
}

.dropmenu li ul li a{
	-moz-border-radius:5px 5px 5px 5px;
	background-color:#000;
	color:#fff;
	display:block;
	font-weight:bold;
	padding:10px 30px 9px 15px;
	text-decoration:none;
}

.dropmenu li ul li a:hover{
	background-color: #300;
	color: #fff;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	backgroun-color: transparent;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

.sidebar1 {
	float: left;
	width: 300px;
}
.content {
	width: 660px;
	float: left;
	margin-bottom: 50px;
}
/* ~~ The footer ~~ */
.footer {
	margin-top: 10px;
	height: 30px;
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}