@charset "utf-8";
/* CSS Document */

body, h1, h2, h3, h4, h5, h6, p, div, ul, li {
	margin:0;
	padding:0;
}

body { 
	   font-family: Verdana, Geneva, sans-serif;
	   color:#000;
	   
}

#divContainer { 
       width: 100%;
	   margin:25px auto;
	   text-align:center;
	   
}


#divHeader {
	background:#ffffff;
	width:100%;
	}

#divLine {
	width:100%px;
	background-color: #000;
	height:2px;
}


#divLinks {
	width:100%;
	background:#FFF;
}

#divNav {
	width:100%;
	background:#ffc100;
	height:45px;
	overflow:hidden;
}

#divNav ul {
  list-style: none;
  margin: 0 2px;
  padding: 0;
  display: flex;
  justify-content: space-around;
	
}

#divNav ul li {
	float:left;
	
}

#divNav ul li a {
	display:block;
	height:30px;
	line-height:30px;
	width:80px;
	font-size:15px;
	font-weight:bold;
	background:#FFF;
	/*background:#9e541b;*/
	color:#FFF;
	text-align:center;
	text-decoration:none;
	margin-top:7px;
	margin-bottom:5px;;
	
	
	/*Border radius*/
	border-radius: 5px;
	border: 1px solid #000000;
	
		/*Gradients*/
    background: -moz-linear-gradient(#ffc100, #000000);
	background: -webkit-linear-gradient(#000000, #ffc100);
}


#divNav ul li a:hover {
	background:#c5691a;
	background: -moz-linear-gradient(#ffc100, #000000);
	background: -webkit-linear-gradient(#ffc100, #000000);
}

#divNav ul li a.current, #divNav ul li a.current:hover {
	backgrond:#09F;
	background: -moz-linear-gradient(#ffc100, #000000);
	background: -webkit-linear-gradient(#000000, #ffc100);
	color:#000;
	cursor:default;
}	   

#divContent {
	width:100%;
	background-color:#FFF;
	/*border-top: 2px solid #434345;*/
}

#divInfo {
	width:100%;
	text-align:center;
		
}

#divInfo ul {
	display: inline-block; text-align: left;
}
 
#divFooter {
	background:#ffc100;
	height:40px;
	border-top:2px solid #000000;
	border-bottom:2px solid #000000;
	text-color:#FFF;
}

#divFooter p {
	font-family: "MS Serif", "New York", serif;
	font-style:italic;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	color: #000;
}

#divFooter p a {
	text-decoration:none;
	color:#000;
}
	