/* screen.css */

@font-face {
    font-family: "PT Sans Caption";
	font-style: normal;
	font-weight: 400;
	src: local('PT Sans Caption'), local('PTSans-Caption'), url("../fonts/pt-sans-caption.woff") format('woff');
}

html, body {
	margin: 0;
	padding: 0;
}

body {
	background: rgb(62,86,107);
	color: rgb(244,244,244);
	font-size: 62.5%;
}

h1 {
	display: none;
}

#header,
#contact {
	margin: 10% auto 0;
	padding-top: 196px;
	width: 175px;
	position: relative;
	border-bottom: 4px solid rgb(191,229,115);
	box-shadow: 0 1px 2.5px rgba(0,0,0,.6);
	background-color: rgb(244,244,244);
	background-repeat: no-repeat;
	background-position: top left;
	color: rgb(135,135,135);
}

#header {
	background-image: url("../images/header.gif");
}

#contact {
	background-image: url("../images/contact.gif");
}

#header .description,
#contact .description {
	display: none;
}

#nav {
	margin: 0 auto;
	padding: 0;
	width: 175px;
	position: relative;
	z-index: 100;
	list-style-type: none;
	font-family: "PT Sans Caption", "Helvetica Neue", Helvetica, sans-serif;
}

#nav li {
	margin-bottom: 5px;
	box-shadow: 0 1px 2.5px rgba(0,0,0,.6);
	background-color: rgb(41,63,82);
	font-size: 1.125em;
	line-height: 1;
	letter-spacing: .05em;
	/*text-shadow: 0 .1em .1em rgb(0,0,24);*/
}

#nav li a, #nav li a:visited {
	padding: 1.2em 15px;
	display: block;
	color: rgb(244,244,244);
	text-decoration: none;
	text-transform: uppercase;
}

#nav li:hover {
	background-color: rgba(41,63,82,.8);
}

#nav a:after {
	content: " \00bb";
	font-size: 1.2em;
}