@charset "utf-8";
/* CSS Document */

/*
BLUE 3b5d9a
*/

.header{
	
	box-shadow:-1px 0px 10px #999 inset;
}
.header .menu{
	float:right;
	margin-top:20px;
}
.header .menu a{
	color:#333;
	display:inline-block;
	text-decoration:none;
	padding:5px 10px;
	font-size:14px;			
	margin:0 2px;
	-webkit-transition:color .5s, background .5s;
	transition:color .5s, background .5s;
	position:relative;
}
	.header .menu a:hover{
		color:#3b5d9a;
		-webkit-animation:pulse 1s;
	}
	.header .menu a:last-child{
		background:#3b5d9a;
		color:#fff;
	}
		.header .menu a:last-child:hover{
			background:#00acc8;
		}
	.header .menu a.active:before{
		content:" ";
		position:absolute;
		left:0;
		top:8px;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 6px 0 6px 6px;
		border-color: transparent transparent transparent #ccc ;
	}

.footer{
	background:#3b5d9a;
	color:#fff;
}
	.footer h3{
		color:#fff;
	}
	.footer a{
		color:#fff;
	}
	
.services-menu{
}
	.services-menu a{
		display:block;
		border-top:solid 1px #ccc;
		padding:10px 10px;
	}
		.services-menu a:first-child{
			border-top:none;
		}
		.services-menu a:hover{
			background:#eee;
			color:#3b5d9a;
			text-decoration:none;
		}
		.services-menu a.active{
			background:#3b5d9a;
			color:#fff;
			text-decoration:none;
		}