/*
* Build Base Theme
* Copyright 2014, Build Studio Inc.
* www.buildstudio.ca
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 7/23/14
*/


/* Table of Contents
==================================================
    #CSS Reset
    #Fluid Grid
    #Mobile


/* #CSS Reset
================================================== */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0b1 | 201101 
   NOTE: WORK IN PROGRESS
   USE WITH CAUTION AND TEST WITH ABANDON */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* #Fluid Grid
================================================== */

.container {
	width: 100%;
	padding: 0;
}

.row {
	width: 100%;
	max-width: 1460px;
	margin: 0 auto;
	overflow: hidden;
}

.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol, .thirteencol, .fourteencol, .fifteencol {
	margin-right: 2.4%;
	float: left;
}

.onecol			{ width: 4%; 	}
.twocol 		{ width: 10.4%; }
.threecol 		{ width: 16.8%; }
.fourcol 		{ width: 23.2%; }
.fivecol 		{ width: 29.6%; }
.sixcol 		{ width: 36%;	}
.sevencol 		{ width: 42.4%; }
.eightcol 		{ width: 48.8%; }
.ninecol 		{ width: 55.2%; }
.tencol 		{ width: 61.6%; }
.elevencol 		{ width: 68%;	}
.twelvecol 		{ width: 74.4%;	}
.thirteencol 	{ width: 80.8%; }
.fourteencol 	{ width: 87.2%; }
.fifteencol 	{ width: 93.6%; }
.sixteencol 	{ width: 100%; float: left; }

.thirdcol		{ width: 31%; margin-right: 3.5%; float: left; }

.last { margin-right: 0px; }

img, object, embed { max-width: 100%; }


/*  #Mobile
================================================== */

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

.row, .body, .container {
	width: 100%;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 0px;
	padding-right: 0px;
}

.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol, .thirteencol, .fourteencol, .fifteencol, .sixteencol, .thirdcol {
	width: auto;
	float: none;
	margin-left: 0px;
	margin-right: 0px;
	padding-left: 20px;
	padding-right: 20px;
}

}