I see now. Open up /wp-content/themes/infocus/header.php and on line 13 you should see this,
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/styles/<?php echo $color_scheme; ?>" />
You'll want to place a check for your page ID and output the lime CSS like so,
<?php
if (is_page("25")) { ?> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/styles/lime.css" /> <?php }
else { ?> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory'); ?>/styles/<?php echo $color_scheme; ?>" /> <?php }
?>
In the above example it checks if the page is ID 25 and if it is then it loads the lime.css instead.
Let us know if that works for you naujl16.