/* 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." */
   
html{
  height:100%;
  cursor: url('images/dino_cursor.gif'),auto;
}
.content { max-width: 1205px; margin: auto;}
body { color: black; font-family: Monospace; background-image: url("images/background.png"); background-repeat: repeat;}
h1 {font-family: monaco, Consolas, Lucida Console, monospace; font-size: 24px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 26.4px; color: navy; background-color: #ccb3e6; background-image: url('images/favicon.png'); background-position: right;  background-repeat: no-repeat; background-size: contain;}  
h3 {font-family: monaco, Consolas, Lucida Console, monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 700; line-height: 15.4px; color: blue; background-color: #ccb3e6; background-image: url('images/favicon.png'); background-position: right;  background-repeat: no-repeat; background-size: contain;} 
p {font-family: monaco, Consolas, Lucida Console, monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 20px; } 
blockquote { background-color: #663399; font-family: monaco, Consolas, Lucida Console, monospace; font-size: 21px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 30px; } 
pre { background-color: #9966cc;  font-family: monaco, Consolas, Lucida Console, monospace; font-size: 13px; font-style: normal; font-variant: normal; font-weight: 400; line-height: 18.5667px; }

a        {text-decoration: none}
a:link   {color: red}
a:visited {color: navy}
a:active {color: black}
a:hover  {color: red; text-decoration: underline}

/* table, th, tr, td { background-color: rgba(153, 102, 204, 0.6); border-collapse: collapse; border: 1px solid; height: 30px; vertical-align: central; text-align: center;}-->*/

table.table {
  border: 4px solid #555555;
  background-color: #555555;
  width: 400px;
  text-align: center;
  border-collapse: collapse;
}
table.table td, table.table th {
  border: 1px solid #606060;
  padding: 5px 10px;
}
table.table tbody td {
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
}
table.table tr:nth-child(even) {
  background: #854747;
}
table.table thead {
  background: #A32929;
  border-bottom: 10px solid #7A5252;
}
table.table thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  text-align: left;
  border-left: 2px solid #755757;
}
table.table thead th:first-child {
  border-left: none;
}

table.table tfoot td {
  font-size: 13px;
}
table.table tfoot .links {
  text-align: right;
}
table.table tfoot .links a{
  display: inline-block;
  background: #FFFFFF;
  color: #398AA4;
  padding: 2px 8px;
  border-radius: 5px;
}

#box{background-color: rgba(153, 102, 204, 0.6); box-sizing:border-box; display:block; width:85%; float:left; overflow:hidden;padding-top: 14px;} 

#rightpanel{background-color: rgba(197, 102, 204, 0.6); box-sizing:border-box; display:block; width:15%; float:right; overflow:hidden;  text-align: center; padding-top: 14px;}



.topnav {
  background-color: #9966cc;
  overflow: hidden;
  width:85%;
  float:left;
}
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}
.topnav a:hover {
  background-color: #663399;
  color: black;
}
.topnav .active {
  background-color: #bf9fdf;
  color: white;
}
 .center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
