The proper JSF 2.0 way is using <h:outputStylesheet>. This way you don't need to worry about the context path (which is by the way easier to obtain by #{request.contextPath}).
Drop the CSS file in /resources folder of the public webcontent (just create one if not already exist).
WebContent
|-- resources
| |-- css
| | `-- style.css
| |-- js
| | `-- script.js
| `-- images
| `-- logo.png
:
Those resources are then available as follows everywhere without the need to fiddle with relative paths:
<h:outputStylesheet name="css/style.css" />
<h:outputScript name="js/script.js" />
<h:graphicImage name="images/logo.png" />
You can reference the <h:outputStylesheet> anywhere, also in template clients and it will automatically end up in generated <head>. You can reference <h:outputScript> also anywhere, but it will by default end up in the HTML there where you declared it. If you want it to end up in <head>, then add target="head" attribute.
You can even package the resources in a JAR file. See also Structure for multiple JSF projects with shared code.
See also: