/*
Theme Name: appeal

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

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1 Common
2 Widgets
3 Bottom About Us
4 Twitter
5 Footer
6 Post Meta
--------------------------------------------------------------*/
/*1 Common*/

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

ul{
padding-right: 0px;
}

/*2 Widgets*/

#bottom .widget-title:before,
#bottom .widget-title:after
 {
right: 0%;
}

/*3 Bottom About Us */
ul.location li {
    padding-right: 30px;
    padding-left: 0px;
}

ul.location li:before {
    right: 0;
}

/*4 Twitter*/

.latest-tweets ul li{
padding-right: 30px;
padding-left: 0px;
}

.latest-tweets ul li:before{
 right: 0px 
}

/*5 Footer*/
 
.footer-menu li:nth-child(n+2) {
    margin-right: 9px;
    margin-left: 0px;
}

.footer-menu li:nth-child(n+2)::before {
    margin-left: 10px;
    margin-right: 0px;
}

/*6 Post Meta*/

.entry-meta span {
	margin-left: 20px;
	margin-right: 0px;
}

.entry-meta span:last-child {
	margin-left: 0;
}