/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background:#111 ;
  font-family: "optima", "verdana";
  font-size:15px;
  color:#6E8F68;
  letter-spacing:1px;
  line-height:15px;
}

a:link, a:visited, a:active {
  font-weight:bold;
  color:#bbb;
  text-decoration:none;
}
a:hover { color:#ddd; }

b { color:#888; }
i { color:#aaa; }
u { color:#888; }

::-webkit-scrollbar-thumb {
  background:#111;
  border:1px solid #666;
}
::-webkit-scrollbar {
  width:7px;
  background:transparent;
}

#layout {
  width:758px;
  margin:0 auto;
}


#columns {
  overflow: hidden;
  background:#171717;
    
}

#header {
  height:180px;
  background:#111 url(https://64.media.tumblr.com/8008a8f63a39275d497fb769885cfb8b/0858230806fd6a95-b5/s400x600/05adec912553d0fc5fd445da270ed9422e97381e.webp)
    no-repeat center;
}

#sitename a {
  font:25px verdana;
  color:#aaa;
  text-transform:uppercase;
  letter-spacing:8px;
  background:#101010;
  border-radius:30px;
  padding:4px 20px;
}

#menu {
  height:20px;
  line-height:20px;
  text-align:center;
}

#menu a {
  font:bold 11px monospace;
  text-transform:uppercase;
  padding:4px;
  margin-right:10px;
  letter-spacing:3px;
  color:#666;
}
#menu a:hover { color:#ccc; }

#left1, #content1, #right1 {
  float:left;
  padding:6px;
  margin:0;
}

#left1 {
  width:180px;
  background:#171717;
  color:#5a5a5a;
  border-right:1px dashed #222;
}

#content1 {
  width:360px;
  background:#202020;
  color:#656565;
}

#right1 {
  width:180px;
  background:#171717;
  color:#5a5a5a;
  border-left:1px dashed #222;
}

.title {
  font:bold 15px verdana;
  color:#999;
  letter-spacing:3px;
  margin-bottom:2px;
}

.scrollbox {
  background:#111;
  height:100px;
  overflow:auto;
  overflow-x:hidden;
  margin-top:4px;
}

textarea {
  font:15px calibri;
  background:#333;
}\