/*
* Percentage V1.0
* c.schneider@e-sens-e.de
* 22/04/2014
*/


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	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, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 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; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }
	img, table, td, blockquote, code, pre, textarea, input, video {
		max-width: 100%;
	}

/* #Basic Styles
================================================== */
	*{    
		-webkit-box-sizing:border-box;
		-moz-box-sizing:border-box;
		box-sizing:border-box;
	}

	body {
		background: #fff;
		font: 14px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #444;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
	}
	

	
/* blocks widths (percentages
================================================== */

.wide10    { width: 10%; }
.wide20    { width: 20%; }
.wide25    { width: 25%; }
.wide30    { width: 30%; }
.wide33    { width: 33.3333%; }
.wide35    { width: 35%; }

.wide40    { width: 40%; }
.wide45    { width: 45%; }
.wide50    { width: 50%; }
.wide60    { width: 60%; }
.wide66    { width: 66.6666%; }
.wide70    { width: 70%; }

.wide75    { width: 75%; }
.wide80    { width: 80%; }
.wide90    { width: 90%; }
.wide100   { width: 100%; }

.h100 {    height: 100%; }

.table {
    display: table;
}

table, .table {
    border-collapse: collapse;
    max-width: 100%;
    table-layout: fixed;
    vertical-align: top;
}

.row > *, .col {
    display: table-cell;
    vertical-align: top;
}

/* #Misc
================================================== */

.clearfix:after, .line:after, .mod:after {
    clear: both;
    content: "";
    display: table;
}
.hidden 
{
display: none;
}

/* layouts for large (l) screens
================================================== */
@media (min-width: 1200px) {
	.large-hidden,
	.tablet-hidden { display: none !important; }
	.large-visible { display: block !important; }
}


/* quick tablet reset 
================================================== */
@media (max-width: 768px) {
	div, textarea, table, td, th, code, pre, samp {
		word-wrap: break-word;
		-webkit-hyphens: auto;
		   -moz-hyphens: auto;
		    -ms-hyphens: auto;
		     -o-hyphens: auto;
		        hyphens: auto;
	}
}


/* quick smartphone reset
================================================== */
	@media (max-width: 640px) {
	.mod,
	.col,
	fieldset {
		display: block !important;
		float: none !important;
		clear: none !important;
		width: auto !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		border: 0;
	}
	
	.row { 
		display: block !important;
		width: 100% !important;
	}
	
	th,
	td {
		display: block !important;
		width: auto !important;
		text-align: left !important;
	}
	
	thead { display: none; }
	
	.tiny-hidden,
	.phone-hidden { display: none !important; }
	.tiny-visible { display: block !important; }
}

