/*  Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how to render a web page. You may delete these comments and get started with your customizations.

By default, your stylesheet will be loaded after the theme stylesheets, which means that your rules can take precedence and override the theme rules. Just write here what you want to change, you don't need to copy all your theme's stylesheet content.
*/
/*-- Added 2019-04-07awm to INCREASE menu item size 
 font-size was 11px --*/
	.primary-navigation {
		float: right;
		font-size: 15px;
		margin: 0 1px 0 -12px;
		padding: 0;
		text-transform: uppercase;
	}

/*-- Added styling 
   20141022awm Added "material design"-like shadow under box headings...
--*/
.xx-boxwshadow {
/* 20151103 awm disabled by renaming */
	border-width: 1px;
	border-color: #e6e6e6;
	border-style: solid;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 2px 3px 3px 2px #eee;
}

.xx-noshadowbox {
	border-width: 1px;
	border-style: solid;
	padding: 10px;
	border-radius: 1px 0 5px 5px;
	border-color: #e6e6e6;
	background-color: white;
	margin-top: 3px;
}

/*-- 20151216awm style list in MEALS menu page id=58 --*/
.mealslist li {
	font-variant: small-caps;
}

/*-- *****NOT USED***** 20151216awm style the print button on menu page id=14  --*/
.menuprtbtn {
	display: none;
	text-decoration: none;
	color: #8c8c8c;
	padding: 3px;
	background-color: #eee;
	border-radius: 3px;
}


/*-- end of additional styling added by awm --*/
/*-- CHANGE DEFAULT PAGE CONTENT WIDTH
    =============================================
     awm Overrides here to the default style.css
    =============================================
--*/
/*-- 20141111awm   chk hover color to logo golden
     20160121awm using black #000 now...
--*/
a:active,
a:hover {
	color: #000 !important;
	background-color: #ff9 !important;
/* was #e7e689 !important; BUT IT COMES OUT SUPER LIGHT! */
/* was #41a62a; */
}

/*-- 20141111awm   chg current menu item  and hover on menu color
--*/
a {
	color: #8d99a6;
	text-decoration: none;
}

::selection {
	background: #8d99a6;
	color: #fff;
	text-shadow: none;
}

::-moz-selection {
	background: #8d99a6;
	color: #fff;
	text-shadow: none;
}

/* Search in the header */
.search-toggle {
	background-color: #8d99a6;
/* was #24890d; */
	cursor: pointer;
	float: right;
	height: 48px;
	margin-right: 38px;
	text-align: center;
	width: 48px;
}

@media screen and (min-width: 783px) {
	.primary-navigation ul ul {
		background-color: #8d99a6;
	/* was #24890d; */
		float: left;
		margin: 0;
		position: absolute;
		top: 48px;
		left: -999em;
		z-index: 99999;
	}
}

@media screen and (min-width: 1008px) {
	.secondary-navigation ul ul {
		background-color: #8d99a6;
	/* was #24890d; */
		position: absolute;
		top: 0;
		left: -999em;
		width: 182px;
		z-index: 99999;
	}
	
	.secondary-navigation li:hover > a,
																																											.secondary-navigation li.focus > a {
		background-color: #8d99a6;
	/* was #24890d; */
		color: #fff;
	}
}

/*-- 20141022awm:  INCREASE WIDTH OF POST to 630px from 478px  --*/
.site-content .entry-header,
.site-content .entry-content,
.site-content .entry-summary,
.site-content .entry-meta,
.page-content {
	margin: 0 auto;
	max-width: 630px;
}

/*-- 20141107awm:   change background color of navbar from black
--*/
.site-header {
	background-color: #8D99A6;
}

/*-- 20141107awm:   change background color of side bar from black
--*/
#secondary {
	background-color: #8D99A6;
}

/*-- 20141107awm:   Change color of tag line in the sidebar
                    also make it bold
--*/
#secondary {
	color: rgba(252,178,21,1.0);
	font-weight: bold;
}

/*-- 20111108awm   Color of site tag line, font size, weight
--*/
.site-description {
	display: normal;
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
	color: rgba(231,230,137,1.0);
}

/*-- end override section --*/