/* Header */

#header {
   position: fixed;
   background: #222 url(images/title-gradient.png) repeat-x left top;
   width: 100%;
   height: 120px;
   margin: 0 auto;
   top: 0;
   left: 0;
   z-index: 15;
   padding: 0;
   border-bottom: 3px ridge #500000;
}

/* To have this block sit exactly within the enclosing block
   (of class "header") is difficult. Normally it will be positioned
   about 15 pixels down. But if you specify a positive border-top,
   that value is how far down it will go.

   Thus, giving it a 1px transparent top border and reducing its height
   by 1 pixel gives near enough the desired appearance. */
#headercontent {
   position: fixed;
    display: flex;
    top: 89px;
    left: 240px;
}
#headerpic {
   position: fixed;
   background: url(/images/FieryMUDTop.png) no-repeat;
   width: 278px;
   height:115px;
}


#telnet {
   font-family: sans-serif;
   font-size: small;
   float: right;
   padding: 3px;
   margin: 2px;
}


/* Body */

body {
   background: #000;
}

#content {
   font-family: sans-serif;
   background: #000;
   padding: 6px;
   margin: auto;
   top: 90px;
   position: relative;
   width: 950px;
   color: #ccc;
   text-align: left;
   z-index: 5;
   padding: 1em 1em 0.6em 1em;
}

#content p:first-letter {font-size:150%; color:silver}

a {
   color: silver;
}

/* Footer */

/* Override the content first-letter */
p#footer:first-letter {
   font-size: 100%;
   color: #ccc;
} 

#imgctr {
   clear: both;
   border-top: 4px groove #800;
   padding-top: 0.6em;
   margin-bottom: 0px;
   text-align: center;
}

#footer {
   clear: both;
   border-top: 4px groove #800;
   padding-top: 0.6em;
   margin-bottom: 0px;
   font-family: sans-serif;
   font-size: small;
   font-variant: small-caps;
   text-align: center;
   color: #ccc;
}

.plaintxt {
}
.dropbtn {
    font-family: sans-serif;
    font-size: small;
    font-weight: bold;
    background-color: #990000;
    color: white;
    padding: 8px;
    font-size: small;
    border: none;
/*  position: inline-block; */
    text-align:center; 
    display:inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2f292a;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px #7f7377;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    font-family: sans-serif;
    font-size: small;    
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #999999;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #660000;}

