/*
 * Qype - contacts-list: no place, no sex
 *
 * Author      : RegineH
 * Updated     : March 8th, 2008
 * Website     : http://www.qype.com/people/RegineH
 * Description : hides notes about place and sex in the contacts-list.
 * Usage       : use with Stylish Firefox extension (http://userstyles.org/) or copy to your Firefox userContent.css file
 */

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("www.qype.com") {

/* I would have liked to only hide the sex of the contact, but the place is inside the same element, so this style hides both. But I think it doesn't weigh too much because you can see your contacts in the list ordered by place. */


.ContentMyQypeContactsList li p span
    {
	display: none;
    }

}