* {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
body {
	margin: 0px;
	background-color:#FFF;
}
.head_wrap {
	height: 185px;
	width: 100%;
	background-color:#FFF;
}
.head_container {
	margin: 0 auto;
	height: auto;
	width: 1000px;;
	background-image: none;
}
.center_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
.m-topnav {
  overflow: hidden;
  background-color: #333;
}

.m-topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125em;
	font-weight: 800;
	color: #f2f2f2;
}

.active {
  background-color: #B20000;
  color: white;
}

.m-topnav .icon {
  display: none;
}

.m-dropdown {
    float: left;
    overflow: hidden;
}

.m-dropdown .m-dropbtn {
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.125em;
	font-weight: 800;
}

.m-dropdown-content {
    display: none;
    position: absolute;
	background-color:#F5F5F5;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.m-dropdown-content a {
    float: none;
    color: #222;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.m-topnav a:hover, .m-dropdown:hover .m-dropbtn {
  background-color: #B20000;
  color: white;
}

.m-dropdown-content a:hover {
    background-color: #FFFFFF;
    color: #B20000;
}

.m-dropdown:hover .m-dropdown-content {
    display: block;
}

@media screen and (max-width: 1170px) {
  .m-topnav a:not(:first-child), .m-dropdown .m-dropbtn {
    display: none;
  }
  .m-topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 1170px) {
  .m-topnav.responsive {position: relative;}
  .m-topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .m-topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .m-topnav.responsive .m-dropdown {float: none;}
  .m-topnav.responsive .m-dropdown-content {position: relative;}
  .m-topnav.responsive .m-dropdown .m-dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
.nav_drop_wrap {
	height: auto;
	width: 100%;
	background-color:#222;
}
.nav_drop_container {
	margin: 0 auto;
	width: 1080px;
	height: 56px;
	background-color:#222;
}
 /* Dropdown Button */
.dropbtn {
    background-color: rgba(19,10,0,0.1);
    padding: 16px;
    border: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	font-weight: 800;
	color: #FFF;
	letter-spacing: 2px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
	padding-right:2px;
}
/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #B20000;
    width: 260px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
    z-index: 1;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	font-weight: 800;
	letter-spacing: 2px;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: #F5F5F5;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
	background-color: #B20000;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #333;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #B20000; cursor: pointer;} 
.nav_wrap {
	margin: 0 auto;
	height: 35px;
	width: 100%;
	background-color: #DF1926;
}
.nav_container {
	margin: 0 auto;
	height: 35px;
	width: 1000px;
}

/* CSS For Dropdown Menu Start */
.nav ul
{
  list-style:none;
  padding:0px;
  margin:0px;
}
.nav ul li
{
  display:inline;
  float:left;
}
.nav ul li a
{
	color:#FFFFFF;
	font-weight:bold;
	font-size:11pt;
	font-family:'Arial Black', Arial, sans-serif;
	text-decoration:none;
	text-shadow: 2px 2px #222222;
	display:block;
	width:120px;
	height:35px;
	text-align:center;
	padding-top:5px;
	padding-left: 0px;
}
.nav ul li a:hover
{
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	text-shadow: 2px 2px #222222;
	display: block;
	width: 120px;
	text-align: center;
	height: 35px;
	background-color: #333;
}
.nav ul li.sublinks a
{
	color:#FFFFFF;
	font-size:10pt;
	font-weight:bold;
	text-decoration:none;
	display:block;
	width:190px;
	height:25px;
	text-align:left;
	padding-left: 20px;
	background-color: #DF1926;
}
.nav ul li.sublinks a:hover
{
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	display: block;
	width: 190px;
	height:25px;
	text-align: left;
	background-color: #333;
}

.nav ul li.sublinks
{
	display:none;
}

/* CSS For Dropdown Menu End */

.nav
{
	width: 1000px;
	float: none;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	height: 35px;
}
.clear
{
  clear:both;
}
.left
{
  float:left;
}

.right
{
  float:right;
}
.spacer_nav {
	margin:0 auto;
	height: 20px;
	width: 100%;
	background-image: url(../images/bkgs/spacer_nav_bkg.jpg);
}
#container {
	margin:0 auto;
	max-width:1000px;
	width:100%;
}
.topspacer_gallery {
	height: 50px;
	width: 100%;
	background-color: #111111;
}
.img_slider_wrap_container {
	min-height: 610px;
	width: 100%;
	background-color: #111111;
}
.img_slider_gallery_container {
	margin: 0 auto;
	height: auto;
	max-width: 1000px;
}
#container .mobile_header_img {
	max-width: 1000px;
	float: left;
	width:100%;
}
#container .mobile-image-contain {
	max-width: 1000px;
	float: left;
	width:100%;
}
#container .mobile-image {
	max-width: 1000px;
	float: left;
	width:100%;
}
.gallery_spacer_wrap {
	height: 30px;
	width: 100%;
	background-color: #FFF;
}
.gallery_spacer {
	margin:0 auto;
	max-width:1000px;
	height:25px;
	width:100%;
}
#container #belownav {
	width: 1000px;
	height: 10px;
	float: left;
	background-image: url(../images/bkgs/belownav.gif);
}
.home_imgs_wrap {
	height: 100px;
	width: 100%;
	background-color: #000;
}
.home_imgs_wrap_container {
	width: 1000px;
	height: 450px;
	float: left;
}
#container .secheaders {
	max-width: 1000px;
	height: 350px;
	float: left;
	background-color: #999;
	width:100%;
}
#container #menus {
	max-width: 1000px;
	min-height:600px;
	width:100%;
	float: left;
	background-image: url(../images/bkgs/menus-bkg.gif);
}
#container .menus_left {
	max-width: 500px;
	float: left;
	width:100%;
}
#container .menus_left_callout {
	max-width: 500px;
	background-color:#CCC;
	float: left;
	width:100%;
}
#container .menus_right {
	max-width: 500px;
	float: left;
	width:100%;
}
#container .menus_right_callout {
	max-width: 500px;
	background-color:#CCC;
	float: left;
	width:100%;
}
#container #menus p.x-section-title {
	clear: both;
    color: #000000;
    font-family: "Palatino Linotype","Book Antiqua",Palatino,serif;
    font-size: 34px;
    font-style: normal;
    font-variant: small-caps;
    font-weight: normal;
    line-height: 1em;
    margin: 0.5em 0 0.5em;
    text-align: center;
    text-decoration: none;
    text-indent: 0;
}
#container #menus p.x-name {
	color: #B62B16;
	font: 16px "Palatino Linotype","Book Antiqua",Palatino,serif;
	margin-bottom: 3px;
	text-align: center;
	text-transform: uppercase;
}
#container #menus p.x-description {
    color: #000000;
    font: 11px "Open Sans",Arial,Helvetica,sans-serif;
    text-align: center;
	margin-bottom: 10px;
}
#container #menus p.x-description-callout {
	color: #B62B16;
	font: 11px "Open Sans",Arial,Helvetica,sans-serif;
	text-align: center;
	font-weight:bold;
	margin-bottom: 10px;
}
#container #menus span.price {
	color: #333333;
	font-weight: normal;
	margin: 0 3px;
	text-align: center;
	margin-bottom: 10px;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 11px;
}
#container #menus span.red {
	color: #B62B16;
	font-style: italic;
	text-align: center;
	font-family: 16px "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 11px;
}
#container #secpage {
	max-width: 1000px;
	min-height: 500px;
	float: left;
	background-image: url(../images/bkgs/secpage-bkg.jpg);
	width: 100%;
}
#container #secpage h1 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18pt;
	color: #DF1926;
	text-shadow: 2px 2px #EEEEEE;
	font-variant: small-caps;
	padding-right: 50px;
	text-transform: none;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin: 0px;
}
#container #secpage h2 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #DF1926;
	padding-right: 0px;
	text-transform: none;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin: 0px;
}
#container #secpage p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #333333;
	padding-right : 0px;
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin: 0px;
}
#container #secpage p a:link, #container #secpage p a:visited {
	color: #333333;
	text-decoration: none;
}
#container #secpage p a:hover {
	color: #DF1926;
	text-decoration: none;
}
#container #secpage h2 a:link, #container #secpage h2 a:visited {
	color: #DF1926;
	text-decoration: underline;
}
#container #secpage h2 a:hover {
	color: #333333;
	text-decoration: underline;
}
#container #secpage ul {
	padding-left: 37px;
	padding-right: 0px;
	line-height: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0px;
	list-style-type: none;
}
#container #secpage li {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size:14pt;
	color:#333333;
	font-weight: bold;
	padding-right: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 0px;
	list-style-type:none;
}
#container #secpage li a:link, #container #secpage li a:visited {
	color:#333333;
}
#container #secpage li a:hover {
	color: #DF1926;
}
#container #secpage .about {
	max-width: 550px;
	height: auto;
	float: left;
	width:90%;
}
#container #secpage .party_card {
	width: 550px;
	height: 600px;
	float: left;
}
#container #secpage .btn {
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  text-shadow: 1px 1px 3px #666666;
  -webkit-box-shadow: 4px 4px 10px #666666;
  -moz-box-shadow: 4px 4px 10px #666666;
  box-shadow: 4px 4px 10px #888888;
  font-family: Arial;
  color: #ffffff;
  font-size: 12px;
  background: #FFF;
  padding: 2px 12px 2px 12px;
  border: solid #333333 2px;
  text-decoration: none;
  width:90%;
}
#container #secpage .btn:hover {
  background: #df1926;
  text-decoration: none;
}
#container #secpage .contact {
	width: 550px;
	height: 660px;
	float: left;
}
#container #secpage .location {
	width: 550px;
	height: 600px;
	float: left;
}
#container #secpage .events {
	max-width: 1000px;
	height: 1100px;
	float: left;
	width: 100%;
}
#container #secpage .event_specials {
	max-width: 1000px;
	height: auto;
	float: left;
	width:100%;
}
#container #secpage .gallery {
	width: 1000px;
	height: 530px;
	float: left;
}
#container #secpage .eclubdining {
	width: 550px;
	height: 400px;
	float: left;
}
#container #secpage .secpage_left h1 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 18pt;
	color: #DF1926;
	text-shadow: 2px 2px #EEEEEE;
	font-variant: small-caps;
	padding-right: 0px;
	text-transform: none;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin: 0px;
}
#container #secpage .secpage_left h2 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #333333;
	text-shadow: 2px 2px #EEEEEE;
	font-variant: small-caps;
	padding-right: 0px;
	text-transform: none;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin: 0px;
}
#container #secpage .secpage_left p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #333333;
	padding-right : 20px;
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 0px;
	padding-left: 35px;
	margin: 0px;
}
#container #secpage .secpage_left p a:link, #container #secpage .secpage_left p a:visited {
	color: #333333;
	text-decoration: none;
}
#container #secpage .secpage_left p a:hover {
	color: #DF1926;
	text-decoration: none;
}
#container #secpage .secpage_right {
	width: 450px;
	float: left;
}
#container #secpage .secpage_right h1 {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #FFFFFF;
	text-shadow: 2px 2px #DDDDDD;
	padding-right: 0px;
	text-transform: none;
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 25px;
	margin: 0px;
}
#container #secpage .secpage_right p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #FFFFFF;
	padding-right : 20px;
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 0px;
	padding-left: 25px;
	margin: 0px;
}
#container #secpage .secpage_right p a:link, #container #container #secpage .secpage_right p a:visited {
	color:#CC6600;
	text-decoration:none;
}
#container #secpage .secpage_right p a:hover {
	color:#333333;
	text-decoration:none;
}
#container #secpage #map_canvas {
	max-width: 450px;
	height: auto;
	float: left;
	margin-left: 35px;
	border-style: solid;
	border-width: 2px;
	border-color: #666;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
#container #spacerbtm {
	max-width: 1000px;
	height: 15px;
	float: left;
	width:100%;
	background-image: url(../images/bkgs/menus-bkg.gif);
}
#container #menupagebottom {
	max-width: 1000px;
	height: auto;
	float: left;
	width:100%;
	background-image: url(../images/bkgs/menus-bkg.gif);
}
#container #menupagebottom p {
	padding-right: 0px;
	font-weight: normal;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
	text-align:center;
	height:30px;
}
#container #menupagebottom .btn {
  -webkit-border-radius: 8;
  -moz-border-radius: 8;
  border-radius: 8px;
  text-shadow: 1px 1px 3px #666666;
  -webkit-box-shadow: 4px 4px 10px #666666;
  -moz-box-shadow: 4px 4px 10px #666666;
  box-shadow: 4px 4px 10px #666666;
  font-family: Arial;
  color: #ffffff;
  font-size: 12px;
  background: #df1926;
  padding: 2px 12px 2px 12px;
  border: solid #333333 2px;
  text-decoration: none;
}
#container #menupagebottom .btn:hover {
  background: #333333;
  text-decoration: none;
}
.button_home {
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
  border-radius: 4px;
  background-color: #B20000;
  border: solid;
  border-width:1px;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.250em;
  padding: 16px;
  width:auto;
  transition: all 0.5s;
  cursor: pointer;
  margin-top: 2px;
  text-shadow: 2px 2px #222;
}
.button_home span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button_home span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button_home:hover span {
  padding-right: 25px;
}
.button_home:hover span:after {
  opacity: 1;
  right: 0;
}
.bottom_menu_wrap {
	margin: 0 auto;
	height: 35px;
	width: 100%;
	background-color: #DF1926;
}
#footer {
	width: 100%;
	clear: both;
	height: auto;
	background-image: url(../images/bkgs/sf-logo-bkg-oct-2018.jpg);
}
#footer_wrapper {
	max-width: 1000px;
	height: 250px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	width: 100%;
}
#footer_wrapper .above_foot {
	max-width: 1000px;
	height: 25px;
	width:100%;
}
#footer_wrapper .footer_top {
	max-width: 1000px;
	height: 45px;
	float: left;
	border-image:none;
	width:100%;
}
#footer_wrapper .footer_top p {
	padding-right: 0px;
	font-weight: normal;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
	text-align:center;
}
#footer_wrapper .footer_top_left {
	max-width: 470px;
	height: 45px;
	float: left;
	width:100%;
}
#footer_wrapper .footer_left {
	max-width: 120px;
	height: 45px;
	float: left;
	width:100%;
}
#footer_wrapper .footer_top p {
	font-family:'Open Sans', Arial, Helvetica, sans-serif;
	font-size:9pt;
	color:#ffffff;
	line-height:15px;
	font-weight: normal;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
}
#footer_wrapper .footer_top p a:link, #footer_wrapper .footer_top p a:visited {
	color:#7e949f;
}
#footer_wrapper .footer_top p a:hover {
	color:#FFFFFF;
}
#footer_wrapper .footer_right {
	max-width: 800px;
	height: 45px;
	float: left;
	width:100%;
}
#footer_wrapper .footer_right_top {
	max-width: 800px;
	height: 16px;
	float: left;
	background-color: #000;
	width:100%;
}
#footer_wrapper .footer_right p {
	padding-right: 0px;
	font-weight: normal;
	padding-top: 20px;
	padding-bottom: 0px;
	padding-left: 3px;
	margin: 0px;
	text-align:left;
	color:#FFF;
}
#footer_wrapper .below_footer {
	max-width: 1000px;
	height: 40px;
	float: left;
	width:100%;
}
#footer_wrapper .below_footer p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	padding-top: 16px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
	text-align: center;
}
#footer_wrapper .below_footer p a:link, #footer_wrapper .below_footer p a:visited {
	color: #DF1926;
	text-decoration:none;
}
#footer_wrapper .below_footer p a:hover {
	color: #CCCCCC;
	text-decoration:none;
}
#footer_wrapper .below {
	max-width: 1000px;
	height: 40px;
	float: left;
	width:100%;
}
#footer_wrapper .below p {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 9pt;
	color: #000000;
	line-height: 15px;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin: 0px;
	text-align: center;
}
#footer_wrapper .below p a:link, #footer_wrapper .below p a:visited {
	color:#7e949f;
}
#footer_wrapper .below p a:hover {
	color:#FFFFFF;
}
