You problem is prioritization. You are saying that you have two types of tasks: important tasks (which must run), and leisure tasks (that can run only when there is a free CPU and no important tasks are queued).
The simple solution is to assign a very high priority for important tasks, and very low priority for leisure tasks. This way, you almost guarantee that most of your system's CPU resources go towards running important tasks. However, it does not guarantee that your leisure tasks always run after all the important tasks are run. The system may still schedule some leisure tasks onces in a while.
However, the Task Parallel Library does not allow scheduling tasks with different priorities. You can either use something like this or override the TPL's scheduler with a custom implementation of BlockingCollection that always dequeues the important tasks first.
One solution is to schedule your important tasks with the TPL, but manually schedule your leisure tasks on your own background thread (set to the lowest thread priority) -- and this thread runs the leisure tasks sequentially.