@charset "utf-8";
/* Styles that override the defaults based on the screen size *
/* xs, sm, md, lg */

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */
@media (min-width: 400px) {
}
@media (min-width: 500px) {
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.home-feature-content {
		min-height: 200px;
	}
}
/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.home-feature-content {
		min-height: 130px;
	}
}
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
	.home-feature-content {
		min-height: 120px;
	}
} 

@media print {
	body {
		background-image: none;
	}
	.container {
		width: 100% !important;
	}
	#headercontainer, #navbar-users, #navbar-dbmain, .admin_user_topnavbar, #footer, .footer_nav, .footercontent_featured {
		display: none;
	}
	.logo_wrapper {
		background-color: transparent;
	}
	#print_logo {
		display: block;
	}
	a[href]:after {
		content: none;
	}	
	.maincontent1, .maincontent2 {
		padding-left: 0px;
		padding-right: 0px;
	}
}


