@font-face {
	font-family: 'mcd-icons';
	src:url('mcd-icons.eot');
	src:url('mcd-icons.eot?#iefix') format('embedded-opentype'),
		url('mcd-icons.woff') format('woff'),
		url('mcd-icons.ttf') format('truetype'),
		url('mcd-icons.svg#mcd-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: 'mcd-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*="mcd-"] {
*/
.mcd-plus, .mcd-minus, .mcd-chevron {
	font-family: 'mcd-icons';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	font-size: 77%
}
.mcd-plus:before {
	content: "\2b";
}
.mcd-minus:before {
	content: "\2d";
}
.mcd-chevron:before {
	content: "\3e";
}
