/* -------------------------------------------------- 
	:: Mobile Visibility Affordances
---------------------------------------------------*/
	
	
	.show-on-phones { display: none !important; }	
	.show-on-tablets { display: none !important; }
	.show-on-desktops { display: block !important; }
	
	.hide-on-phones { display: block !important; }	
	.hide-on-tablets { display: block !important; }
	.hide-on-desktops { display: none !important; }
	
	
	/* Modernizr-enabled tablet targeting */
	@media only screen and (max-width: 1280px) and (min-width: 768px) {
		.touch .hide-on-phones { display: block !important; }
		.touch .hide-on-tablets { display: none !important; }
		.touch .hide-on-desktops { display: block !important; }
		
		.touch .show-on-phones { display: none !important; }
		.touch .show-on-tablets { display: block !important; }
		.touch .show-on-desktops { display: none !important; }
	}
	
		
	@media only screen and (max-width: 767px) {
		.hide-on-phones { display: none !important; }
		.hide-on-tablets { display: block !important; }
		.hide-on-desktops { display: block !important; }
		
		.show-on-phones { display: block !important; }
		.show-on-tablets { display: none !important; }
		.show-on-desktops { display: none !important; }
	}
	
	
	/* Specific overrides for elements that require something other than display: block */
	
	table.show-on-desktops { display: table !important; }
	table.hide-on-phones { display: table !important; }	
	table.hide-on-tablets { display: table !important; }
	
	@media only screen and (max-width: 1280px) and (min-width: 768px) {
		.touch table.hide-on-phones { display: table !important; }
		.touch table.hide-on-desktops { display: table !important; }
		.touch table.show-on-tablets { display: table !important; }
	}
	
	@media only screen and (max-width: 767px) {
		table.hide-on-tablets { display: table !important; }
		table.hide-on-desktops { display: table !important; }
		table.show-on-phones { display: table !important; }
	}





/* Special classes overriding bootstrap */


body {
	color: #fff;
	padding-top: 40px;
	background: url(../images/chalk_back.jpg);
	font-family: 'PT Serif', serif;
	font-size: 14px;
	line-height: 17px;
	font-weight: normal;
}

.container > footer p {
        text-align: center; /* center align it with the container */
}

.container > .content {
	background-color: #2D2D2D;
	border: 10px solid #b5a085;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	padding: 15px 30px 25px 30px;
	margin: 20px 0px 0px 0px;
}

.page-header {
	border-bottom: none;
	padding: 17px 0px 25px 0px;
	-webkit-box-shadow: none;
  	-moz-box-shadow: none;
	box-shadow: none;	
}

.page-header img {
	float: right;
	
}



footer {
	border: none;
}

h1 {
	color: #ffffff;
	font-size: 26px;
	line-height: 48px;
	margin-bottom: 10px;
	font-family: 'Walter Turncoat', cursive, Arial;
}

h2 {
	color: #ffffff;
	font-size: 22px;
	line-height: 25px;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
	font-family: 'Walter Turncoat', cursive, Arial;
}

h3 {
	color: #ffffff;
	font-size: 18px;
	line-height: 25px;
	margin-bottom: 10px;
	font-family: 'PT Serif', serif;
}

h4 {
	color: #ffffff;
	font-size: 16px;
	line-height: 25px;
	margin-bottom: 10px;
	font-family: 'PT Serif', serif;
}

h5 {
	color: #ffffff;
	font-size: 14px;
	line-height: 25px;
	margin-bottom: 10px;
	font-family: 'PT Serif', serif;
}

h6 {
	color: #ffffff;
	font-size: 10px;
	line-height: 25px;
	margin-bottom: 10px;
	font-family: 'PT Serif', serif;
}

li {
	color: #FFFFFF;
}

.row li {
	margin: 5px 0px;
}


