/*
Theme Name: Twenty Eleven

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

*/

/* =Reset reset
----------------------------------------------- */

caption, th, td, h1, h2, h3 {
	text-align: right;

}

/* =Structure
----------------------------------------------- */

/*body {
	direction:rtl;
	unicode-bidi:embed;
}
*/

}

div, table, td, tr, ul, li, p {
	direction:rtl;

}

/* =Global
----------------------------------------------- */

/* Text elements */
p {
	margin-bottom: 1.625em;
}
ul, ol {
	margin: 0 2.5em 1.625em 0;
}
.ltr ul, ol {
	margin: 0 0 1.625em  2.5em;
}


