/* font-face */
@font-face {
	font-family: 'type';
	src: local('type'), url(../font/type.ttf);
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'type';
	src: local('type Italic'), url(../font/type.ttf);
	font-weight: normal;
	font-style: italic;
}
@font-face {
	font-family: 'type';
	src: local('type Bold'), url(../font/type.ttf);
	font-weight: bold;
	font-style: normal;
}
@font-face {
	font-family: 'type';
	src: local('type Bold Italic'), url(../font/type.ttf);
	font-weight: bold;
	font-style: italic;
}