@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html
{
  background-color: rgb(200,200,200);
  height: 100%;
  margin-top: 0;
  font-family: 'Open Sans', sans-serif;
}

body
{
  background-color: white;
  width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-left: 1px solid black;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: 0px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  overflow-y: scroll;
}

#logout
{
  position: absolute;
  top: 2px;
  right: 5px;
  color: black;
  font-weight: bold;
  text-decoration: none;
}

*
{
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h1
{
  margin-top: 0px;
  text-align: center;
  font-size: 55px;
}

h1 span:first-child
{
    color: #eee;
    text-shadow: #339 0px 0px 1px;
    -webkit-font-smoothing: antialiased;
}

h1 span:nth-child(2)
{
    color: #eee;
    text-shadow: #933 0px 0px 1px;
    -webkit-font-smoothing: antialiased;
}

a
{
  color: black;
  font-weight: bold;
  text-decoration: none;
}

.header
{
  background-image: url('/images/sorter_bg.gif');
  background-repeat: no-repeat;
  background-position: center right;
  cursor: pointer;
  border: 1px solid black;
}

.headerSortUp 
{
    background-image: url('/images/sorter_asc.gif');
}

.headerSortDown 
{
    background-image: url('/images/sorter_desc.gif');
}

tr.even td 
{
  background-color: rgb(230, 230, 230);
}

.button
{
  padding: 10px;
  display: inline;
  border-radius: 2px;
  font-family: "Arial";
  border: 0;
  margin: 0 10px;
  background: silver;
  font-size: 15px;    
  line-height: 15px;
  color: black;
  width: auto;
  height: auto;
  box-sizing: content-box;
  cursor: pointer;
}
