#service {
	position: relative;
	text-align: left;
}
#service > .wrapper {
	margin: 25px 0 0;
}
#service .block {
	background-image: url(/images/arrow.jpg);
	background-position: left 7px;
	background-repeat: no-repeat;
	padding: 3px 0 3px 20px;
	margin: 0 0 10px;

	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
}
#service .block .link {
	border-bottom: 1px solid #9a9a9a;
	color: #1a1a1a;
	font-size: 14px;
	text-decoration: none;
}
#service .block .link:hover {
	border-bottom-color: transparent;
	color: #228de1;
}
#service .block .childs {
	line-height: 0;
	padding: 15px 0 0;
	height: 0;
	opacity: 0;
	display: none;
	overflow: hidden;
	position: relative;

	-webkit-transition: all 500ms linear;
	-moz-transition: all 500ms linear;
	-ms-transition: all 500ms linear;
	-o-transition: all 500ms linear;
	transition: all 500ms linear;
}
#service .block.open .childs {
	height: auto;
	display: block;
	opacity: 1;
}
#service .block .childs .child {
	margin: 0 10px 10px 10px;
}
#service .block .childs .child a {
	text-decoration: none;
	position: relative;
	padding: 0;
	text-align: left;
	color: #228de1;
	font-size: 12px;
	line-height: 16px;
	font-weight: 400;
	display: inline-block; *zoom:1; *display:inline;
	border-bottom: 1px solid transparent;
}
#service .block .childs .child a:before {
	content: '-';
	color: #228de1;
	font-size: 12px;
	position: absolute;
	left: -10px;
	top: -1px;
}
#service .block .childs .child a:hover {
	color: #393939;
}
#service .block .childs .child a:hover:before {
	color: #393939;
}