@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;
}
#main {
	text-align: center;
	margin: 0px auto;
	width: 1300px;
}
.header {
	height: 400px;
	text-align: center;
	padding: 1px;
}
.container div {
	padding: 1px;
	box-sizing: border-box;
}
.column-left, .column-right {
	width: 25%;
	float: left;
	border: 1px solid #FFF;
}
.column-center {
	width: 50%;
	float: left;
	border: 1px solid #FFF;
}
.footer {
	height: 50px;
	text-align: center;
	clear: both;
	padding-top: 10px;
	box-sizing: border-box;
}
.innertube {
	margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
	margin-top: 0;
}
#menu {
	width: 300px;
	top:4px;
	padding:0px;
	margin:0px;
	font-family: "Arial Black", Gadget, sans-serif;
	font-size: 20px;
	color:#FFF;
	list-style:none;
}
* html #menu {
	position: relative;
}
#menu .headerbar {
	background: #FF0185;
	margin: 0px;
	line-height: 36px;
	text-indent: 8px;
}
#menu li {
	line-height: 32px;
}
#menu li a {
	text-align: left;
	text-decoration:none;
	color:#000;
	display:block;
	font-size: 16px;
	margin: 0px;
	font-family: "Arial Black", Gadget, sans-serif;
	text-indent: 8px;
}
#menu li a:hover {
	text-decoration: underline;
	color: #00F;
}
#menuul li#active {
	background:#d40203;
}