/*
Theme Name: clean

Adding support for language 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.

http://codex.wordpress.org/Right_to_Left_Language_
*/

@import url(https://fonts.googleapis.com/css?family=Dancing+Script:700);

body {
	unicode-bidi: embed;
}

header h1 {
	font-family: "Dancing Script";
	font-size:34px;
	line-height: 34px;
}

section.home h1,
section.idea p,
.book div.info {
	text-align: right !important;
}
section.home h1 {
	right: 20px;
}

.alignleft {
	display: inline;
	float: right !important;
	margin-left: 1.5em !important;
	margin-right: 0 !important;
}

.alignright {
	display: inline;
	float: left !important;
	margin-right: 1.5em !important;
	margin-left: 0 !important;
}