/* 
 * responsive.css - Responsive CSS styles used within the website
 */

@media only screen and (max-width: 1199px) {
    
}

@media only screen and (max-width: 959px) {
    .entry-wrap img.alignleft {
        max-width: 320px;
    }
}

@media only screen and (max-width: 767px) {
    .mobile_show {
        display: block;
    }
    .mobile_hide {
        display: none;
    }
    
    .entry-wrap {
        padding: 18px !important;
    }
    h1.entry-title {
        margin-top: 10px;
        margin-bottom: 22px;
        font-size: 32px;
    }
    .entry-title {
        font-size: 24px;
        line-height: 30px;
    }
    .entry-content, p {
        font-size: 16px;
        line-height: 26px;
    }
	
	img.mobile_show {
		width: 330px;
		max-width: 100%;
		margin: 0 auto 25px auto;
	}
}

@media only screen and (max-width: 525px) {
    
}

@media only screen and (max-width: 479px) {
    
}

