*{
	margin: 0;
	padding: 0;
	font-family:Arial, Helvetica, sans-serif;
		  text-decoration: none;
}







.main
{
float:right;
font-family:Calibri;
}
.main a{
	color: #fff;
	
	font-size:12.5px;
	margin-left:1px;
}
/*.main a:hover{
	background-color: #fff;
	color: #000;
	height:20px;
	padding:0px;
	border-radius:10px;
} */

#footer {
	height: 22px;
	margin: 0 auto;
	padding: 0px 0 15px 0;
	background: #005E00;
	font-family: Arial, Helvetica, sans-serif;
}

#footer p {
	margin: 0;
	padding-top: 5px;
	
	line-height: normal;
	font-size: 12px;
	text-transform: uppercase;
	text-align: center;
	color: #92A9B6;
}

#footer a {
	color: #92A9B6;
}
.navigation {
margin-left:20px;
  width: 220px;
  font-size:12px;
  letter-spacing:1px;
  line-height:1.5;
  font-family:Calibri;
}

/* reset our lists to remove bullet points and padding */
.mainmenu, .submenu {
  list-style: none;
  padding: 0;
  margin: 0;
   width:220px;
}

/* make ALL links (main and submenu) have padding and background color */
.mainmenu a {
  display: block;

 
  text-decoration: none;
  padding: 5px;
  color: #000;
}

/* add hover behaviour */
.mainmenu a:hover {
border-radius:5px;
    background-color:#333300;
	color:#FFFFFF;
	width:210px;
}


/* when hovering over a .mainmenu item,
  display the submenu inside it.
  we're changing the submenu's max-height from 0 to 200px;
*/

.mainmenu li:hover .submenu {

  display: block;
  width:250px;
  max-height: 200px;
}

/*
  we now overwrite the background-color for .submenu links only.
  CSS reads down the page, so code at the bottom will overwrite the code at the top.
*/

.submenu a {
  background-color: #C6C7CA;
}

/* hover behaviour for links inside .submenu */
.submenu a:hover {
 background-color:#135A9A;
	color:#FFFFFF;
  width:250px;
}

/* this is the initial state of all submenus.
  we set it to max-height: 0, and hide the overflowed content.
*/
.submenu {

  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease-out;
}