Just so you know you can create an override in global.php for it to kick in when the THIS_SCRIPT equals the page you want to use the special style on. I did a plugin for this on my site a while back to force certain pages to lock into certain styles.
Ill even point you in the right direction.
Easiest for you to do would be create an if statement and if its true declare a new value for $styleid.
Code:
$styleid = intval($styleid);
($hook = vBulletinHook::fetch_hook('style_fetch')) ? eval($hook) : false;
EX:
Code:
$styleid = intval($styleid);
if(THIS_SCRIPT=="somescript")
{
$styleid = REPLACETHISWITHYOURSTYLEID;
}
($hook = vBulletinHook::fetch_hook('style_fetch')) ? eval($hook) : false;