 body {
	 background: rgb(230,230,230);
	 font-size: 12px;
 }

.page {
	background: white;
	padding: 10px 15px;
	margin: 0 auto;

	/* shadow */
	box-shadow: 0 0 10px black;
	webkit-box-shadow: 0 0 10px black;
	moz-box-shadow: 0 0 10px black;

	margin-top: 10px;
}

ul, p, h1, h2, h3 {
	margin: 5px 0;
}

h1, h2, h3, a {
	color: rgb(120,0,120);
	text-decoration: none;
}
a:hover {
	color: rgb(120,0,120);
	text-decoration: underline;
}

div.contact-box {
	color: white;

	/* border radius */
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	/* gradient */
	background: #000000;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#282828', endColorstr='#000000');
	background: -webkit-linear-gradient(top, rgb(40,40,40) 0%, black 100%);
	background: -moz-linear-gradient(top, rgb(40,40,40), black);
}
.contact-box div {
	padding: 15px;
}
.contact-box div p {
	color: white;
}

.reference img {
	margin-right: 20px;
}


h2 {
	font-size: 1.5em;
	font-weight: bold;
}

h1 {
	color: black;
	font-weight: bold;
	font-size: 2em;
	font-style: italic;
	color: rgb(80,0,80);

	width: 113px;
	height: 60px;
	background: url(/images/logo.png);
	margin: 0;
}

h1 span {
	display: none;
}

hr {
	background: rgb(180,180,180);
}


ul.nav {
	margin: 20px 0 0 0;
	list-style-type: none;
	padding: 0;
	height: 30px;

	/* radius */
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	/* gradient */
	background: #640064;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#640064', endColorstr='#460046');
	background: -webkit-linear-gradient(top, rgb(100,0,100) 0%, rgb(70,0,70) 100%);
	background: -moz-linear-gradient(top, #640064, #460046);
}
ul.nav li {
	float: left;
	border-right: 1px solid rgb(70,0,70);
}
ul.nav li a {
	font-size: 1em;
	font-weight: bold;
	padding: 0 20px;
	line-height: 30px;
	color: white;
	text-transform: lowercase;
}
ul.nav li a.first { }



