@media (min-width: 1200px) {... }
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) { ... }
 
/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
	body {
		padding-left: 0;
		padding-right: 0;
		overflow: hidden;
	}

	h2 {
		font-size: 30px;
		line-height: 35px;
	}

	h3 {
		font-size: 30px;
		line-height: 35px;
	}

	h4 {
		font-size: 20px;
		line-height: 25px;
	}

	.content_wrapper {
		padding: 0;
		margin: 0;
	}

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.title {
		font-size: 25px;
		line-height: 35px;
		margin: 20px 0;
	}

	/* remove right margin from content area - not necessary on phones */
	.post_content {
		margin-right: 0;
	}

	/* standard post info height isn't enough for date, facebook, and twitter buttons */
	.post_info {
		height: auto;
	}

	.breadcrumbs {
		margin-top:20px;
	}

	/* Board of Directors */

	.board_list h4 {
		clear: both;
	}

	.board_list .board_bio {
		margin-top: 20px;
	}

	/* Footer */

	footer .span4 {
		margin-bottom: 50px;
		text-align: center;
	}

	footer .social_links ul {
		text-align: center;
	}

	footer .social_links li {
		display: inline-block;
		float: none;
	}

	/* Front Page */

	.home h2 {
		margin-top: 30px
	}

	.home h3 {
		text-align: center;
	}

	/* Front Page Buttons */

	.front_page_buttons {
		float: none;
	}

	.front_page_buttons li {
		height: auto;
		padding: 15px 20px;
		width: 90%;
		background-image: none;
		background-color: #EBEBEB;
		border: 1px solid #B0B0B0;
		box-shadow: 0 5px 0 #D3D3D3, 0 1px 0 #B0B0B0, 0 4px 6px rgba(0,0,0,0.3);
		border-radius: 5px;
		margin-bottom: 20px;
		margin-left: auto;
		margin-right: auto;
	}

	.front_page_buttons li a {
		display: block;
		line-height: 20px;
		width: 100%;
		height: 100%;
	}

	/** LCR in the News **/

	.post_content .blog_list {
		margin-left: 0;
	}

	.post_content .blog_list li {
		list-style-type: none;
	}

	.blog_list img.wp-post-image {
		display: none;
	}

	.blog_list .blog_list_excerpt {
		clear: both;
	}
	
	.chapters-map {
		width: 480px;
		height: 342px;
	}

}
 
/* Landscape phones and down */
@media (max-width: 480px) {

	.chapters-map {
		width: 300px;
		height: 214px;
	}

}