/*
Theme Name: Bimkom

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;
	text-align: right;
}

#lang { 
	text-align: left;
}

#header { 
	height: 130px;
	background: url(https://bimkom.org/wp-content/uploads/Logo-Bimkom2.png) top right no-repeat;
	background-size: contain;
}

#header h1 a { 
	right: 40px;
}

#nav li ul { 
	left: auto;
	right: 0px;
}

#nav li ul ul { 
	right: 100%;
}

#nav ul li {
	text-align: right;
}

#main { 
	border-right: none;
	border-left: 250px #e5ebd7 solid;
}

#content { 
	float: right;
}

#content .boxes .box { 
	margin: 0 0 8px 4px;
	background-image: -webkit-gradient(linear, right top, right bottom, color-stop(0, #EAEDE2), color-stop(1, #FFFFFF));
}

#content .post img { 
	float: left;
	margin-right: 20px;
}

#sidebar { 
	float: left;
	margin-left: -250px;
}

#footnav li { 
	border-left: none;
	border-right: 1px #576041 solid;
}

#footnav li:first-child { 
	border-right: none;
}

#credits { 
	text-align: right;
}

#credits li.third { 
	text-align: left;
}

.right { 
	text-align: left;
}

.single_post_imge { 
	float: left;
	margin-right: 15px;
}

ol.commentlist { 
	padding: 0 20px 0 0;
}

ol.commentlist li { 
	background-image: -webkit-gradient(linear, right top, right bottom, color-stop(0, #EAEDE2), color-stop(1, #FFFFFF));
}

.site-navigation .nav-previous { 
	float: right;
}

.site-navigation .nav-next { 
	float: left;
}
