/**
 * Plugin: Genesis Widgetized Archive
 *
 * @author	David Decker
 *
 * @since	1.0.0
 * @version	1.0.0
 *
 * @copyright	Copyright 2012, David Decker - DECKERWEB
 * @license	GPLv2
 * @link	http://deckerweb.de/
 * @package 	genesis-widgetized-archive
 */

/* Table of Contents

* Column Classes
* Widgets in Archive Page content
* Responsive Design (Media Queries)

*/

/* Column Classes
------------------------------------------------------------ */

.gwat-columns.one-half,
.gwat-columns.one-third {
	float: left;
}

.gwat-columns.one-half {
	width: 48.4375%; /* 558px / 1152px */
}

.gwat-columns.one-third {
	width: 31.25%; /* 360px / 1152px */
}

.gwat-columns.first {
	clear: both;
	margin-left: 0;
}


/* Widgets in Archive Page content
------------------------------------------------------------ */

/* More bottom space after each widget */
#content div.widget-area,
#content div.gwat-before-widgetized {
	margin-bottom: 35px;
}


/* Responsive Design (Media Queries)
------------------------------------------------------------ */

@media only screen and (max-width: 640px) {

	.gwat-columns.one-half,
	.gwat-columns.one-third {
		float: none;
		width: 100%;
	}

}
