There's not enough information here to give you an exact answer. "How to order your CSS" depends on how you want/need your CSS to be displayed.
Ordering can be important due to CSS specificity. If two CSS rules have the same specificity, the CSS rule that came last, one will overwrite the rule that came earlier (earlier means closer to the start of a file).
However, what's more important to know is specificity. Here's a great article on CSS specificity: http://coding.smashingmagazine.com/2007/07/27/css-specificity-things-you-should-know/
In my opinion, the most important thing to remember about CSS ordering is when using rules on anchor tags and the :link, :hover, :visited selectors. Here's a good article on that subject.
http://www.w3.org/TR/CSS2/selector.html#dynamic-pseudo-classes
In short, you want your anchor selectors to be in this order:
a:link { color: red } /* unvisited links */
a:visited { color: blue } /* visited links */
a:hover { color: yellow } /* user hovers */
a:active { color: lime } /* active links */
The reason for this can be understood by understanding specificity, as I mentioned earlier. Each of the above anchor selectors have the same specificity. So, the ordering matters.
I hope that helps!
If you expand your question to explain why you're looking to re-order your CSS (I'd guess you're having some odd CSS issue), SO can help more specifically with your problem.
Cheers!