@charset "utf-8";
/* CSS Document */
body {
	margin-top: 100px; /* Add a top margin to avoid content overlay */
	background-color: #DCDCDC;
	text-align: center;
}
/* The navigation bar */
.navbar {
  	overflow: hidden;
	display: block;
  	background-color: #ff0185;
  	position: fixed; /* Set the navbar to fixed position */
  	top: 0; /* Position the navbar at the top of the page */
  	left: 0;
  	width: 100%; /* Full width */
 	border-bottom: 2px solid #000;
	list-style-type: none;

}
.navbar-left a{
	float: left;
}
.navbar-right {
	float: right;
}
/* Links inside the navbar */
.navbar a {
  	float: left;
  	display: block;
	color: #FFF;
	text-align: center;
  	padding: 14px 16px;
  	font-size: 24px;
  	font-weight: bold;
  	text-decoration: underline;
}
/* Change background on mouse-over */
.navbar a:hover {
  	background: #000;
  	color: #FFF;
}
.title {
	font-size: 36px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	text-decoration: underline;
}
.table-title {
	text-align: center;
	color: #FFF;
	background-color: #000;
	font-size: 24px;
  	font-weight: bold;
	padding: 4px 6px;
}
.pics1 { 
	border: 1px solid #999;
	border-radius: 3px;
    -moz-border-radius: 3px; /* Firefox 3.6 and earlier */
}