@charset "UTF-8";

*{
	box-sizing: border-box;
}

body{
	font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	margin: 0;
	font-size: 16px;
	background-color: rgba(36,36,36,1.00);
}

nav{
	width: 410px;
	height:50px;
	float:right;
}

nav a:link{
	font-size: 20px;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	text-decoration: none;
	color: white;
	/*margin: 10px;*/
	padding:10px;
	display: inline-block;
	background-color: rgba(105,152,195,1.00);
	/*float:right;*/
	transition:all .5s;

}
	
nav a:visited{
	font-size: 20px;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	text-decoration: none;
	color: white;
	margin: 10px;
	padding:10px;
	display: inline-block;
	background-color: rgba(105,152,195,1.00);
}

nav a:hover{
	/*background-color:rgba(33,85,164,1.00);*/
	padding-bottom: 20px;
	border-bottom: 4px solid white;
}

nav a:active{
	background-color: rgba(69,52,181,1.00);
	
}

p{
	line-height: 160%;
	
}

.biggertype{
	font-size: 1.5em;

	letter-spacing: 2px;

}
.intro{
	font-size: 1.2em;
	margin-left: 0;
	margin-left: 0;
	padding-left: 0;
	border-left: 0;
}

header{
	width: auto;
	height: 100px;
	background-color:rgba(119,119,119,1.00);
}
.container{
	width: 80%; 
	min-width: 900px;
	height:  auto;
	border: 1px solid rgba(182,182,182,1.00);
	margin: 0 auto;
}
article{
	width: 75%;
	height: 2300px; 
	float: left;
	background-color: rgba(188,188,188,1.00);
	padding: 40px;
	box-sizing: border-box;
	border: 2px rgba(71,71,71,1.00);
}
aside{
	width: 25%;
	height: 2300px; 
	float: right;
	background-color: rgba(184,184,184,1.00)
}
h1{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 72px;
}

img.floatright{
	float:right;
}
img.spaced{
	/*padding-left: 20px;*/
text-align:center;
}

img.flex{
	width: 100%;
		box-sizing: border-box;
	border-top: 6px white solid;
	filter:saturate(0%);
		transition:all .5s;
}

img.flex:hover{
	border-top: 6px gold solid;
	filter:saturate(100%);
	transform:scale(1.05);
	padding-top:10px;
}

