@charset "UTF-8";
/* CSS Document */
/*RESET*/
* {
	margin: 0;
	padding: 0;
	outline: none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

html {
	font-size: 100%;
	height: auto !important;
	height: 100%;
	-webkit-text-size-adjust: 100%;
	  -ms-text-size-adjust: 100%;
}

.clear {
	display: block;	
}
	
	.clear:after {
		clear: both;
		content: ".";
		display: block;
		height: 1px;
		visibility: hidden;
	}

/*GENERIC STYLES*/

body { 
	background: #fff;
	color: #222;
	-webkit-font-smoothing: antialiased;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 1.05em;
	font-weight: 400;
	height: auto !important;
	height: 100%;
	line-height: 1.6em;
	min-height: 100%;
}

.wrapper {
	display: block;
	margin: 0 auto;
	width: 1100px;	
}

header {
	/*background: linear-gradient(to left,rgba(54,194,182,0.96) 0,rgba(62,188,207,0.96) 100%);*/
	background: linear-gradient(to left,rgba(0,0,113,0.96) 0,rgba(12,49,217,0.96) 100%);
	border-bottom: 1px solid rgba(0,0,0,.1);
	box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
	display: block;
	height: 60px;
	line-height: 60px;
	overflow: hidden;
	position: fixed;
	text-transform: uppercase;
	width: 100%;
	z-index: 1000;
}

footer {
	border-top: 1px solid #eee;
	color: rgba(0,0,0,.4);
	font-size: .75em;
	letter-spacing: 1px;
	padding: 24px 0;
	text-transform: uppercase;	
}

/*NAV*/
nav > ul {
	list-style-type: none;
	margin: -1px 0 0 0;
}

	nav > ul > li {
		display: inline-block;
		transition: all 0.1s linear;
	}
	
		nav > ul > li > a {
			color: rgba(255,255,255,.75);
			display: block;
			font-size: .8em;
			font-weight: 600;
			letter-spacing: 1px;
			padding: 0 24px;
			text-decoration: none;
			text-shadow: 0 1px 1px rgba(0,0,0,.1);
		}
		
			nav > ul > li.active > a,
			nav > ul > li.logo > a {
				color: rgba(255,255,255,1);	
			}
		
			nav > ul > li:not([class="active"]):hover {
				background-color: rgba(0,0,0,.1);	
			}
		
			nav > ul > li.logo > a {
				font-family: Georgia, "Times New Roman", Times, serif;
				font-size: 1.15em;
				font-style: italic;
				letter-spacing: normal;
				text-transform: none;
			}

/*BODY*/
section#content-main {
	padding: 90px 0;	
}

section#content-main > .sidebar {
	background-color: #fafafa;
	border: 1px solid #eee;	
	border-radius: 5px;
	color: rgb(153,153,153);
	font-size: .9em;
}

	section#content-main > .sidebar ul {
		list-style-type: none;	
	}
	
		section#content-main > .sidebar ul > li {
			display: block;	
		}
		
			section#content-main > .sidebar ul > li > a {
				color: rgba(153,153,153,.75);
				display: block;
				padding: 6px 24px;
				text-shadow: none;
			}
			
				section#content-main > .sidebar ul > li.active > a {
					color: rgba(62,188,207,0.96);
				}

/*GRID*/

[class*="col-"] {
	display: block;
	float:left;
	margin: 0 0 0 1.6%;
}

[class*="col-"]:first-of-type {
	margin: 0;
}

	.col-1 {
		width: 100%;	
	}
	
	.col-2-3 {
		width: 66.1%;	
	}
	
	.col-1-3 {
		width: 32.2%;	
	}

/*STYLE ELEMENTS*/

h1 {
	border-bottom: 1px solid #eee;
	font-weight: 500;	
	padding: 24px 0 12px;
	margin: 0 24px 24px;
}

h3 {
	margin: 0 0 12px;
	padding: 24px 24px 0;
}

p {
	padding: 0 24px 48px;	
}

	p > a {
		color: rgba(62,188,207,0.96);
		font-weight: bold;	
	}
	
ul {
		padding: 0 24px 48px;
	}
		

/*RESPONSIVE*/	
@media only screen and (max-width: 480px) {
	.wrapper {
		width: 480px;	
	}
	
	header {
		height: auto;
		position: relative;
		width: 480px;
	}
	
	nav > ul > li {
		display: block;	
	}
	
	[class*="col-"] {
		margin: 0;
		width: 100%;	
	}
	
	section#content-main > .sidebar {
		border-radius: 0;
		border-left: 0;
		border-right: 0;	
	}
}
