/*
Theme Name: blogghiamo

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 {
	direction: rtl;
	unicode-bidi: embed;
}
.spaceRight {
	padding-right: 0px;
	padding-left: 5px;
}
.spaceLeft {
	padding-left: 0px;
	padding-right: 5px;
}
.crestaPostStripeInner {
	marging-left: 0;
	margin-right: -2.5rem;
}
textarea {
	padding-right: 4px;
	padding-left: 0;
}
.main-navigation li {
	float: right;
}
#comments ol ol article {
	border-left: 0;
	border-right: 2px solid rgba(0,0,0,.05);
	padding-left: 0;
	padding-right: 5%;
}
#comments ol ol {
	padding-left: 0;
	padding-right: 5%;
}
#comments article footer img {
	float: right;
	margin-right: 0;
	margin-left: 15px;
}
#comments .reply {
	left: 0;
	right: inherit;
}
.comment-reply-title small {
	float: left;
}
code {
	text-align: right;
}