@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Allerta+Stencil|Comfortaa:700,400,300|Oxygen:300,400,700);

/* 

#CFFF19 - yellow
#FE4375 - pink
#ECECEC - white
#5B5B5B - grey
#541F14 - brown
#006D91 - blue
#63A4FC - other blue


*/


body {
	
	/* backup font family, in case Google ever explodes off of the face of the Earth */
/*	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;*/
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 67.5%;
	margin: 0;
	padding: 0;
	
	/* Default font color */
	color: #000;
	
	
	background-color: #5B5B5B;
}

header{
	background-color:#5B5B5B;
}

footer{
	background-color:#5B5B5B;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

/* Dummy Implementation of Page Title */
h1 {
		
	margin: 0;	
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 0;
	
	font-family: 'Allerta Stencil', sans-serif;
	font-size:3.6em;
	font-weight:400;
	color:#63A4FC;
}


/* Dummy Implementation of Author Name */
h2{
	margin:0;
	padding-top:0;	
	padding-right: 15px;
	padding-left: 15px;
	font-family: 'Comfortaa', cursive;
	font-size:2.4em;
	font-weight:400;
	color:#FE4375;
}


/* Dummy Implementation of Newark Review Button */
h3{
	margin-top: 0;	
	padding-right: 15px;
	padding-left: 15px;
	font-family: 'Comfortaa', cursive;
	font-size:2.4em;
	font-weight:400;
}

h3 a:link, a:visited, a:active{
	color:black;
	text-decoration: none;
}

p{
font-family: 'Oxygen', sans-serif;
	padding-right: 15px;
	padding-left: 15px;
	font-weight:300;
	font-size:1.5em;
	color:#CFFF19;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #ECECEC;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #ECECEC;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
/*	width: 960px;*/
	width: 95%;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}


.content {
	padding: 10px 0;
	background-color:#5B5B5B;
	width:100%;
/*background-color:#541F14;*/
}

/*.content p{
	font-family:harabara;
}*/

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}