#headnav{
	#position:absolute;
	#right:0px;
}
/* Hiding the checkbox, but allowing it to be focused */
.badgebox
{
    opacity: 0;
}

.badgebox + .badge
{
    /* Move the check mark away when unchecked */
    text-indent: -999999px;
    /* Makes the badge's width stay the same checked and unchecked */
	width: 27px;
}

.badgebox:checked + .badge
{
    /* Move the check mark back when checked */
	text-indent: 0;
}