@font-face {
	font-family: 'icons';
	src:url('/fonts/icons.eot');
	src:url('/fonts/icons.eot?#iefix') format('embedded-opentype'),
		url('/fonts/icons.woff') format('woff'),
		url('/fonts/icons.ttf') format('truetype'),
		url('/fonts/icons.svg#icons') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'icons';
	content: attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-pencil, .icon-location, .icon-hammer, .icon-calendar, .icon-tag, .icon-trophy, .icon-info, .icon-bullhorn, .icon-question, .icon-mail {
	font-family: 'icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}
.icon-pencil:before {
	content: "\e000";
}
.icon-location:before {
	content: "\e001";
}
.icon-hammer:before {
	content: "\e002";
}
.icon-calendar:before {
	content: "\e003";
}
.icon-tag:before {
	content: "\e005";
}
.icon-trophy:before {
	content: "\e006";
}
.icon-info:before {
	content: "\e008";
}
.icon-bullhorn:before {
	content: "\e007";
}
.icon-question:before {
	content: "\e009";
}
.icon-mail:before {
	content: "\e004";
}
