/* Table of Content
==================================================
	#Site Styles
	#Media Queries

/* #Site Styles
================================================== */

/* video embed */

.embedVideo {
	position: relative;
	padding-bottom: 56.25%; /* 16/9 ratio */
	padding-top: 0; /* IE6 workaround*/
	height: 0;
	overflow: hidden;
	margin-bottom: 20px;
}

.embedVideo iframe,
.embedVideo object,
.embedVideo embed,
.embedVideo video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.callOut {
	background: #f3f3f3;
	padding: 25px 30px 10px;
	border: 1px solid #dedcda;
	margin-bottom: 20px;
}
	.callOut h3 {
		color: #ed1c2c
	}
	
.notice {
	display: block;
	background: #eee;
	padding: 25px 30px 10px;
	margin-bottom: 25px;
	border-radius: 3px; 
	border: 1px solid #ddd;
	box-sizing: border-box;
}
    .notice a.button {
        margin-bottom: 0 !important;
    }

.people {
    text-align: center;
}
	

/* #Media Queries
================================================== */

	/* Tablet Landscape size to wide monitor  */
	@media only screen and (min-width: 960px) and (max-width: 1279px) {
		
		
	}
	
	/* Tablet Portrait down  */
	@media only screen and (max-width: 959px) {

		h1 {
			font-size: 20px;
			line-height: 28px;
		}
		h2 {
			font-size: 18px;
			line-height: 26px;
		}
		h3 {
			font-size: 16px;
			line-height: 24px;
		}
		h4 {
			font-size: 14px;
			line-height: 22px;
		}
		
		p {
			line-height: 22px;
		}
		
	}


	/* Tablet Portrait size to standard 960  */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
		
		.no-mob-all{
			display: none;
		}
		.mob-only-all {
			display: block !important;
		}
		
	}

	/* All Mobile Sizes  */
	@media only screen and (max-width: 767px) {
		
		/* top bar
		-------------------------------------------------- */
		
		.no-mob, .no-mob-all {
			display: none !important;
		}
		.mob-only, .mob-only-all {
			display: block !important;
		}
		
		hr {
			padding-top: 12px;
			margin: 0 0 30px;
		}	
		
	}

	/* Mobile Landscape Size to Tablet Portrait  */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
	

	}

	/* Mobile Portrait Size to Mobile Landscape Size  */
	@media only screen and (max-width: 479px) {
		
		.no-mob-p {
			display: none !important;
		}
		.mob-only-p {
			display: block;
		}
		.inline-only-p {
			display: inline;
		}
		
		.callOut ul {
			margin-left: 20px;
		}
		
	}
