/* Main navigation */

ul#navlist {
  margin-left: 0;	/* set the left margin to zero */
  padding-left: 0;	/* don't padd from the left */
}

#navlist li {
  display: inline;	/* display the elements as inline elements, without
			   linebreaks before or after it */
  list-style-type: none;
  line-height: 27px;
}

#navlist a {
  padding: 3px 10px;	/* top and bottom padding will be 3px,
			   left and right padding will be 10px */
}

#navlist a:link, #navlist a:visited {
  color: #FF0;
  background-color: #000;
  text-decoration: none;
}

#navlist a:hover {
  color: #fff;
  background-color: black;
  text-decoration: none;
}

body {
  background-color: #000000;
  color: #FFFF00;
}

tr {background-color: black;}

.left {text-align: left}

.category {
  background-color: magenta;
}


/* Lists of games */

.games_list li {
  list-style-type: none;  
}

.games_list a:link, .games_list a:visited {
  color: yellow;
  text-decoration: none;
}

.games_list a:hover {
  text-decoration: none;
  color: magenta;
  /*font-weight: bold;*/
}


/* Lists of software */

.software_list li {
  list-style-type: none;  
}

.software_list a:link, .software_list a:visited {
  color: yellow;
  text-decoration: none;
}

.software_list a:hover {
  text-decoration: none;
  color: yellow;
  font-weight: bold;
}


h1 {
  text-align: center;
  padding: 20px;
}

