/* style2.css */

/* Reset & Base */
* { margin:0; padding:0; box-sizing: border-box; }
body {
  background: #111;
  color: #ddd;
  font-family: Verdana, sans-serif;
  font-size: 13px;
  line-height: 1.4;
}
a { color: #ff9500; text-decoration: none; }
a:hover { text-decoration: underline; }
.clear { clear: both; }

/* Wrapper */
#wrapper {
  width: 960px;
  margin: 20px auto;
  background: #1e1e1e;
  border: 2px solid #333;
}

/* Header */
#header {
  background: #000;
  padding: 10px 20px;
  position: relative;
}
#logo {
  float: left;
  font-size: 24px;
  font-weight: bold;
  color: #ff9500;
}
#nav {
  float: left;
  margin-left: 40px;
}
#nav ul { list-style: none; }
#nav li { display: inline-block; position: relative; margin-right: 20px; }
#nav a {
  color: #ddd;
  font-weight: bold;
  padding: 4px 6px;
}
#nav a:hover {
  background: #222;
  border-radius: 3px;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  background: #222;
  border: 1px solid #444;
  width: 160px;
  z-index: 10;
}
.dropdown-menu li { width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 6px 10px;
  color: #ddd;
}
.dropdown-menu a:hover {
  background: #333;
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Search Box */
#search-box {
  float: right;
  margin-top: 4px;
}
#search-box input {
  padding: 4px 8px;
  border: 1px solid #444;
  border-radius: 3px;
  background: #222;
  color: #ddd;
}

/* Founder Banner */
#founder-banner {
  background: #111;
  color: #ff9500;
  padding: 6px 20px;
  font-size: 14px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* Content */
#content {
  padding: 20px;
}
#content h2 {
  font-size: 16px;
  color: #ff9500;
  margin-bottom: 10px;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
}

/* Forum Table */
.forum-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.forum-table th {
  background: #222;
  color: #ff9500;
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #444;
}
.forum-table td {
  background: #1e1e1e;
  padding: 8px;
  border-bottom: 1px solid #333;
  vertical-align: top;
}
.thread:hover td { background: #2a2a2a; }
.thread.pinned td { background: #2a1f0d; }

/* Thread meta */
.thread-meta {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 4px;
}

/* Rules List */
.rules-list {
  margin-left: 20px;
  list-style: disc;
}
.rules-list li {
  margin-bottom: 6px;
}

/* Footer */
#footer {
  background: #000;
  color: #555;
  text-align: center;
  padding: 12px;
  font-size: 11px;
  border-top: 1px solid #333;
}
