/*
Theme Name: cruzy

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_Support

*/

body, .content-area, .widget-area {
	direction: rtl;
	unicode-bidi: embed;
}
.spaceLeft {
	padding-left: 0px;
	padding-right: 10px;
}
.spaceRight {
	padding-right: 0px;
	padding-left: 10px;
}
.spaceLeftRight {
	padding: 0 10px;
}
.main-sidebar-box, .sepHentry, .theNavigationBar, .site-content {
	direction: ltr;
}
#comments ol ol {
	padding-left: 0;
	padding-right: 5%;
}
#comments .reply {
	left: 0;
	right: inherit;
}
#comments article footer img {
	float: right;
	margin-right: 0;
	margin-left: 1em;
}
form.comment-form i {
	right: 15px;
}
.comment-reply-title small {
	float: left;
}
.widget_archive li a, .widget_categories li a {
	float: right;
}
.widget_archive li, .widget_categories li {
	text-align: left;
}
.sticky .entry-title {
	padding-left: 0;
	padding-right: 35px;
}
.sticky .entry-header .entry-title:before {
	left: inherit;
	right: 0;
}