<style type="text/css">
<!--
html {
  width: 100%;
  height:100%;
  background-position: top center;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	padding-top: 40px;
	width: 768px;
	height:1360px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

body {
  height: 1360px;
  background-color: #000;
  background-image: url("../images/bocabg.jpg");
  line-height: 1
}

head {
 height: 30%;
 }
 
/* 
 
 .stickyfooter {
 display: none; 
 }
 */


.stickyfooter, .push {
      Position: absolute;
      Background-image: url("../images/footer-bg.png"); 
      Bottom: 0;
      Height: 214px;
      Width: 758px;
      z-index: -1;
/* display: none;  */ 
       
}
selector { cursor: none; }

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, 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;
	color: #fff; /* 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. */
}

h2 {
	color: #ffedbb;
	margin-top: 0;
	margin-bottom: 8px;	 /* 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;
	font-size: 24px;
	font-weight:normal;
}

h2.shops {

	color: #ffedbb;
	margin-top: 0;
	margin-bottom: 8px;	 /* 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;
	font-size: 22px;
	font-weight:bold;
	

}

h2.map {
	color: #ffedbb;
	margin: 40px 10px 8px;
	padding-right: 15px;
	padding-left: 5px;
	font-size: 22px;
	font-weight:bold;
}


h2.map2 {
	color: #ffedbb;
	margin-top: 60px;
	margin-bottom: 8px;	 /* 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;
	font-size: 24px;
	font-weight:normal;
	text-decoration: underline;
}


h2.storeinfo {
	color: #fff;
	margin-top: 0;
	margin-bottom: 8px;	 /* 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: 0px;
	padding-left: 15px;
	font-size: 24px;
	font-weight:bold;
	width: 200px;
	line-height: 80px;
	float: left;
}

h3.mapinfo {
	color: #fff;
	margin-top: 0;
	margin-bottom: 8px;	 /* 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: 0px;
	padding-left: 15px;
	font-size: 16px;
	font-weight: normal;
	width: 230px;
	float: left;
	line-height: 35px;
	height: 35px;

}

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: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; }

p  { color: #fff; }

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {

	padding: 10px 0;
	margin: 0 auto -8%; 
	height: 1360px;
}

.showcase {width: 100%;
padding: 0px;}
.showcase img {
	margin: 0 auto;
	width: 100%;
}

/* ~~ 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 overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.logo {width: 30%;height:200px;float:left;background-image: url("../images/logo.png");background-repeat: repeat-y;}
.navmain {width: 70%;float: left;height:17%;padding-bottom: 20px;}


/* cupid green 
*******************************************************************************/
.cupid-green{
  background-color: #7fbf4d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7fbf4d), color-stop(100%, #63a62f));
  background-image: -webkit-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -moz-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -ms-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -o-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: linear-gradient(top, #7fbf4d, #63a62f);
  border: 1px solid #63a62f;
  border-bottom: 1px solid #5b992b;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
  box-shadow: inset 0 1px 0 0 #96ca6d;
  color: #000;
  font: bold 24px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 20px 0;
  text-align: center;
  text-shadow: 0 2px 0 #fff;
  margin: 3%;
  }
  
  .cupid-green:hover {
    background-color: #76b347;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #76b347), color-stop(100%, #5e9e2e));
    background-image: -webkit-linear-gradient(top, #76b347, #5e9e2e);
    background-image: -moz-linear-gradient(top, #76b347, #5e9e2e);
    background-image: -ms-linear-gradient(top, #76b347, #5e9e2e);
    background-image: -o-linear-gradient(top, #76b347, #5e9e2e);
    background-image: linear-gradient(top, #76b347, #5e9e2e);
    -webkit-box-shadow: inset 0 1px 0 0 #8dbf67;
    box-shadow: inset 0 1px 0 0 #8dbf67;
    cursor: pointer; 
    margin: 3%;
    padding: 20px 0;
    }
    
/* holy button styles batman: 
*******************************************************************************/
.small-green,.small-green a {
  background-color: #7fbf4d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7fbf4d), color-stop(100%, #63a62f));
  background-image: -webkit-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -moz-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -ms-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -o-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: linear-gradient(top, #7fbf4d, #63a62f);
  border: 1px solid #63a62f;
  border-bottom: 1px solid #5b992b;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
  box-shadow: inset 0 1px 0 0 #96ca6d;
  color: #000;
  font: 16px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 15px 0;
  text-align: center;
  text-shadow: 0 2px 0 #fff;
  width: 30%;
  min-height: 50px; 
  margin: 1%;
  }
  
  .small-green:hover {
    background-color: #76b347;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #76b347), color-stop(100%, #5e9e2e));
    background-image: -webkit-linear-gradient(top, #76b347, #5e9e2e);
    background-image: -moz-linear-gradient(top, #76b347, #5e9e2e);
    background-image: -ms-linear-gradient(top, #76b347, #5e9e2e);
    background-image: -o-linear-gradient(top, #76b347, #5e9e2e);
    background-image: linear-gradient(top, #76b347, #5e9e2e);
    -webkit-box-shadow: inset 0 1px 0 0 #8dbf67;
    box-shadow: inset 0 1px 0 0 #8dbf67;
    cursor: pointer; 
    }    
   
  .cupid-green:active {
    border: 1px solid #5b992b;
    border-bottom: 1px solid #538c27;
    -webkit-box-shadow: inset 0 0 8px 4px #548c29, 0 1px 0 0 #eeeeee;
    box-shadow: inset 0 0 8px 4px #548c29, 0 1px 0 0 #eeeeee; }
	
	
.green.button, .green.button:visited {
    background-color: #76b347;
}
.large.button, .large.button:visited {
    font-size: 24px;
    padding: 15px 0 15px 0;
    width: 43%;
    color: #000;
}

.office.button, .office.button:visited {
    font-size: 24px;
    padding: 14px 0px;
    width: 25%;
}

.small.button, .small.button:visited {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0px;
    width: 220px;
    min-height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}
.dark.button, .dark.button:visited {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0px;
    width: 220px;
    min-height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    background: #000;
    border: 0px solid #63a62f;
    -moz-box-shadow: 0 0 3px 3px #63a62f;
	-webkit-box-shadow: 0 0 3px 3px #63a62f;
	box-shadow: 0 0 3px 3px #63a62f;
	margin: 15px 0;
}

.shop.button, .shop.button:visited {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0px;
    width: 190px;
    min-height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    background: #000;
    border: 0px solid #63a62f;
    -moz-box-shadow: 0 0 3px 3px #63a62f;
	-webkit-box-shadow: 0 0 3px 3px #63a62f;
	box-shadow: 0 0 3px 3px #63a62f;
}

.officemap.button, .officemap.button:visited {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0px;
    width: 170px;
    min-height: 30px;
    line-height: 30px;
    vertical-align: middle;
    text-align: center;
    color: #fff;
    background: #000;
    border: 0px solid #63a62f;
    -moz-box-shadow: 0 0 3px 3px #63a62f;
	-webkit-box-shadow: 0 0 3px 3px #63a62f;
	box-shadow: 0 0 3px 3px #63a62f;
	float: left;
}

.alpha.button, .alpha.button:visited, .alpha.button:link{
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height:80px;
    margin: 5% 3% 0% 3%;
    color: #fff;
    background: #000;
    -moz-box-shadow: 0 0 3px 3px #63a62f;
	-webkit-box-shadow: 0 0 3px 3px #63a62f;
	box-shadow: 0 0 3px 3px #63a62f;
}
.button, .button:visited {
  background-color: #7fbf4d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7fbf4d), color-stop(100%, #63a62f));
  background-image: -webkit-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -moz-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -ms-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -o-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: linear-gradient(top, #7fbf4d, #63a62f);
  border: 1px solid #63a62f;
  border-bottom: 1px solid #5b992b;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
  box-shadow: inset 0 1px 0 0 #96ca6d;
  color: #000;
  font: bold 24px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 20px 0;
  text-align: center;
  margin: 3%;
  vertical-align:middle;

}

 
.darkbutton, .darkbutton:visited {
  background-color: #000;
  border: 1px solid #63a62f;
  border-bottom: 1px solid #5b992b;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
  box-shadow: inset 0 1px 0 0 #96ca6d;
  color: #fff;
  font: bold 18px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 20px 0;
  text-align: center;
  margin: 3%;
  vertical-align:middle;
  width: 210px;
}
 
.button small, .button small:visited {
  background-color: #7fbf4d;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #7fbf4d), color-stop(100%, #63a62f));
  background-image: -webkit-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -moz-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -ms-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: -o-linear-gradient(top, #7fbf4d, #63a62f);
  background-image: linear-gradient(top, #7fbf4d, #63a62f);
  border: 1px solid #63a62f;
  border-bottom: 1px solid #5b992b;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
  box-shadow: inset 0 1px 0 0 #96ca6d;
  color: #000;
  font: normal 18px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 20px 0;
  text-align: center;
  margin: 3%;
  width: 30%;
}

.button dark, .button dark:visited {
  background-color: #000;
  border: 1px solid #63a62f;
  border-bottom: 1px solid #5b992b;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
  box-shadow: inset 0 1px 0 0 #96ca6d;
  color: #fff;
  font: bold 18px/1 "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  padding: 20px 0;
  text-align: center;
  margin: 3%;
  width: 30%;
}



.selector, .checker, .button, .radio, .uploader {
    display: inline-block;
    vertical-align: middle;
}	

.shoplogo {
	width: 300px;
	height: 200px;
	float: left;
}

.shopbuttons {
	width: 450px;
	height: 100px;
	float: left;
}

.shopinfo {
	width: 450px;
	height: 130px;
	float: left;
}

left.shopinfo {
	width: 225px;
	height: 130px;
	float: left;
}

right.shopinfo {
	width: 225px;
	height: 130px;
	float: right;
}

.officesearch {
	width: 55%;
	height: 90px;
	float: right;
}

.officesearchleft {
	width: 45%;
	height: 90px;
	float: left;
}



		
		
-->

/*
	Pretty Table Styling
	CSS Tricks also has a nice writeup: http://css-tricks.com/feature-table-design/
	*/
	
	table {
		overflow:hidden;
		color: #fff;
		font-size: 18px;
		border:2px solid #76B347;
		background:none;
		width:100%;
		margin:5% auto 0;
		-moz-border-radius:5px; /* FF1+ */
		-webkit-border-radius:5px; /* Saf3-4 */
		border-radius:5px;
		-moz-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
		-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	}
	
	th, td {padding:18px 28px 18px; text-align:center; }
	
	th {padding-top:22px; text-shadow: 0px 0px 0px #fff; background:none;}
	
	td {border-top:2px solid #76B347; border-right:2px solid #76B347;}
	
	tr.odd-row td {background:none;}
	
	td.first, th.first {text-align:left}
	
	td.last {border-right:none;}
	
	/*
	Background gradients are completely unnecessary but a neat effect.
	*/
	
	td {
		background: none;
	}
	
	tr.odd-row td {
		background: none;
	}
	
	th {
		background: none;
	}
	
	/*
	I know this is annoying, but we need additional styling so webkit will recognize rounded corners on background elements.
	Nice write up of this issue: http://www.onenaught.com/posts/266/css-inner-elements-breaking-border-radius
	
	And, since we've applied the background colors to td/th element because of IE, Gecko browsers also need it.
	*/
	
	tr:first-child th.first {
		-moz-border-radius-topleft:5px;
		-webkit-border-top-left-radius:5px; /* Saf3-4 */
	}
	
	tr:first-child th.last {
		-moz-border-radius-topright:5px;
		-webkit-border-top-right-radius:5px; /* Saf3-4 */
	}
	
	tr:last-child td.first {
		-moz-border-radius-bottomleft:5px;
		-webkit-border-bottom-left-radius:5px; /* Saf3-4 */
	}
	
	tr:last-child td.last {
		-moz-border-radius-bottomright:5px;
		-webkit-border-bottom-right-radius:5px; /* Saf3-4 */
	}
	
#lean_overlay {
    position: fixed;
    z-index:100;
    top: 50%;
    left: 0px;
    height:100%;
    width:100%;
    background: #000;
    display: none;
}

#specials {
    background: #000000;
    border: 2px solid #63A62F;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    position:absolute;
    top: 200px;
/*    display: none; */
    padding: 30px;
    width: 700px;
}

#directions {
    background: #000000;
    border: 2px solid #63A62F;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
    position:absolute;
    top: 200px;
/*    display: none; */
    padding: 30px;
    width: 700px;
}

.modal_close {
    background: url("../images/modal_close.png") repeat scroll 0 0 transparent;
    display: block;
    height: 14px;
    position: absolute;
    right: 12px;
    top: 12px;
    width: 14px;
    z-index: 2;
}	
.mapheader {
	padding-top: 10px;
	margin-top: 10px;
}

.centerbuttons {
	margin: 0 auto;
	text-align: center;
}

-webkit-user-select:none;
-moz-user-select:none;
:focus {outline: none;}
</style>
