/* 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;
}
/* HTML5 display-role reset for older browsers */
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;
}
 
 
/* Highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
 
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
	height: 100%;
}


/* Layout Styles*/
html, body {
	width: auto;
	overflow-x: hidden;
	margin: 0;
	padding:0;
}
body{
	color:#1c1c1c;
	background: #000000;
	font-family: 'Roboto', sans-serif;
				background: url('images/bg_bw_rollerskates.gif') no-repeat center center fixed;  
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	clear: both;
}
header {
	background:#ddd;
}
a {
	text-decoration: none;
	color: #fff;
}
 a:hover, a:visited {
	text-decoration: bold;
	background: rgba(255,255,255, 0.5);
	padding: 5px;
	border-radius: 50%;
	     -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    border-radius: 50%;
 }
 h1{
	font-family: 'Josefin Slab', serif;
	font-size: 2em;
	padding: 15px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.25em;
	width: 100%;
	background: #fff;
 }
 h2 {
 	font-family: 'Merriweather', cursive;
 	font-size: 1.1em;
 	font-weight: bold;
 }
 p {
	line-height: 1.25em;
	margin-bottom: 10px;
 }
 footer {
	clear: both;
}
 
 /* Header & Footer */
h1#logo a {
	font-family: 'Josefin Slab', serif;
	font-size: 2em;
	padding: 15px;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-decoration: none;
	color: #000;
 }

#top-bar li {
	font-weight: 700;
	display: inline;
	font-family: 'Merriweather', cursive;
	font-style: italic;
	font-size: 24px;
	color: #ff003f;
	margin: 2% 5%;
}
.buttonLink {
	display: inline-block;
	width: auto;
	background: rbga(250,50,50, 0.5);
}
.buttonLink:hover {
	background-position: 50% 50%;
}

/* Main Boxes */

#content {
	float: right;
	width: 60%;
	margin: 15px 15px 15px 0;
	padding: 1% 2%;
}
#sidebar {
	float: left;
	width: 30%;
	color: #ff003f;
	font-weight: bold;
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	margin: 10px;
}
.box {
	background-color: rgba(255,255,255, 0.75);
	padding: 10px;
}
.blue-words {
	color: #00d4ff;
	font-style: 'Merriweather', cursive;
	font-style: italic;
	font-weight: bold;
	font-size: 18px;
}
.red-words {
	color: #ff003f;
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 24px;
	line-height: 28px;
}
.black-box {
	clear: both;
	background:#000;
	opacity: 0.8;
	padding: 10px;
	line-height:2.5em;
	text-align: center;
	color: #fff;
}
.bold { 
	font-weight: 700;
}

/* Media Queries */
@media all and (max-width: 768px) {
	h1 {
		font-size: 1.5em;
		line-height: 2em;
	}
	h2 {
		font-size: 1.2em;
		line-height: 1.5em;
	}
	#content{
		display: block;
		float: none;
		width: 100%;
		margin: 0;
		padding: 5px;
	}
	#sidebar {
		display: block;
		float: none;
		width: 100%;
		margin: 2% 0;
		padding: 5px;
	}
	#top-bar li {
		display: block;
		padding: 5px auto;
	}
	p {
	font-size: 1em;
	line-height: 1.2em;
	bottom-padding: 5px;
	}
 }
