diff --git a/webform.module b/webform.module
index 84656c3..fc3385c 100644
--- a/webform.module
+++ b/webform.module
@@ -1479,7 +1479,10 @@ function webform_client_form(&$form_state, $node, $submission, $enabled = FALSE,
   $form['#theme'] = array('webform_form_'. $node->nid, 'webform_form');
 
   // Add a css class for all client forms.
-  $form['#attributes'] = array('class' => 'webform-client-form');
+
+  $path = str_replace("/", "-", drupal_get_path_alias($_GET['q']));
+
+  $form['#attributes'] = array('class' => 'webform-client-form', 'class' => 'webform-'.$path);
 
   // Set the encoding type (necessary for file uploads).
   $form['#attributes']['enctype'] = 'multipart/form-data';
