/*  Mini Profile Side Switcher
    --------------------------------------------------------------
    This mod is based on a KB article
    http://www.phpbb.com/kb/article/prosilver-profiles-on-left/
    Article Creator: Snowcone.
    Mod Creator: Idan Ben-Ezra.
    --------------------------------------------------------------
*/


/**
*  LTR STYLES *************************************************************
*/


/* Post body styles
----------------------------------------*/
.postbody {
	float: right;
}

/* Poster profile block
----------------------------------------*/
.postprofile {
	border-left: none;
	border-right: 1px solid #FFFFFF;
	float: left;
	margin-top: -5px;
}

.postprofile dt {
	margin-top: 5px;
}

.pm .postprofile {
	border-left: none;
	border-right: 1px solid #DDDDDD;
}

/**
*  RTL STYLES *************************************************************
*/


/* Post body styles
----------------------------------------*/
.rtl .postbody {
	float: left;
}

/* Poster profile block
----------------------------------------*/
.rtl .postprofile {
	border-left: 1px solid #FFFFFF;
	border-right: none;
	float: right;
}

.rtl .pm .postprofile {
	border-left: 1px solid #DDDDDD;
	border-right: none;
}


/**
* Fix space bug
*/
#preview .postbody, #preview .rtl .postbody {
	float: none !important;
}