/*
Theme Name: cosimo

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: 0;
	padding-left: 5px;
}
.spaceLeft {
	padding-left: 0;
	padding-right: 5px;
}
.sticky .entry-title {
    padding-right: 20px;
    padding-left: 0;
}
.sticky .entry-header .entry-title:before {
	left: inherit;
	right: 0;
}
.widget_archive li a, .widget_categories li a {
	float: right;
}
.widget_archive li, .widget_categories li {
	text-align: left;
}
span.read-more {
    float: left;
}
#search-full, .main-navigation, .main-sidebar-box {
    direction: ltr;
}
.post-navigation .nav-previous {
    text-align: left;
}
#comments .reply {
    position: absolute;
    right: inherit;
	left: 0;
}
#comments article footer img {
    float: right;
    margin-right: 0;
	margin-left: 1em;
}
#comments ol ol {
    padding-left: 0;
	padding-right: 5%;
}