/*
 * styles for the new structual HTML5 elements
 * roughly equivalent of browsers treatment of div
 */
section, article, footer, nav, aside, header, hgroup {
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
	width: 100%;
}

body {
   background-color: black;
   color: yellow;
   border: 0px solid red;
}

header>nav {
    background-color: transparent;
    position: relative;
    top: 0;
    left: 0;
    z-index: 42;
    float: left;
    border: 0px solid green;
}

aside>nav {
    background-color: transparent;
    width: 200px;
    position: absolute;
    bottom: 3em;
    right: 0;
    z-index: 41;
}
canvas {
	clear: both;
	display: block;
	margin: auto;
	text-align: center;
	border: 0px solid white;
	z-index: 39;
}

footer{
	text-align: center;
	clear: both;
	position: absolute;
	bottom: 0;
	z-index: 42;
	border: 0px solid yellow;
	padding: 20px;
	width: 96%;
}
footer {
	font-family: sans-serif;
	font-size: 0.8em;
	background-color: transparent;
	color: #ffffff;
	text-decoration: none;
}
footer>aside {
    display: inline;
}
#punch {
	width: 22em;
	position: absolute;
	left: 50%;
	bottom: 20px;
	margin-left: -10em;
	border: 0px solid white;
}
#htmlogo {
    float: right;
}
#twitter {
    float: left;
    width: 10em;
	border: 0px solid blue;
}
/* menu ------------------------------------------------- */
ul {
   list-style: none;
   padding: 0;
   margin: 0 20px;
   overflow: hidden;
   border: 0px solid fuchsia;
   float: left;
}

ul li {
   float: left;
   width:84px;
   height:56px;
   margin:32px 16px 0 0;
   text-align: center;
}

aside>nav>ul li {
   float: right;
}

ul li a {
   background-color: #000000;
   color: #ffffff;
   display: block;
   width: 84px;
   height: 50px;
   overflow: hidden;
   border: 1px solid #009900;
   line-height: 50px;
   text-decoration: none;
   font-family: "Luxi Sans", sans-serif;
   font-size: 2.4em;

   /* css3 */
   text-shadow: 0 -1px 0 rgba(0,0,0,0.5);
   -moz-border-radius: 12px;
   -webkit-border-radius: 12px;
   border-radius: 12px; /* standards version last */

   -moz-box-shadow: 0 0 14px rgba(0,0,0,0.4);
   -webkit-box-shadow: 0 0 14px rgba(0,0,0,0.4);
   box-shadow: 0 0 14px rgba(0,0,0,0.4);
   background: -webkit-gradient(linear, left top, left bottom, from(#ff9933), to(#333333));
   background: -moz-linear-gradient(top, #ff9933, #333333);
   background: linear-gradient(top, #ff9933, #333333);
}
ul.auit li a {
   background: -webkit-gradient(linear, left top, left bottom, from(#3300cc), to(#333333));
   background: -moz-linear-gradient(top, #3300cc, #333333);
   background: linear-gradient(top, #3300cc, #333333);
}
ul.kvu li a {
   background: -webkit-gradient(linear, left top, left bottom, from(#00cc33), to(#333333));
   background: -moz-linear-gradient(top, #00cc33, #333333);
   background: linear-gradient(top, #00cc33, #333333);
}

ul li a sub{
	font-size: 60%;
}

ul li a:hover {
   opacity:0.8;
   border-color:#000;
   color: #ff00ff;
}

aside>nav>ul li a {
   background: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#000033));
   background: -moz-linear-gradient(top, #f1f1f1, #000033);
   background: linear-gradient(top, #f1f1f1, #000033);
}
/* ------------------------------------------------------------------ */

.int a {
   color: black;
   background: -webkit-gradient(linear, left top, left bottom, from(#f19242), to(#66ccff));
   background: -moz-linear-gradient(top, #f19242, #66ccff);
   background: linear-gradient(top, #f19242, #66ccff);
}


