

/*
	Make all browsers act like ie/win and NOT display quotes for the q element. 
	Instead, add the quotes in content outside the q tag.
 */
q:before, q:after
{
	content: ""; 
}

.clearfix:after {
    content:"."; 
    display:block; 
    height: 0;
    clear:both; 
    visibility:hidden;    
}

.clearfix
{
	zoom: 1;
}
