/* RESET */
a {
	text-decoration: none;
}
/* GENERAL */
html {
	background-color: #f7f7f7;
	-webkit-text-size-adjust: none;
}
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	width: 960px;
	margin: 0 auto;
}
/* LOGO */
#logo a {
	float: left;
	background-image: url(/img/logo.png);
	background-repeat: no-repeat;
	height: 72px;
	margin-top: 24px;
	padding-left: 80px;
	padding-top: 21px;
	font-size: 30px;
	font-weight: bold;
	opacity: .75;
	color: #000000;
	-webkit-transition: .25s;
}
#logo a:hover {
	opacity: 1;
}
#logo a:active {
	-webkit-transition: 0s;
	position: relative;
	top: 1px;
}
/* NAVIGATION */
#nav {
	float: right;
	margin-top: 24px;
	padding-top: 28px;
}
#nav li {
	display: inline;
}
#nav a {
	margin: 0 5px;
	padding: 5px 10px;
	border: 1px solid #b3b3b3;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e6e6e6));
	-webkit-border-radius: 15px;
	color: #333333;
	opacity: .75;
	-webkit-transition: .25s;
}
#nav a:hover {
	opacity: 1;
}
#nav a:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(#cccccc));
}
.text {
	clear: left;
}
