/* within this document is a couple of webkit only hacks that target only safari and chrome */
/* this is just because they want a little more width (over 100%) on some elements and its easier to target them directly */
/* similar to targetting IE and its stupid padding and margin rules */

@media screen and (-webkit-min-device-pixel-ratio:0) {
	
.sidebar_item
{
	float:left;
	width:97.5%;
	padding:10px 0 10px 5%;
	margin:0;
}
	
	.side_top, 
	.side_bottom
	{
		float:right;
		height:7px;
		width:105%;
		overflow:hidden;
	}
	
	.side_top_inner, 
	.side_bottom_inner 
	{
		float:left;
		height:7px;
		width:105%;
	}
	
	.side_bottom  
	{
		margin-bottom:20px;
	}
	
}