/*
Theme Name: hotelim

Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.

https://codex.wordpress.org/Right-to-Left_Language_Support

*/
@font-face{
	font-family:'almoni-dl';
	font-weight:400; /*(regular)*/
	font-style: normal;
	src: url('fonts/almoni-dl-aaa-400.eot'); 
	src: url('fonts/almoni-dl-aaa-400.eot?#iefix') format('embedded-opentype'), 
		url('fonts/almoni-dl-aaa-400.ttf') format('truetype'), 
		url('fonts/almoni-dl-aaa-400.woff') format('woff');
}
@font-face{
	font-family:'almoni-dl';
	font-weight:300; /*(light)*/
	font-style: normal;
	src: url('fonts/almoni-dl-aaa-300.eot'); 
	src: url('fonts/almoni-dl-aaa-300.eot?#iefix') format('embedded-opentype'), 
		url('fonts/almoni-dl-aaa-300.ttf') format('truetype'), 
		url('fonts/almoni-dl-aaa-300.woff') format('woff');
}
body {
	direction: rtl;
	unicode-bidi: embed;
	text-align: right;
	font-family:'almoni-dl', sans-serif;
	font-weight:400;
}
