/*-moz-border-radius-topleft / -webkit-border-top-left-radius
-moz-border-radius-topright / -webkit-border-top-right-radius
-moz-border-radius-bottomleft / -webkit-border-bottom-left-radius
-moz-border-radius-bottomright / -webkit-border-bottom-right-radius
*/

/* Element Styles */

body {
  background-color: #333;
  font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  margin: 0px;
  font-size: small;
}

a:hover {
  text-decoration: underline;
  color: #fff;
}

a {
  text-decoration: none;
  color: #a8d26b;
}

h1 {
  color: #a8d26b;
  font: 50px "Lucida Grande", Lucida, Verdana, sans-serif;
}

h2 {
	font-size: 14px;
	font-weight: bold;
  color: #a8d26b;
}

h3 {
  color: #fff;
	font-size: 12px;
}


/* Identified Styles */


#Container {
  width: 95%;
  margin: auto;
  margin-top: 10px;
}

#Header {
  background-color: #1a1a1a;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-radius-topleft: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px; 
  border-radius-topright: 10px;
/*  -webkit-box-shadow: 2px 2px 11px #888;
*/
}

#Navigation {
  height: 20px;
  color: #fff;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border: 1px ridge #5a5a50;
  font: 11px "Lucida Grande", Lucida, Verdana, sans-serif;
}

#Navigation a {
  color: #5a5a5a;
}

#Navigation a:hover {
  color: #fff;
}

div#Navigation ul {
  list-style-type: none;
  margin: 2px;
}

div#Navigation ul li {
  display:  inline;
  margin-left: 10px;
}
#Content {
  background-color: #000;
  color: #fff;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-radius-bottomleft: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px; 
  border-radius-bottomright: 10px;
/*  -webkit-box-shadow: 2px 2px 11px #888;
*/
  padding: 10px;
}
#Footer {
  font-size: 10px;
  color: #5a5a5a;
  margin: auto;
  width: 33%;
  margin-top: 10px;
}


/* Class Styles */


.box {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding:  20px;
  margin-bottom: 10px;
  background-color: #292828;
}

.box.last {
  margin-bottom: 0;
}

.hot {
  color: #fc6;
}


.clearFloat:after {
  content: ".";
  display: block;
  height: 0; 
  clear: both; 
  visibility: hidden;
}
.clearFloat{ display:inline-block; }
/* Hides from IE-mac \*/
* html .clearFloat { height: 1%; }
.clearFloat { display: block; }
/* End hide from IE-mac */
