/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */

/* HTML element (SMACSS base) rules */
@import "normalize.css";

/* Layout rules */
@import "layouts/responsive.css";

/* Component (SMACSS module) rules */
@import "components/misc.css";
/* Optionally, add your own components here. */
@import "print.css";

/* SMACSS theme rules */
/* @import "theme-A.css"; */
/* @import "theme-B.css"; */


/* TEMP HOMEPAGE FIX */

.temp-homepage-fix {
	width: 50%;
	float: left;
	background-color: white;
	text-align: center;
	min-height: 500px;
}

.temp-homepage-fix:first-of-type {
	padding-top: 30px;
}

@media (max-width: 767px) {
	
	.temp-homepage-fix {
		width: 100%;
		float: left;
		background-color: white;
		text-align: center;
		min-height: 500px;
	}
	
}

/* TEMP HOMEPAGE FIX */