/*------------------ CSS RESET ------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* 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;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------ CSS RESET ------------------*/





/*------------------ BORDER BOX FIX ------------------*/

*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/*------------------ BORDER BOX FIX ------------------*/





/*------------------ CUSTOM STYLES ------------------*/



/* BASIC STYLING SETUP */

html {
	font-size: 			62.5%;
}

body {
	font-family: 		"Telex", sans-serif;
	letter-spacing: 	0.1rem;
	word-spacing: 		0.01rem;
	overflow-y:			scroll;
}

main {
	width: 				100%;
	margin: 			0 auto;
	min-width:			320px;
	max-width:			960px;
}

#background {
	position: 			fixed; 
	bottom: 			0; 
	top:  				0;
	left: 				0; 
	right: 				0;
	z-index: 			-1;
	background: 		#66DBFF; /* Old browsers */
	background:			webkit-gradient(45deg, #66DBFF 0%, #A6F7DA 40%, #A6F7DA 60%, #66DBFF 100%);
	background: 		linear-gradient(45deg, #66DBFF 0%, #A6F7DA 40%, #A6F7DA 60%, #66DBFF 100%);
}

::selection {
	background: 		rgb(0, 195, 255);
}

::-moz-selection {
	background: 		rgb(0, 195, 255);
}

p {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}



/* MOBILE FIRST - NAVIGATION */

#left-column {
	display: 			none;
	width: 				100%;
	font-family: 		'Telex', sans-serif;
	font-size: 			2.0rem;
	text-align: 		center;
	background: 		#fff;
	clear:				both;
}

h1 {
	padding: 			1.0rem 0rem;
	font-family: 		'Source Sans Pro', sans-serif;
	font-weight: 		700;
	font-size: 			2.5rem;
}

nav {
	line-height: 		2.2rem;
	padding-bottom: 	2.0rem;
}

#left-column .links{
	display: 			none;
}

#left-column h6 {
	display: 			none;
}

a:link, a:visited {
	color: 				black;
	text-decoration: 	none;
	-webkit-transition: all 200ms ;
	transition: 		all 200ms ;
}

a:hover {
	color: 				rgb(0, 195, 255);
}

footer {
	display:			none;
	width: 				100%;
	float: 				left;
	font-family: 		'Telex', sans-serif;
	font-size: 			1.5rem;
	line-height: 		1.8rem;
	text-align: 		center;
	background: 		white;
	clear:				both;
	padding:			1.0rem 0rem;
}

footer h6 {
	font-size: 			0.8rem;
	color: 				rgb(0, 195, 255);

}

#cc-bottom {
	width: 88px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;	
}

#cc-left {
	display: none;
}

.bigger {
	font-size: 			1.5rem;
}


/* INDEX PAGE DOUBLE COLUMN TABLET LAYOUT */

@media all and (min-width: 760px) {

	#left-column {
		display: 			none;
		position: 			fixed;
		top: 				0px;
		bottom:				0px;
		width: 				20%;
		max-width: 			192px;
		float: 				left;
		text-align: 		right;
		clear:				none;
		border-bottom-right-radius: 5px;
		border-bottom-left-radius: 5px;
	}

	h1 {
		padding: 			2.5rem 1.0rem 3.0rem 0rem;
	}

	nav {
		line-height: 		3.0rem;
		padding: 			0rem 1.0rem 2.0rem 0rem;

	}

	#left-column .links{
		display: 			block;
		border-top-style: 	dotted;
		border-top-color: 	rgb(0, 195, 255);
		font-size: 			1.3rem;
		border-top-width: 	2px;
		margin-bottom: 		30px;
		padding:			1.0rem 1.0rem 2.0rem 0rem;
		line-height: 		1.9rem;
	}

	#left-column h6 {
		display:			block;
		padding:			0rem 1.0rem 1.5rem 0rem;
		font-size: 			0.8rem;
		color: 				rgb(0, 195, 255);
	}

	#cc-left {
		display: block;
		width: 88px;
		margin-left: auto;
		margin-right: 1.0rem;
	}

}

@media all and (min-width: 960px) {

	#left-column { 
		bottom: 			auto;
	}

}



