Just a note: Stacked sequence structures are somewhat evil, so don't overuse them (I no longer use them at all!). They tend to encourage ugly code (Hidden code, backwards wires, no easy way to break out, encourage local variables, etc.).
Use a flat sequence or a statemachine type construct (Search the example browser for examples). Often, data flow alone is enough to keep things in check.
🙂