body {
  color: #333333;
  margin-top: 50px;
  font-family: Arial, Helvetica, Sans-Serif;
  background: #6b6b6b;
  background: -moz-radial-gradient(center, ellipse cover, #6b6b6b 0%, #0e0e0e 100%);
  background: -webkit-radial-gradient(center, ellipse cover, #6b6b6b 0%,#0e0e0e 100%);
  background: radial-gradient(ellipse at center, #6b6b6b 0%,#0e0e0e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b6b6b', endColorstr='#0e0e0e',GradientType=1 );
}

#wrapper {
  margin-left: 5px;
  margin-right: 5px;
  /*width: 980px;*/
}

header {
  width: 100%;
  /*height: 190px;*/
  background-color: #acacae;
  /*background-image: url(../img/header.jpg);*/
}

nav {
  box-sizing: border-box;
  float: left;
  width: 100%;
  padding: 0px 10px;
  background: #ba8810;
  background: -moz-linear-gradient(top, #2e2d33 0%, #59565d 50%, #2e2d33 100%);
  background: -webkit-linear-gradient(top, #2e2d33 0%,#59565d 50%,#2e2d33 100%);
  background: linear-gradient(to bottom, #2e2d33 0%,#59565d 50%,#2e2d33 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e2d33', endColorstr='#2e2d33',GradientType=0 );
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  margin: 0;
  padding: 0;
}

nav a {
  display: block;
  color: #d1d6da;
  text-decoration: none;
}

nav ul li {
  position: relative;
  float: left;
  list-style: none;
}
 
nav ul li:hover {
  background: #2e2d33;
}

nav ul li a {
  padding: 10px;
}

nav ul ul {
  position: absolute;
  top: -9999px;
  left: -9999px;
  background: #ba8810;
  background: -moz-linear-gradient(top, #2e2d33 0%, #59565d 50%, #2e2d33 100%);
  background: -webkit-linear-gradient(top, #2e2d33 0%,#59565d 50%,#2e2d33 100%);
  background: linear-gradient(to bottom, #2e2d33 0%,#59565d 50%,#2e2d33 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e2d33', endColorstr='#2e2d33',GradientType=0 );
  font-size: 12px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}
 
nav ul ul li {
  float: none;
  width: 200px;
  border-bottom: 1px solid #555;
}
 
nav ul ul li a {
  padding: 10px 20px;
}

nav ul li:hover > ul {
  top: 100%;
  left: 0;
}

nav ul ul li:hover > ul {
  top: 0;
  left: 200px;
}

nav ul li.submenu > a:after {
  position: relative;
  float: right;
  content: '';
  margin-left: 10px;
  margin-top: 10px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  border-bottom: 5px solid transparent;
}

nav ul ul li.submenu a:after {
  margin-left: auto;
  margin-right: -10px;
  border-left: 5px solid #fff;
  border-right: 5px solid transparent;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

nav ul ul li:last-child {
  border-bottom: none;
}

#content {
  /*width: 960px;*/
  background-color: #acacae;
  padding: 10px 10px 10px 10px;
  font-size: 13px;
}

#content article {
 border-bottom: 1px dotted #BAB196;
 margin-bottom: 20px;
}

#content h1 {
	font-size: 15px;
	color: #333333;
}

#content h2 {
	font-size: 14px;
	color: #333333;
}


#content a {
 color: #333333;
}

table {
 border-collapse: collapse;
 background: #59565d;
 color: #d1d6da;
}

table, a {
 text-decoration: none;
}

table, th {
    text-align: left;
}

table, th, td {
 border: 1px solid black;
}

#footer {
 margin-left: auto;
 margin-right: auto;
 height: 20px;
 /*width: 980px;*/
 width: 100%;
 margin-top: 10px;
 text-align: center;
 font-size: 12px;
 color: #cccccc;
}

#footer a {
 color: #cccccc;
}