/*turn off breadcrumbs */
#breadcrumb {display: none;}

/*Hide the comment counter for each post on the blog posts list*/
.post-comments{display: none;}

/*On the homepage, the slideshow title and caption text will display in white font*/
.slide-title, .slide-caption{
	color: white;
}
.slide-caption{
	background: rgba(25, 25, 25, .25);	
}
.slider-slides .slide-caption{
	padding: 8px;
}

/*Make links green to fit theme*/
a:link, a:visited{
	color: darkgreen;
	//text-decoration: underline;
}
/*Underline links in blog post content AND the features on the home page*/
.feature-title a:link, .post-content a:link{
	text-decoration:underline;
}

/*On the homepage, this makes the portfolio items easier to read.*/
.portfolio-item .portfolio-item-title{
	text-shadow: 3px 3px 2px black;
	-webkit-text-stroke: 1px white;
	/*background:lightgray;
	opacity:0.9;
	bottom: 50%;*/
}
.portfolio-item .portfolio-item-description{
	/*top: 40%;*/
	text-shadow: 1px 1px gray;
}
/*On the homepage, the buttons on the slideshow were hard to see.*/
html body .button, html body .button:link, html body .button:visited, input[type=submit]{
	background:white;
	opacity: 0.9;
	border: 2px solid #89ce40;
	color: #89ce40;
	text-shadow: none;
}
/*On the homepage, when the user hovers over a button on the slideshow, it will turn green.*/
html body .button:hover, input[type=submit]:hover {
    color: #fff;
    background: #89ce40;
	  opacity: 1.0;
}
/*I did this so the google ads would have a green background */
body {
    background-color: darkgreen
}
/*I did this so I could have upper and lower-case text on the homepage slides*/
.slider-slides .slide-caption {
     text-transform: NONE; 
}
/*I did this so the hustle popup and slide-in titles would be visible */
.hustle-modal-body{
	background-color: #38454e;
	/*opacity: 0.75;*/
}
/*I did this so the hustle popup close button wouldn't float above the popup box */
/*THIS DOESN'T WORK*/
.hustle-layout-header{
	top: 0px;
}
/*I did this so the text on the site would be bigger in general*/
p{
	font-size: 1.25em;
}
/*I did this so the jetpack subscribe button would look like the theme's "button" class*/
button{
	font-size: 1em;
    background: white;
    opacity: .9;
    border: 2px solid #89ce40;
	line-height: 40px;
    color: #89ce40;
    text-shadow: none;
}
button:hover{
	color: white;
	background: #89ce40;
	opacity: 1.0;
}
/*I did this so the text on the site would be a darker gray and easier to read */
html body {
	color: #666666;
}
/*Fix for Hustle popups on mobile*/
@media screen and (max-width: 910px) {
        .astm-search-menu-wrapper {
                width: initial;
        }
}
/*Place a dashed line around google ads to differentiate from the post photos*/
div.google-auto-placed{ 
  border-color: lightgrey;
    border-style: dashed;
    border-width: medium;
	margin-bottom: 20px;
}
/*Put some white space between headers and paragraphs to make the posts easier to read*/
h1, h2, h3, h4, h5, h6 {
    margin-bottom: .5em; 
	
}