#home-content .btnRight{
	float: right;
	margin-left: 10px;
}

/* price tables */
#home-content .tuitionTable{ 
	width: 100%; 
	border-collapse: collapse;
}
#home-content .tuitionTable tr:nth-of-type(odd){ 
	background: #eee; 
}
#home-content .tuitionTable th{ 
	background: #763775; 
	color: white; 
	font-weight: bold; 
}
#home-content .tuitionTable td,
#home-content .tuitionTable th{ 
	padding: 6px; 
	border: 1px solid #ccc; 
	text-align: left; 
}
#home-content .tuitionTable td{
	width: calc(100% / 8);
}
#home-content .tuitionTable + h4{
	margin-top: 10px;
}
.header a.btnContact{
	display: none;
}

/* calculator */
#home-content .filters{
	margin: 0;
}
#home-content .filters .grid3{
	margin-top: 5px;
	padding: 0 2px;
}
#home-content .filters .grid3:nth-of-type(4n+1){
	padding-left: 0;
}
#home-content .filters .grid3:nth-of-type(4n+4){
	padding-right: 0;
}
#home-content .filters .grid3 label{
	display: block;
	background: #763775;
	color: #FFF;
	font-weight: bold;
	margin: 0;
	padding: 5px 10px;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}
#home-content .filters select{
	width: 100%;
	padding: 5px;
	border-top: none;
}
#home-content p.formBtns{
	margin: 0;
	clear: left;
}
#home-content p.formBtns a{
	margin-right: 5px;
}
#home-content .calcTable{ 
	width: 100%; 
	border-collapse: collapse; 
}
#home-content .calcTable tr:nth-of-type(odd){ 
	background: #eee; 
}
#home-content .calcTable th{ 
	background: #763775; 
	color: white; 
	font-weight: bold; 
}
#home-content .calcTable td,
#home-content .calcTable th{ 
	width: 33.3333%;
	padding: 6px; 
	border: 1px solid #ccc; 
	text-align: left; 
}
#home-content .calcTable td p{
	margin: 0;
	min-height: 24px;
}
#home-content .calcTable .financialAidNote{
	display: block;
	font-weight: bold;
	font-style: italic;
}
#home-content .invisible{
	display: none;
}
#home-content .errorMsg{
	color: red;
	font-weight: bold;
}
#home-content .overFullTimeMsg{
	font-weight: bold;
}

@media only screen and (max-width:768px){
	/* price tables */
	#home-content .tuitionTable,
	#home-content .tuitionTable thead,
	#home-content .tuitionTable tbody,
	#home-content .tuitionTable th,
	#home-content .tuitionTable td,
	#home-content .tuitionTable tr{ 
		display: block; 
	}
	#home-content .tuitionTable thead tr{ 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#home-content .tuitionTable tr{
		border: 1px solid #ccc;
	}
	#home-content .tuitionTable td{ 
		border: none;
		border-bottom: 1px solid #ddd; 
		position: relative;
		padding-left: 50%; 
	}
	#home-content .tuitionTable td:before{ 
		position: absolute;
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	#home-content .tuitionTable td:before{
		content: attr(data-label);
		font-weight: bold;
	}

	/* calculator */
	#home-content .calcTable,
	#home-content .calcTable thead,
	#home-content .calcTable tbody,
	#home-content .calcTable th,
	#home-content .calcTable td,
	#home-content .calcTable tr{ 
		display: block; 
	}
	#home-content .calcTable thead tr{ 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	#home-content .calcTable tr{
		border: 1px solid #ccc;
	}
	#home-content .calcTable td{ 
		width: auto;
		border: none;
		border-bottom: 1px solid #ddd; 
		position: relative;
		padding-left: 50%; 
	}
	#home-content .calcTable td:before{ 
		position: absolute;
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
	}
	#home-content .calcTable td:before{
		content: attr(data-label);
		font-weight: bold;
	}
}