/*
Welcome to Custom CSS!

To learn how this works, see http://wp.me/PEmnE-Bt
*/
/* Genesis Sandbox Featured Content Pages in Home-Middle */
.gsfc-page .entry-title {
	padding: 40px 40px 0;
}

/*DL - changed home page middle content boxes to have white background default black text*/
.home-middle .featured-content.featuredpost {
	background-color: #fff;
}

.gsfc-page p {
	padding: 0 40px;
}

/*DL change link color*/
/*LV change link color from #000 to d6301f*/
a:link {
	color: #d6301f;
}

/*DL change nav bar bg color*/
.genesis-nav-menu a:hover, .genesis-nav-menu .current-menu-item > a, .genesis-nav-menu .v .current-menu-item > a:hover {
	background-color: transparent;
}

/*DL change color of nav-sub-menu bg*/
.genesis-nav-menu .sub-menu a {
	background-color: #b3b090;
}

.genesis-nav-menu .sub-menu a:hover {
	background-color: #8c8e66;
}

/*align right sidebar with top of center content box*/
.sidebar-primary {
	margin-top: 42px;
}

/*make primary nav bar background semi opaque*/
.nav-primary {
	background-color: rgba(69,66,57,0.5);
}

/*make site header background semi opaque*/
.site-header {
	background-color: rgba(69,66,57,0.5);
}

/*make site default background not show default yellow color - not working - DL set bg color to #cbc4aa*/
#home-welcome {
	background: transparent;
}

/*LV changing background timing using LJ's code from SHO*/
@media only screen and (max-width: 800px)
#home-welcome {
	
}

/*DL reduce white-space between home top and home middle widget areas*/
.home-top .wrap {
	padding: 1% 0;
}

/*DL change font size and spacing sitewide*/
p {
	font-family: 'Lato', sans-serif;
	color: #000000;
	font-size: 18px;
	margin: 0 0 10px;
}

/*DL changes to create special-blockquote styling*/
/*LV change blockquote bg and border color*/
blockquote {
	max-width: 80%;
	position: relative;
	padding: 20px 15px 10px 50px;
	margin: 40px;
	border-left: 5px solid #d6301f;
	background: #d6cda6;
	border-radius: 10px;
}

/*LV change blockquote befor and after color*/
blockquote:before, blockquote:after {
	content: "“";
	font-size: 70px;
	font-family: "Georgia", Serif;
	color: #d6301f;
	position: relative;
	left: -30px;
	top: -35px;
}

blockquote:after {
	display: none;
}

/*DL changes sitewide h-tags's - color, size, font-weight*/
/* LV changes to sitewide h2 tag*/
h2 {
	font-size: 34px;
	color: #3c5365;
	font-weight: bold;
}

/* LV changed H3 color*/
h3 {
	color: #Oa5a5a;
	font-size: 30px;
	font-weight: bold;
}

/*LV change font color Dark Olive Green*/
h4 {
	color: #53373c;
	font-size: 26px;
	font-weight: bold;
}

/*LV change font color = dark slate gray*/
h5 {
	color: #2d3939;
	font-size: 22px;
	font-weight: bold;
}

/*LV change font color to tan*/
h6 {
	color: #868673;
	font-size: 16px;
	font-weight: bold;
}

/*LV set up hover color*/
a:hover {
	color: green;
}

/*LV change nav menu text hover color*/
.genesis-nav-menu a:hover {
	color: #d32;
}

/*LV addition: Contact Linda button*/
button {
	-webkit-border-radius: 12;
	-moz-border-radius: 12;
	border-radius: 12px;
	-webkit-box-shadow: 6px 6px 6px #666666;
	-moz-box-shadow: 6px 6px 6px #666666;
	box-shadow: 6px 6px 6px #666666;
	font-family: Arial;
	color: #ffffff;
	font-size: 36px;
	background: #d63O1f;
	padding: 10px 20px;
	text-decoration: none;
}

button:hover {
	background: #d63O1f;
	background-image: -webkit-linear-gradient(top,#d63O1f,#f00909);
	background-image: -moz-linear-gradient(top,#d63O1f,#f00909);
	background-image: -ms-linear-gradient(top,#d63O1f,#f00909);
	background-image: -o-linear-gradient(top,#d63O1f,#f00909);
	background-image: linear-gradient(to bottom,#d63O1f,#f00909);
	text-decoration: none;
}