/*
Theme Name: Color Palette

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;
}
body,
h1,h2,h3,h4,h5,h6, 
.main-navigation,
.more-link,
blockquote,
.post-navigation a,
.site-content .site-navigation a {
	font-family: sans-serif;
}
ul, ol {
	margin: 0 3em 1.5em 0;
}
ul ul, ol ol, ul ol, ol ul {
	margin-right: 1.5em;
}
dfn, cite, em, i {
	font-style: normal;
}
blockquote {
	font-size: 16px;
	font-size: 1.6rem;
}
#primary {
	float: right;
}
#secondary { 
	float: left;
}
.page-template-full-width-php .wrap {
	padding: 3% 6% 3% 15%;
}
#header .title-header {
	float: right;
	margin-right: 1.25em;	
}
.main-navigation,
.main-navigation .menu {
	float: left;
}
.main-navigation li,
.main-navigation ul ul {
	float: right;
}
.main-navigation ul ul ul {
	left:auto;
	right: 100%;
}
.entry-meta {
	font-style: normal;
}
.more-link {
	text-align: left;
}
.site-content .nav-previous {
	float: right;
	text-align:right;
}
.site-content .nav-next {
	float: left;
	text-align: left;
}
.site-footer .widget-area {
	float:right;
}
.site-info {
	text-align: left;
}
/* Comments
----------------------------------------------- */
#comments {
	clear:right;
}
.avatar {
	float: right;
	padding: 0 10px 10px 20px;
}		

ol.commentlist ul.children {
	margin:10px 25px 0 10px;
}
ol.commentlist li blockquote p {
	font-size: 20px;
	font-size: 2rem;
}