@charset "UTF-8";
/* CSS Document */

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

/*------------------------------------------------------------------------Reset*/

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	color: white;
	/*background: #050b11;*/
}


:focus {
	outline: none;
}

/*------------------------------------------------------------------------Helper Classes*/

.hide {
	display: none;
	visability: hidden;
}

.left {
	float: left;
}

.right {
	float: right; 
}

.clear {
	clear: both;
}

/*------------------------------------------------------------------------Clearing*/

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/*end hide from IE-Mac */

