/*
	 PGE 0.9
	 Michael Buchleitner
	 inspired by:
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }
html { overflow-y: scroll; }
body { font: 12px/1.4 "Trebuchet MS", Helvetica, sans-serif; background: #999; color: #333; }
.group:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.group { display: inline-block; clear: both; }
/* start commented backslash hack \*/ * html .group { height: 1%; } .group { display: block; } /* close commented backslash hack */
article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; }
a { color: #ff7400}
a:focus { outline: 0; }

#page-wrap { 
    width: 800px; margin: 20px auto 5px; background: #ffffff; 
    padding: 8px;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
	background: -moz-linear-gradient(top,  #fff,  #eee);
	-webkit-border-radius: 16px;
	-moz-border-radius: 16px;
}

#main-content { padding: 14px; }

h1 { font: bold 26px "Trebutchet MS", Helvetica, Sans-Serif; letter-spacing: -1px; padding: 14px; color: #333; text-shadow: 1px 1px 1px white; }
h2 { font: bold 20px "Trebutchet MS", Helvetica, Sans-Serif; letter-spacing: -1px; color: #333;}
h3 { font: bold 16px "Trebutchet MS", Helvetica, Sans-Serif; letter-spacing: -1px; color: #333;}
p { font: "Trebutchet MS", Helvetica, Sans-Serif; color: #333; margin: 0 0 15px 0; }
 
nav ul { 
    list-style: none; background: #154c85; padding: 5px 20px; width: 778px; position: relative; 
    left: -9px;
}
nav ul li { display: inline; }
nav ul li a {
	display: block;
	float: left;
	border-top: 1px solid #88e9ff;
	background: #3e779d;
	background: -webkit-gradient(linear, left top, left bottom, from(#65a9d7), to(#3e779d));
	background: -moz-linear-gradient(top,  #3d789f,  #28597a);
	height: 17px;
	padding: 0 10px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	-webkit-box-shadow: rgba(0,0,0,1) 0 1px 3px;
	-moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
	text-shadow: rgba(0,0,0,.4) 0 1px 0;
	-webkit-text-stroke: 1px transparent;
	font: bold 11px/16px "Trebuchet MS", "Lucida Grande", "Verdana", sans-serif;
	color: rgba(255, 255, 255,.85);
	text-decoration: none; 
	margin: 0 5px 0 0;
}
nav ul li a:hover {
	border-top: 1px solid #4789b4;
	background: #28597a;
	background: -webkit-gradient(linear, left top, left bottom, from(#ff9900), to(#cc5500));
	background: -moz-linear-gradient(top,  #ff9900,  #cc5500);
	color: rgba(0,0,0,.85); 
}	
nav ul li a:active, nav ul li a.current {
	border-top-color: #ffd445;
	background: #ffab00;
	position: relative;
	top: 1px; 
}

footer { color: #999; margin: 0 auto; width: 800px; }