﻿@charset "utf-8";

/* ------------------------------------- 
		GLOBAL 
------------------------------------- */

body {
	-webkit-font-smoothing: antialiased; 
	-webkit-text-size-adjust: none; 
	
	background: #d7d7d7 url("/_images/bg_greytone.gif") repeat-x;
	text-align: center;
	margin: 0 30px;
}

a {
	text-decoration: none;
	color: #616161;
}

	a: hover {
		text-decoration: underline;
	}

h1 {
	color: #616161;
	font-family: "Roboto", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
}

h2 {
	color: #616161;
	font-family: "Roboto", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 5px;
}

h3 {
	color: #616161;
	font-family: "Roboto", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

p {
	color: #616161;
	font-family: "Roboto", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	margin: 0 0 10px 0;
}

p strong {
	font-weight: 700;
}

hr {
	clear: both;
	background-color: #c9c9c9;
	width: 100%;
	height: 1px;
	border: none;
	margin: 0;	
}

/*///////////
// CLASSES //
///////////*/

.page_wrapper {
	width: 830px;
	margin: 50px auto 0;
}

.logo {
	float: left;
	width: 311px;
	margin-right: 29px;
}

.main {
	float: left;
	position: relative;
	width: 480px;
}

	.paragraph {
		text-align: left;
		position: absolute;
		left: 0;
		top: 90px;
	}
	
	.mirror {
		top: 295px!important;
		-webkit-transform: scaleY(-1);
		-moz-transform: scaleY(-1);
		-ms-transform: scaleY(-1);
		-o-transform: scaleY(-1);
		transform: scaleY(-1);
		filter: flipv;
		opacity: 0.20;
		filter: alpha(opacity='20');
	}
	
		
.footer {
	margin: 20px auto 35px;
	text-align: center;
	
	color: #000;
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

	.footer a {
		color: #dd4199;
		font-family: "Roboto", Arial, Helvetica, sans-serif;
		font-size: 11px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.footer span {
		margin: 0 10px;
		border-left: #aaa 1px solid;
	}

.clear {
	clear: both;	
}
	
<!--[if lte IE 8]> .mirror { display: none; } <![endif]-->

/* ------------------------------------------- 
		PHONE
		For clients that support media queries.
		Nothing fancy. 
--------------------------------------------/
@media only screen and (max-width: 780px) {
	
	body { background: #f1f1f1 url("/_images/bg_greytone_no_mirror.gif") repeat-x!important; }
	div[class="page_wrapper"] { width: 100%!important; }
	[class="collapse"] { width: 100%!important; }
	[class="paragraph"] { top: 0px; }
	

}

*/