It can also only be for "users". By doing Code
<?if($USER_GROUP$='admin')?>#puzadpn {display:inline;}<?else?>#puzadpn {display:none;}<?endif?>
or reduce the amount of coding by putting it in a separate style inside the page itself:
<style type="text/css">
#puzapdn {display:<?if($USER_GROUP='admin'?>inline<?else?>none<?endif?>;}
</style>