@charset "utf-8";
/* CSS Document */
nav > ul > li#n7 > a{
	background-color:#8ec84a;
	color:#fff;
}
#triangleP {
	position: relative;
    width: auto;
    display: block;
    margin: 0 auto;
    top: 20px;
    width: 120px;
    box-shadow: -3px 0px 3px #ccc;
    border: 1px solid #f5f5f5;
    padding: 0 50px;
    transition: 0.3s box-shadow ease;
}
#triangleP:before {
	content: '';
	position: absolute;
	left: 15px;
    top: 12px;
	background: url(../img/triangleP.png) no-repeat;
	width: 20px;
	height: 20px;
}
#triangleP:hover{
	box-shadow: inset 3px 3px 3px #ccc;	
} 
