
#footermenu {
	text-align:center;
}



#footermenu ul{
	list-style-image: none;
	list-style:none;
	text-align: left;
	margin-left: 20px;
	margin-bottom:		0px;
	color: #FFF;
}

#footermenu ul a{
	color: 		#A5B6D1;
	text-decoration:none;
	position: relative;
	border: none;
}
#footermenu ul li a::after {
  position: 		absolute;
  top: 				7px;
  right: 			-15px; 
  width: 			10px;
  height: 			10px;
  border-top: 		2px solid #A5B6D1;
  border-right: 	2px solid #A5B6D1;
  content: "";
   -webkit-transform: 	rotate(45deg);
  -moz-transform: 		rotate(45deg);
  -ms-transform: 		rotate(45deg);
  -o-transform: 		rotate(45deg);
  transform: 			rotate(45deg);
  -webkit-transition: 	border-color 0.2s ease;
  -moz-transition: 		border-color 0.2s ease;
  -ms-transition: 		border-color 0.2s ease;
  -o-transition: 		border-color 0.2s ease;
  transition: 			border-color 0.2s ease;
  
}
#footermenu ul a:hover{
	color: 		#455E87;
	text-decoration: underline;
}

/*Responsive Styles*/

@media screen and (max-width : 786px){
	/*Make dropdown links appear inline*/
	#footermenu ul {
		position: 		static;
	}
	/*Create vertical spacing*/
	#footermenu li {
		margin-bottom: 	1px;
	}
	/*Make all menu links full width*/
	#footermenu ul li, li a {
		width: 			98%;
	}

}

