If it doesn't have to be different styles and it's only about the ads, you can use conditionals in the templates of the spots where you want to show ads.
I use this on my own board.
The ads are not shown for members of certain usergroups.
This is what I put into my templates:
HTML Code:
<if condition="!is_member_of($bbuserinfo, 6) AND !is_member_of($bbuserinfo, 5) AND !is_member_of($bbuserinfo, 7) AND !is_member_of($bbuserinfo, 10)">
(ads code here)
</if>
The above EXCLUDES (hides) the ads for the usergroups 6, 5, 7 and 10.