/*  SECTIONS  */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/*
html {
    overflow: scroll;
    overflow-x: hidden;
}
::-webkit-scrollbar {
    width: 0px;  Remove scrollbar space
    background: transparent; Optional: just make scrollbar invisible 
}
*/

body {background-color: #454545;}
        

	/*p {font-family: Arial, Times New Roman, serif;*/
	p {font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #999999;
	font-weight: 400;
	}
	
/* unvisited link */
a:link {
  color: #999999;
}

/* visited link */
a:visited {
  color: #999999;
}

/* mouse over link */
a:hover {
  color: #ffffff;
}

/* selected link */
a:active {
  color: #999999;
}	
	
a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}	
/*  COLUMN SETUP  */
.col {
	display: block;
	float:left;
	margin: 1% 0 1% 1.6%;
}

.col:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after { content:""; display:table; }
.group:after { clear:both;}
.group { zoom:1; /* For IE 6/7 */ }

/*  GRID OF FOUR  */
.span_4_of_4 {
	width: 100%;
}
.span_3_of_4 {
	width: 74.6%;
}
.span_2_of_4 {
	width: 49.2%;
}
.span_1_of_4 {
	width: 23.8%;
}


/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 480px) {
	.col {  margin: 1% 0 1% 0%; }
	.span_1_of_4, .span_2_of_4, .span_3_of_4, .span_4_of_4 { width: 100%; }
}