diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/ajax.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/ajax.php
new file mode 100644
index 0000000..0cda795
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/ajax.php
@@ -0,0 +1,19 @@
+IsValid();
+ $result['errorlist'] = $contact->Errors;
+
+ if ($result['valid']) $result['sent'] = $contact->SendMail();
+
+ header('Content-type: application/json');
+ echo json_encode($result);
+ die();
+}
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php
new file mode 100644
index 0000000..8b4e891
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php
@@ -0,0 +1,217 @@
+ admin_url( 'admin-ajax.php' ) ) );
+
+ wp_register_style('cscf-bootstrap', CSCF_PLUGIN_URL . '/css/bootstrap-forms.min.css',
+ null, CSCF_VERSION_NUM);
+
+// wp_register_script( 'csf-recaptcha2',
+// 'https://www.google.com/recaptcha/api.js?onload=onLoadRecaptcha2&render=explicit&hl=' . get_locale(), null, null, true );
+
+ wp_register_script( 'csf-recaptcha2',
+ 'https://www.google.com/recaptcha/api.js?hl=' . get_locale(), null, null, true );
+
+ }
+
+ function RegisterAdminScripts($hook)
+ {
+ if ( $hook != 'settings_page_contact-form-settings')
+ return;
+
+ wp_register_script('cscf-admin-settings', CSCF_PLUGIN_URL . '/js/jquery.admin.settings.js',
+ array(
+ 'jquery-ui-sortable',
+ ) , CSCF_VERSION_NUM, false );
+
+ wp_enqueue_script('cscf-admin-settings');
+ }
+
+ function Upgrade($oldVersion)
+ {
+
+ //turn on the confirm-email option
+ if ( $oldVersion <= "4.2.3" ) {
+ $options = get_option(CSCF_OPTIONS_KEY);
+ $options['confirm-email'] = true;
+ update_option(CSCF_OPTIONS_KEY, $options);
+ }
+
+ //change namespace of options
+ if ( get_option('cff_options') != '') {
+ update_option('cscf_options', get_option('cff_options'));
+ delete_option('cff_options');
+ }
+ if ( get_option('cff_version') != '') {
+ update_option('cscf_version', get_option('cff_version'));
+ delete_option('cff_version');
+ }
+
+ $options = get_option('cscf_options');
+ $updated = false;
+
+ if (trim(get_option('recaptcha_public_key')) <> '')
+ {
+ $options['recaptcha_public_key'] = get_option('recaptcha_public_key');
+ delete_option('recaptcha_public_key');
+ $updated = true;
+ }
+
+ if (trim(get_option('recaptcha_private_key')) <> '')
+ {
+ $options['recaptcha_private_key'] = get_option('recaptcha_private_key');
+ delete_option('recaptcha_private_key');
+ $updated = true;
+ }
+
+ if ($updated) update_option('cscf_options', $options);
+
+ //delete old array key array_key
+ if (get_option('array_key') != FALSE) {
+ $options = get_option('array_key');
+
+ //check it was this plugin that created it by checking for a few values
+ if (isset($options['sent_message_heading']) && isset($options['sent_message_body'])) {
+ delete_option('array_key');
+ }
+ }
+
+ //upgrade to 4.2.3 recipient_email becomes recipient_emails (array) for multiple recipients
+ $options = get_option(CSCF_OPTIONS_KEY);
+ if ( isset($options['recipient_email']) ) {
+ $options['recipient_emails']=array();
+ $options['recipient_emails'][] = $options['recipient_email'];
+ update_option(CSCF_OPTIONS_KEY,$options);
+ }
+
+ }
+
+ /*
+ * Add the settings link to the plugin page
+ */
+
+ function SettingsLink($links, $file)
+ {
+
+ if ($file == CSCF_PLUGIN_NAME . '/' . CSCF_PLUGIN_NAME . '.php')
+ {
+
+ /*
+ * Insert the link at the beginning
+ */
+ $in = '' . __('Settings', 'clean-and-simple-contact-form-by-meg-nicholas') . '';
+ array_unshift($links, $in);
+
+ /*
+ * Insert at the end
+ */
+
+ // $links[] = ''.__('Settings','contact-form').'';
+
+ }
+
+ return $links;
+ }
+ static
+ function Log($message)
+ {
+
+ if (WP_DEBUG === true)
+ {
+
+ if (is_array($message) || is_object($message))
+ {
+ error_log(print_r($message, true));
+ }
+ else
+ {
+ error_log($message);
+ }
+ }
+ }
+
+ /*
+ *This is all we need to do to weed out the spam.
+ *If akismet plugin is enabled then it will be hooked into these filters.
+ */
+ public
+ function SpamFilter($contact) {
+
+ $commentData = apply_filters('preprocess_comment', array(
+ 'comment_post_ID' => $contact->PostID,
+ 'comment_author' => $contact->Name,
+ 'comment_author_email' => $contact->Email,
+ 'comment_content' => $contact->Message,
+ 'comment_type' => 'contact-form',
+ 'comment_author_url' => '',
+ ));
+
+
+ //If it is spam then log as a comment
+ if ( isset( $commentData['akismet_result'] ) && $commentData['akismet_result'] === 'true' ) {
+ $commentData['comment_approved'] = 'spam';
+ wp_insert_comment($commentData);
+ $contact->IsSpam = true;
+ }
+ else {
+ $contact->IsSpam = false;
+ }
+ return $contact;
+ }
+}
+
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php
new file mode 100644
index 0000000..e4971e1
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.php
@@ -0,0 +1,182 @@
+Errors = array();
+
+ if ( cscf_PluginSettings::UseRecaptcha() ) {
+ $this->RecaptchaPublicKey = cscf_PluginSettings::PublicKey();
+ $this->RecaptchaPrivateKey = cscf_PluginSettings::PrivateKey();
+ }
+
+ if ( $_SERVER['REQUEST_METHOD'] == 'POST' && isset( $_POST['cscf'] ) ) {
+ $cscf = $_POST['cscf'];
+ $this->Name = filter_var( $cscf['name'], FILTER_SANITIZE_STRING, FILTER_FLAG_NO_ENCODE_QUOTES );
+ $this->Email = filter_var( $cscf['email'], FILTER_SANITIZE_EMAIL );
+
+ if ( isset( $cscf['confirm-email'] ) ) {
+ $this->ConfirmEmail = filter_var( $cscf['confirm-email'], FILTER_SANITIZE_EMAIL );
+ }
+
+ $this->EmailToSender = isset( $cscf['email-sender'] );
+
+ $this->Message = filter_var( $cscf['message'], FILTER_SANITIZE_STRING, FILTER_FLAG_NO_ENCODE_QUOTES );
+ if ( isset( $_POST['post-id'] ) ) {
+ $this->PostID = $_POST['post-id'];
+ }
+ unset( $_POST['cscf'] );
+ }
+
+ $this->IsSpam = false;
+ }
+
+ public
+ function IsValid() {
+ $this->Errors = array();
+
+ if ( $_SERVER['REQUEST_METHOD'] != 'POST' ) {
+ return false;
+ }
+
+ //check nonce
+
+ if ( ! wp_verify_nonce( $_POST['cscf_nonce'], 'cscf_contact' ) ) {
+ return false;
+ }
+
+ // email and confirm email are the same
+ if ( cscf_PluginSettings::ConfirmEmail() ) {
+ if ( $this->Email != $this->ConfirmEmail ) {
+ $this->Errors['confirm-email'] = __( 'Sorry the email addresses do not match.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+ }
+
+ //email
+
+ if ( strlen( $this->Email ) == 0 ) {
+ $this->Errors['email'] = __( 'Please give your email address.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+
+ //confirm email
+ if ( cscf_PluginSettings::ConfirmEmail() ) {
+ if ( strlen( $this->ConfirmEmail ) == 0 ) {
+ $this->Errors['confirm-email'] = __( 'Please confirm your email address.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+ }
+
+ //name
+
+ if ( strlen( $this->Name ) == 0 ) {
+ $this->Errors['name'] = __( 'Please give your name.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+
+ //message
+
+ if ( strlen( $this->Message ) == 0 ) {
+ $this->Errors['message'] = __( 'Please enter a message.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+
+ //email invalid address
+
+ if ( strlen( $this->Email ) > 0 && ! filter_var( $this->Email, FILTER_VALIDATE_EMAIL ) ) {
+ $this->Errors['email'] = __( 'Please enter a valid email address.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+
+ //check recaptcha but only if we have keys
+
+ if ( $this->RecaptchaPublicKey <> '' && $this->RecaptchaPrivateKey <> '' ) {
+ $resp = csf_RecaptchaV2::VerifyResponse( $_SERVER["REMOTE_ADDR"], $this->RecaptchaPrivateKey, $_POST["g-recaptcha-response"] );
+
+ if ( ! $resp->success ) {
+// $this->Errors['recaptcha'] = __('Sorry the code wasn\'t entered correctly please try again.', 'clean-and-simple-contact-form-by-meg-nicholas');
+ $this->Errors['recaptcha'] = __( 'Please solve the recaptcha to continue.', 'clean-and-simple-contact-form-by-meg-nicholas' );
+ }
+ }
+
+ return count( $this->Errors ) == 0;
+ }
+
+ public
+ function SendMail() {
+ apply_filters( 'cscf_spamfilter', $this );
+
+ if ( $this->IsSpam === true ) {
+ return true;
+ }
+
+ $filters = new cscf_Filters;
+
+ if ( cscf_PluginSettings::OverrideFrom() & cscf_PluginSettings::FromEmail() != "" ) {
+ $filters->fromEmail = cscf_PluginSettings::FromEmail();
+ } else {
+ $filters->fromEmail = $this->Email;
+ }
+
+ $filters->fromName = $this->Name;
+
+ //add filters
+ $filters->add( 'wp_mail_from' );
+ $filters->add( 'wp_mail_from_name' );
+
+ //headers
+ $header = "Reply-To: " . $this->Email . "\r\n";
+
+ //message
+ $message = __( 'From: ', 'clean-and-simple-contact-form-by-meg-nicholas' ) . $this->Name . "\n\n";
+ $message .= __( 'Email: ', 'clean-and-simple-contact-form-by-meg-nicholas' ) . $this->Email . "\n\n";
+ $message .= __( 'Page URL: ', 'clean-and-simple-contact-form-by-meg-nicholas' ) . get_permalink( $this->PostID ) . "\n\n";
+ $message .= __( 'Message:', 'clean-and-simple-contact-form-by-meg-nicholas' ) . "\n\n" . $this->Message;
+
+ $result = ( wp_mail( cscf_PluginSettings::RecipientEmails(), cscf_PluginSettings::Subject(), stripslashes( $message ), $header ) );
+
+ //remove filters (play nice)
+ $filters->remove( 'wp_mail_from' );
+ $filters->remove( 'wp_mail_from_name' );
+
+ //send an email to the form-filler
+ if ( $this->EmailToSender ) {
+ $recipients = cscf_PluginSettings::RecipientEmails();
+
+ if ( cscf_PluginSettings::OverrideFrom() & cscf_PluginSettings::FromEmail() != "" ) {
+ $filters->fromEmail = cscf_PluginSettings::FromEmail();
+ } else {
+ $filters->fromEmail = $recipients[0];
+ }
+
+ $filters->fromName = get_bloginfo( 'name' );
+
+ //add filters
+ $filters->add( 'wp_mail_from' );
+ $filters->add( 'wp_mail_from_name' );
+
+ $header = "";
+ $message = cscf_PluginSettings::SentMessageBody() . "\n\n";
+ $message .= __( "Here is a copy of your message :", "clean-and-simple-contact-form-by-meg-nicholas" ) . "\n\n";
+ $message .= $this->Message;
+
+ $result = ( wp_mail( $this->Email, cscf_PluginSettings::Subject(), stripslashes( $message ), $header ) );
+
+ //remove filters (play nice)
+ $filters->remove( 'wp_mail_from' );
+ $filters->remove( 'wp_mail_from_name' );
+ }
+
+ return $result;
+ }
+}
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_filters.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_filters.php
new file mode 100644
index 0000000..e229fce
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_filters.php
@@ -0,0 +1,50 @@
+fromEmail;
+ }
+
+ //strip slashes from the name
+ function wp_mail_from_name ($orig) {
+
+ if ( $orig != 'WordPress') {
+ return $orig;
+ }
+ return stripslashes($this->fromName);
+ }
+
+ function add($filter, $priority = 10, $args = 1) {
+ add_filter ($filter, array($this,$filter),$priority,$args);
+ }
+
+ function remove($filter, $priority = 10, $args = 1) {
+ remove_filter ($filter, array($this,$filter),$priority,$args);
+ }
+
+}
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php
new file mode 100644
index 0000000..11f74c2
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_pluginsettings.php
@@ -0,0 +1,154 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+ .
+
+
+
+
+
+
+
+
+
+
+ [cscf-contact-form]
+
+
+
+ ' . __('ReCAPTCHA Settings', 'clean-and-simple-contact-form-by-meg-nicholas') . '', array(
+ $this,
+ 'print_section_info_recaptcha'
+ ), 'contact-form-settings');
+ register_setting('test_option_group', CSCF_OPTIONS_KEY, array(
+ $this,
+ 'check_form'
+ ));
+ add_settings_field('use_recaptcha', __('Use reCAPTCHA :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_recaptcha', array(
+ 'use_recaptcha'
+ ));
+ add_settings_field('theme', __('reCAPTCHA Theme :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_recaptcha', array(
+ 'theme'
+ ));
+ add_settings_field('recaptcha_public_key', __('reCAPTCHA Public Key :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_recaptcha', array(
+ 'recaptcha_public_key'
+ ));
+ add_settings_field('recaptcha_private_key', __('reCAPTCHA Private Key :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_recaptcha', array(
+ 'recaptcha_private_key'
+ ));
+ add_settings_section('section_message', '' . __('Message Settings', 'clean-and-simple-contact-form-by-meg-nicholas') . '
', array(
+ $this,
+ 'print_section_info_message'
+ ), 'contact-form-settings');
+ add_settings_field('recipient_emails', __('Recipient Emails :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'recipient_emails'
+ ));
+ add_settings_field('confirm-email', __('Confirm Email Address :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'confirm-email'
+ ));
+ add_settings_field('email-sender', '' . __('*New*','clean-and-simple-contact-form-by-meg-nicholas') . ' ' . __('Allow users to email themselves a copy :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'email-sender'
+ ));
+ add_settings_field('override-from', __('Override \'From\' Address :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'override-from'
+ ));
+ add_settings_field('from-email', __('\'From\' Email Address :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'from-email'
+ ));
+ add_settings_field('subject', __('Email Subject :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'subject'
+ ));
+ add_settings_field('message', __('Message :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'message'
+ ));
+ add_settings_field('sent_message_heading', __('Message Sent Heading :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'sent_message_heading'
+ ));
+ add_settings_field('sent_message_body', __('Message Sent Content :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_message', array(
+ 'sent_message_body'
+ ));
+ add_settings_section('section_styling', '' . __('Styling and Validation', 'clean-and-simple-contact-form-by-meg-nicholas') . '
', array(
+ $this,
+ 'print_section_info_styling'
+ ), 'contact-form-settings');
+ add_settings_field('load_stylesheet', __('Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_styling', array(
+ 'load_stylesheet'
+ ));
+ add_settings_field('use_client_validation', __('Use client side validation (AJAX) :', 'clean-and-simple-contact-form-by-meg-nicholas'), array(
+ $this,
+ 'create_fields'
+ ), 'contact-form-settings', 'section_styling', array(
+ 'use_client_validation'
+ ));
+ }
+
+ public
+ function check_form($input)
+ {
+
+ //recaptcha theme
+ if (isset($input['theme'])) $input['theme'] = filter_var($input['theme'], FILTER_SANITIZE_STRING);
+
+ //recaptcha_public_key
+ if (isset($input['recaptcha_public_key'])) $input['recaptcha_public_key'] = filter_var($input['recaptcha_public_key'], FILTER_SANITIZE_STRING);
+
+ //recaptcha_private_key
+ if (isset($input['recaptcha_private_key'])) $input['recaptcha_private_key'] = filter_var($input['recaptcha_private_key'], FILTER_SANITIZE_STRING);
+
+ //sent_message_heading
+ $input['sent_message_heading'] = filter_var($input['sent_message_heading'], FILTER_SANITIZE_STRING);
+
+ //sent_message_body
+ $input['sent_message_body'] = filter_var($input['sent_message_body'], FILTER_SANITIZE_STRING);
+
+ //message
+ $input['message'] = filter_var($input['message'], FILTER_SANITIZE_STRING);
+
+ //recipient_emails
+ foreach ($input['recipient_emails'] as $key => $recipient) {
+ if (!filter_var($input['recipient_emails'][$key], FILTER_VALIDATE_EMAIL)) {
+ unset($input['recipient_emails'][$key]);
+ }
+ }
+
+ //from
+ if (!filter_var($input['from-email'], FILTER_VALIDATE_EMAIL)) {
+ unset($input['from-email']);
+ }
+
+ //subject
+ $input['subject'] = trim(filter_var($input['subject'], FILTER_SANITIZE_STRING));
+ if (empty($input['subject'])) {
+ unset($input['subject']);
+ }
+
+ if (isset($_POST['add_recipient'])) {
+ $input['recipient_emails'][] = "";
+ }
+
+ if (isset($_POST['remove_recipient'])) {
+ foreach ($_POST['remove_recipient'] as $key => $element) {
+ unset($input['recipient_emails'][$key]);
+ }
+ }
+
+ //tidy up the keys
+ $tidiedRecipients = array();
+ foreach ($input['recipient_emails'] as $recipient) {
+ $tidiedRecipients[] = $recipient;
+ }
+ $input['recipient_emails'] = $tidiedRecipients;
+
+
+ return $input;
+ }
+
+ public
+ function print_section_info_recaptcha()
+ {
+ print __('Enter your reCAPTCHA settings below :', 'clean-and-simple-contact-form-by-meg-nicholas');
+ print "" . __('To use reCAPTCHA you must get an API key from', 'clean-and-simple-contact-form-by-meg-nicholas') . " Google reCAPTCHA
";
+ }
+
+ public
+ function print_section_info_message()
+ {
+ print __('Enter your message settings below :', 'clean-and-simple-contact-form-by-meg-nicholas');
+ }
+
+ public
+ function print_section_info_styling()
+ {
+
+ //print 'Enter your styling settings below:';
+
+ }
+
+ public
+ function create_fields($args)
+ {
+ $fieldname = $args[0];
+
+ switch ($fieldname) {
+ case 'use_recaptcha':
+ $checked = cscf_PluginSettings::UseRecaptcha() == true ? "checked" : "";
+ ?> id="use_recaptcha"
+ name="[use_recaptcha]"> id="load_stylesheet"
+ name="[load_stylesheet]"> type="text" size="60" id="recaptcha_public_key"
+ name="[recaptcha_public_key]"
+ value="" /> type="text" size="60" id="recaptcha_private_key"
+ name="[recaptcha_private_key]"
+ value="" />
+ id="confirm-email"
+ name="[confirm-email]"> id="override-from"
+ name="[override-from]"> id="email-sender"
+ name="[email-sender]"> type="text" size="60" id="from-email"
+ name="[from-email]"
+ value="" />
+
+ id="use_client_validation"
+ name="[use_client_validation]">view = CSCF_PLUGIN_DIR . "/views/" . $view . ".view.php";
+ }
+ else
+ {
+ wp_die(__("View " . CSCF_PLUGIN_URL . "/views/" . $view . ".view.php" . " not found"));
+ }
+ }
+ /**
+ * set a variable which gets rendered in the view
+ */
+ public
+ function Set($name, $value)
+ {
+ $this->vars[$name] = $value;
+ }
+ /**
+ * render the view
+ */
+ public
+ function Render()
+ {
+ extract($this->vars, EXTR_SKIP);
+ ob_start();
+ include $this->view;
+ return str_replace(array("\n", "\r"), "", ob_get_clean());
+ }
+}
+
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php
new file mode 100644
index 0000000..18e456f
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/clean-and-simple-contact-form-by-meg-nicholas.php
@@ -0,0 +1,79 @@
+Upgrade($oldVersion);
+}
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/css/bootstrap-forms.min.css b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/css/bootstrap-forms.min.css
new file mode 100644
index 0000000..0c4d751
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/css/bootstrap-forms.min.css
@@ -0,0 +1,8 @@
+/*!
+* Bootstrap v3.0.0 by @fat and @mdo
+* Copyright 2013 Twitter, Inc.
+* Licensed under http://www.apache.org/licenses/LICENSE-2.0
+*
+* Designed and built with all the love in the world by @mdo and @fat.
+*/
+fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:45px;line-height:45px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label{color:#c09853}.has-warning .form-control{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #dbc59e}.has-warning .input-group-addon{color:#c09853;background-color:#fcf8e3;border-color:#c09853}.has-error .help-block,.has-error .control-label{color:#b94a48}.has-error .form-control{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #d59392}.has-error .input-group-addon{color:#b94a48;background-color:#f2dede;border-color:#b94a48}.has-success .help-block,.has-success .control-label{color:#468847}.has-success .form-control{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #7aba7b}.has-success .input-group-addon{color:#468847;background-color:#dff0d8;border-color:#468847}.form-control-static{padding-top:7px;margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-print:before{content:"\e045"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-briefcase:before{content:"\1f4bc"}.glyphicon-calendar:before{content:"\1f4c5"}.glyphicon-pushpin:before{content:"\1f4cc"}.glyphicon-paperclip:before{content:"\1f4ce"}.glyphicon-camera:before{content:"\1f4f7"}.glyphicon-lock:before{content:"\1f512"}.glyphicon-bell:before{content:"\1f514"}.glyphicon-bookmark:before{content:"\1f516"}.glyphicon-fire:before{content:"\1f525"}.glyphicon-wrench:before{content:"\1f527"}.input-group{position:relative;display:table;border-collapse:separate}.input-group.col{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:45px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:45px;line-height:45px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.eot b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000..87eaa43
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.eot differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.svg b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000..5fee068
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,228 @@
+
+
+
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.ttf b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000..be784dc
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.ttf differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.woff b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000..2cc3e48
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/fonts/glyphicons-halflings-regular.woff differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/images/managewp.png b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/images/managewp.png
new file mode 100644
index 0000000..2d334a5
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/images/managewp.png differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.admin.settings.js b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.admin.settings.js
new file mode 100644
index 0000000..c6a47b5
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.admin.settings.js
@@ -0,0 +1,91 @@
+jQuery(function($) {
+
+ function SetSortable() {
+ //if more than one list item, then it's sortable
+ if ( $('li.recipient_email').length > 1 ) {
+ $('#recipients').sortable({disabled:false,cursor:'move',axis: "y"});
+ }
+ else {
+ $('#recipients').sortable({disabled:true});
+ }
+
+ //set the cursor depending on how many list items there are
+ $('#recipients li').hover(
+ function(){
+ if ( $('li.recipient_email').length > 1 )
+ $(this).css('cursor','move');
+ },
+ function(){
+ $(this).css('cursor','default');
+ }
+ );
+
+ }
+
+ function add_recipient(e) {
+ e.preventDefault();
+
+ //find the next id
+ var $nextID=0;
+ $('li.recipient_email').each(function() {
+ if ( $(this).data('element') > $nextID) {
+ $nextID = $(this).data('element');
+ }
+ });
+ $nextID++;
+
+ //make the new element
+ var $eleToClone=$(this).parent();
+ $eleToClone.after(''+$eleToClone.html()+'');
+
+ //get the new element
+ var $newEle=$('li.recipient_email[data-element="'+$nextID+'"]');
+
+ //update the array element of the new html
+ var $eleToUpdate = $newEle.find('.enter_recipient');
+ var $oldName = $eleToUpdate.attr('name');
+ var $newName = $oldName.replace('['+$eleToClone.data('element')+']', '['+$nextID+']');
+ $eleToUpdate.attr('name', $newName);
+ $eleToUpdate.val('');
+
+ var $eleToUpdate = $newEle.find('.remove_recipient');
+ var $oldName = $eleToUpdate.attr('name');
+ var $newName = $oldName.replace('['+$eleToClone.data('element')+']', '['+$nextID+']');
+ $eleToUpdate.attr('name', $newName);
+
+ //add events for the new elements
+ $newEle.find('.add_recipient').click(add_recipient);
+ $newEle.find('.remove_recipient').click(remove_recipient);
+
+ //set focus
+ $newEle.find('.enter_recipient').focus();
+
+ SetSortable();
+ }
+
+ function remove_recipient(e) {
+ e.preventDefault();
+ if ( $('li.recipient_email').length < 2 )
+ return;
+ $(this).parent().remove();
+ SetSortable();
+ }
+
+ $('.add_recipient').click(add_recipient);
+ $('.remove_recipient').click(remove_recipient);
+
+
+ SetSortable();
+
+
+ $('#use_recaptcha').change(function() {
+ $('#theme').attr('disabled', ! this.checked);
+ $('#recaptcha_public_key').attr('readonly', ! this.checked);
+ $('#recaptcha_private_key').attr('readonly', ! this.checked);
+ });
+
+ $('#override-from').change(function() {
+ $('#from-email').attr('readonly', ! this.checked);
+ });
+
+});
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.contact.form.js b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.contact.form.js
new file mode 100644
index 0000000..a235049
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.contact.form.js
@@ -0,0 +1,99 @@
+jQuery(document).ready(function ($) {
+
+ var $div = $("#cscf");
+
+ var $form = $div.find("#frmCSCF");
+
+ $form.find("#recaptcha_response_field").focus(function () {
+
+ $errele = $form.find("div[for='cscf_recaptcha']");
+ $errele.html('');
+
+ });
+
+ $form.validate({
+
+ errorElement: "span",
+
+ highlight: function (label, errorClass, validClass) {
+ $(label).closest('.form-group').removeClass('has-success').addClass('has-error');
+ $(label).closest('.control-group').removeClass('success').addClass('error'); // support for bootstrap 2
+
+ },
+ unhighlight: function (label, errorClass, validClass) {
+ $(label).closest('.form-group').removeClass('has-error').addClass('has-success');
+ $(label).closest('.control-group').removeClass('error').addClass('success'); // support for bootstrap 2
+ }
+ });
+
+ $form.submit(function (event) {
+ event.preventDefault();
+
+ if ($form.validate().valid()) {
+
+ $button = $(this).find("#cscf_SubmitButton");
+ $button.attr("disabled", "disabled");
+
+ $.ajax({
+ type: "post",
+ dataType: "json",
+ cache: false,
+ url: cscfvars.ajaxurl,
+ data: $($form).serialize() + "&action=cscf-submitform",
+ success: function (response, strText) {
+ if (response.valid === true) {
+ //show sent message div
+ $formdiv = $div.find(".cscfForm");
+ $formdiv.css('display', 'none');
+ $messagediv = $div.find(".cscfMessageSent");
+ if (response.sent === false) {
+ $messagediv = $div.find(".cscfMessageNotSent");
+ }
+
+ $messagediv.css('display', 'block');
+
+ if (isScrolledIntoView($div) == false) {
+ jQuery('html,body')
+ .animate({
+ scrollTop: jQuery($div.selector)
+ .offset().top
+ }, 'slow');
+ }
+ }
+
+ else {
+ $.each(response.errorlist, function (name, value) {
+ $errele = $form.find("div[for='cscf_" + name + "']");
+ $errele.html(value);
+ $errele.closest('.form-group').removeClass('has-success').addClass('has-error');
+ $errele.closest('.control-group').removeClass('success').addClass('error'); // support for bootstrap 2
+ });
+ $button.removeAttr("disabled");
+ }
+ },
+ error: function (XMLHttpRequest, textStatus, errorThrown) {
+ if (window.console) {
+ console.log("Status: " + textStatus + "Error: " + errorThrown + "Response: " + XMLHttpRequest.responseText);
+ }
+ $button.removeAttr("disabled");
+
+ }
+
+ });
+
+ }
+ ;
+ });
+
+});
+
+
+function isScrolledIntoView(elem) {
+ var docViewTop = jQuery(window).scrollTop();
+ var docViewBottom = docViewTop + jQuery(window).height();
+
+ var elemTop = jQuery(elem).offset().top;
+ var elemBottom = elemTop + jQuery(elem).height();
+
+ return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
+}
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.js b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.js
new file mode 100644
index 0000000..d21c94e
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.js
@@ -0,0 +1,1207 @@
+/*! jQuery Validation Plugin - v1.11.0 - 7/13/2013
+* https://github.com/jzaefferer/jquery-validation
+* Copyright (c) 2013 Jörn Zaefferer; Licensed MIT */
+
+(function($) {
+
+$.extend($.fn, {
+ // http://docs.jquery.com/Plugins/Validation/validate
+ validate: function( options ) {
+
+ // if nothing is selected, return nothing; can't chain anyway
+ if ( !this.length ) {
+ if ( options && options.debug && window.console ) {
+ console.warn( "Nothing selected, can't validate, returning nothing." );
+ }
+ return;
+ }
+
+ // check if a validator for this form was already created
+ var validator = $.data( this[0], "validator" );
+ if ( validator ) {
+ return validator;
+ }
+
+ // Add novalidate tag if HTML5.
+ this.attr( "novalidate", "novalidate" );
+
+ validator = new $.validator( options, this[0] );
+ $.data( this[0], "validator", validator );
+
+ if ( validator.settings.onsubmit ) {
+
+ this.validateDelegate( ":submit", "click", function( event ) {
+ if ( validator.settings.submitHandler ) {
+ validator.submitButton = event.target;
+ }
+ // allow suppressing validation by adding a cancel class to the submit button
+ if ( $(event.target).hasClass("cancel") ) {
+ validator.cancelSubmit = true;
+ }
+ });
+
+ // validate the form on submit
+ this.submit( function( event ) {
+ if ( validator.settings.debug ) {
+ // prevent form submit to be able to see console output
+ event.preventDefault();
+ }
+ function handle() {
+ var hidden;
+ if ( validator.settings.submitHandler ) {
+ if ( validator.submitButton ) {
+ // insert a hidden input as a replacement for the missing submit button
+ hidden = $("").attr("name", validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);
+ }
+ validator.settings.submitHandler.call( validator, validator.currentForm, event );
+ if ( validator.submitButton ) {
+ // and clean up afterwards; thanks to no-block-scope, hidden can be referenced
+ hidden.remove();
+ }
+ return false;
+ }
+ return true;
+ }
+
+ // prevent submit for invalid forms or custom submit handlers
+ if ( validator.cancelSubmit ) {
+ validator.cancelSubmit = false;
+ return handle();
+ }
+ if ( validator.form() ) {
+ if ( validator.pendingRequest ) {
+ validator.formSubmitted = true;
+ return false;
+ }
+ return handle();
+ } else {
+ validator.focusInvalid();
+ return false;
+ }
+ });
+ }
+
+ return validator;
+ },
+ // http://docs.jquery.com/Plugins/Validation/valid
+ valid: function() {
+ if ( $(this[0]).is("form")) {
+ return this.validate().form();
+ } else {
+ var valid = true;
+ var validator = $(this[0].form).validate();
+ this.each(function() {
+ valid &= validator.element(this);
+ });
+ return valid;
+ }
+ },
+ // attributes: space seperated list of attributes to retrieve and remove
+ removeAttrs: function( attributes ) {
+ var result = {},
+ $element = this;
+ $.each(attributes.split(/\s/), function( index, value ) {
+ result[value] = $element.attr(value);
+ $element.removeAttr(value);
+ });
+ return result;
+ },
+ // http://docs.jquery.com/Plugins/Validation/rules
+ rules: function( command, argument ) {
+ var element = this[0];
+
+ if ( command ) {
+ var settings = $.data(element.form, "validator").settings;
+ var staticRules = settings.rules;
+ var existingRules = $.validator.staticRules(element);
+ switch(command) {
+ case "add":
+ $.extend(existingRules, $.validator.normalizeRule(argument));
+ staticRules[element.name] = existingRules;
+ if ( argument.messages ) {
+ settings.messages[element.name] = $.extend( settings.messages[element.name], argument.messages );
+ }
+ break;
+ case "remove":
+ if ( !argument ) {
+ delete staticRules[element.name];
+ return existingRules;
+ }
+ var filtered = {};
+ $.each(argument.split(/\s/), function( index, method ) {
+ filtered[method] = existingRules[method];
+ delete existingRules[method];
+ });
+ return filtered;
+ }
+ }
+
+ var data = $.validator.normalizeRules(
+ $.extend(
+ {},
+ $.validator.classRules(element),
+ $.validator.attributeRules(element),
+ $.validator.dataRules(element),
+ $.validator.staticRules(element)
+ ), element);
+
+ // make sure required is at front
+ if ( data.required ) {
+ var param = data.required;
+ delete data.required;
+ data = $.extend({required: param}, data);
+ }
+
+ return data;
+ }
+});
+
+// Custom selectors
+$.extend($.expr[":"], {
+ // http://docs.jquery.com/Plugins/Validation/blank
+ blank: function( a ) { return !$.trim("" + a.value); },
+ // http://docs.jquery.com/Plugins/Validation/filled
+ filled: function( a ) { return !!$.trim("" + a.value); },
+ // http://docs.jquery.com/Plugins/Validation/unchecked
+ unchecked: function( a ) { return !a.checked; }
+});
+
+// constructor for validator
+$.validator = function( options, form ) {
+ this.settings = $.extend( true, {}, $.validator.defaults, options );
+ this.currentForm = form;
+ this.init();
+};
+
+$.validator.format = function( source, params ) {
+ if ( arguments.length === 1 ) {
+ return function() {
+ var args = $.makeArray(arguments);
+ args.unshift(source);
+ return $.validator.format.apply( this, args );
+ };
+ }
+ if ( arguments.length > 2 && params.constructor !== Array ) {
+ params = $.makeArray(arguments).slice(1);
+ }
+ if ( params.constructor !== Array ) {
+ params = [ params ];
+ }
+ $.each(params, function( i, n ) {
+ source = source.replace( new RegExp("\\{" + i + "\\}", "g"), function() {
+ return n;
+ });
+ });
+ return source;
+};
+
+$.extend($.validator, {
+
+ defaults: {
+ messages: {},
+ groups: {},
+ rules: {},
+ errorClass: "error",
+ validClass: "valid",
+ errorElement: "label",
+ focusInvalid: true,
+ errorContainer: $([]),
+ errorLabelContainer: $([]),
+ onsubmit: true,
+ ignore: ":hidden",
+ ignoreTitle: false,
+ onfocusin: function( element, event ) {
+ this.lastActive = element;
+
+ // hide error label and remove error class on focus if enabled
+ if ( this.settings.focusCleanup && !this.blockFocusCleanup ) {
+ if ( this.settings.unhighlight ) {
+ this.settings.unhighlight.call( this, element, this.settings.errorClass, this.settings.validClass );
+ }
+ this.addWrapper(this.errorsFor(element)).hide();
+ }
+ },
+ onfocusout: function( element, event ) {
+ if ( !this.checkable(element) && (element.name in this.submitted || !this.optional(element)) ) {
+ this.element(element);
+ }
+ },
+ onkeyup: function( element, event ) {
+ if ( event.which === 9 && this.elementValue(element) === "" ) {
+ return;
+ } else if ( element.name in this.submitted || element === this.lastElement ) {
+ this.element(element);
+ }
+ },
+ onclick: function( element, event ) {
+ // click on selects, radiobuttons and checkboxes
+ if ( element.name in this.submitted ) {
+ this.element(element);
+ }
+ // or option elements, check parent select in that case
+ else if ( element.parentNode.name in this.submitted ) {
+ this.element(element.parentNode);
+ }
+ },
+ highlight: function( element, errorClass, validClass ) {
+ if ( element.type === "radio" ) {
+ this.findByName(element.name).addClass(errorClass).removeClass(validClass);
+ } else {
+ $(element).addClass(errorClass).removeClass(validClass);
+ }
+ },
+ unhighlight: function( element, errorClass, validClass ) {
+ if ( element.type === "radio" ) {
+ this.findByName(element.name).removeClass(errorClass).addClass(validClass);
+ } else {
+ $(element).removeClass(errorClass).addClass(validClass);
+ }
+ }
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Validator/setDefaults
+ setDefaults: function( settings ) {
+ $.extend( $.validator.defaults, settings );
+ },
+
+ messages: {
+ required: "This field is required.",
+ remote: "Please fix this field.",
+ email: "Please enter a valid email address.",
+ url: "Please enter a valid URL.",
+ date: "Please enter a valid date.",
+ dateISO: "Please enter a valid date (ISO).",
+ number: "Please enter a valid number.",
+ digits: "Please enter only digits.",
+ creditcard: "Please enter a valid credit card number.",
+ equalTo: "Please enter the same value again.",
+ maxlength: $.validator.format("Please enter no more than {0} characters."),
+ minlength: $.validator.format("Please enter at least {0} characters."),
+ rangelength: $.validator.format("Please enter a value between {0} and {1} characters long."),
+ range: $.validator.format("Please enter a value between {0} and {1}."),
+ max: $.validator.format("Please enter a value less than or equal to {0}."),
+ min: $.validator.format("Please enter a value greater than or equal to {0}.")
+ },
+
+ autoCreateRanges: false,
+
+ prototype: {
+
+ init: function() {
+ this.labelContainer = $(this.settings.errorLabelContainer);
+ this.errorContext = this.labelContainer.length && this.labelContainer || $(this.currentForm);
+ this.containers = $(this.settings.errorContainer).add( this.settings.errorLabelContainer );
+ this.submitted = {};
+ this.valueCache = {};
+ this.pendingRequest = 0;
+ this.pending = {};
+ this.invalid = {};
+ this.reset();
+
+ var groups = (this.groups = {});
+ $.each(this.settings.groups, function( key, value ) {
+ if ( typeof value === "string" ) {
+ value = value.split(/\s/);
+ }
+ $.each(value, function( index, name ) {
+ groups[name] = key;
+ });
+ });
+ var rules = this.settings.rules;
+ $.each(rules, function( key, value ) {
+ rules[key] = $.validator.normalizeRule(value);
+ });
+
+ function delegate(event) {
+ var validator = $.data(this[0].form, "validator"),
+ eventType = "on" + event.type.replace(/^validate/, "");
+ if ( validator.settings[eventType] ) {
+ validator.settings[eventType].call(validator, this[0], event);
+ }
+ }
+ $(this.currentForm)
+ .validateDelegate(":text, [type='password'], [type='file'], select, textarea, " +
+ "[type='number'], [type='search'] ,[type='tel'], [type='url'], " +
+ "[type='email'], [type='datetime'], [type='date'], [type='month'], " +
+ "[type='week'], [type='time'], [type='datetime-local'], " +
+ "[type='range'], [type='color'] ",
+ "focusin focusout keyup", delegate)
+ .validateDelegate("[type='radio'], [type='checkbox'], select, option", "click", delegate);
+
+ if ( this.settings.invalidHandler ) {
+ $(this.currentForm).bind("invalid-form.validate", this.settings.invalidHandler);
+ }
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Validator/form
+ form: function() {
+ this.checkForm();
+ $.extend(this.submitted, this.errorMap);
+ this.invalid = $.extend({}, this.errorMap);
+ if ( !this.valid() ) {
+ $(this.currentForm).triggerHandler("invalid-form", [this]);
+ }
+ this.showErrors();
+ return this.valid();
+ },
+
+ checkForm: function() {
+ this.prepareForm();
+ for ( var i = 0, elements = (this.currentElements = this.elements()); elements[i]; i++ ) {
+ this.check( elements[i] );
+ }
+ return this.valid();
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Validator/element
+ element: function( element ) {
+ element = this.validationTargetFor( this.clean( element ) );
+ this.lastElement = element;
+ this.prepareElement( element );
+ this.currentElements = $(element);
+ var result = this.check( element ) !== false;
+ if ( result ) {
+ delete this.invalid[element.name];
+ } else {
+ this.invalid[element.name] = true;
+ }
+ if ( !this.numberOfInvalids() ) {
+ // Hide error containers on last error
+ this.toHide = this.toHide.add( this.containers );
+ }
+ this.showErrors();
+ return result;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Validator/showErrors
+ showErrors: function( errors ) {
+ if ( errors ) {
+ // add items to error list and map
+ $.extend( this.errorMap, errors );
+ this.errorList = [];
+ for ( var name in errors ) {
+ this.errorList.push({
+ message: errors[name],
+ element: this.findByName(name)[0]
+ });
+ }
+ // remove items from success list
+ this.successList = $.grep( this.successList, function( element ) {
+ return !(element.name in errors);
+ });
+ }
+ if ( this.settings.showErrors ) {
+ this.settings.showErrors.call( this, this.errorMap, this.errorList );
+ } else {
+ this.defaultShowErrors();
+ }
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Validator/resetForm
+ resetForm: function() {
+ if ( $.fn.resetForm ) {
+ $(this.currentForm).resetForm();
+ }
+ this.submitted = {};
+ this.lastElement = null;
+ this.prepareForm();
+ this.hideErrors();
+ this.elements().removeClass( this.settings.errorClass ).removeData( "previousValue" );
+ },
+
+ numberOfInvalids: function() {
+ return this.objectLength(this.invalid);
+ },
+
+ objectLength: function( obj ) {
+ var count = 0;
+ for ( var i in obj ) {
+ count++;
+ }
+ return count;
+ },
+
+ hideErrors: function() {
+ this.addWrapper( this.toHide ).hide();
+ },
+
+ valid: function() {
+ return this.size() === 0;
+ },
+
+ size: function() {
+ return this.errorList.length;
+ },
+
+ focusInvalid: function() {
+ if ( this.settings.focusInvalid ) {
+ try {
+ $(this.findLastActive() || this.errorList.length && this.errorList[0].element || [])
+ .filter(":visible")
+ .focus()
+ // manually trigger focusin event; without it, focusin handler isn't called, findLastActive won't have anything to find
+ .trigger("focusin");
+ } catch(e) {
+ // ignore IE throwing errors when focusing hidden elements
+ }
+ }
+ },
+
+ findLastActive: function() {
+ var lastActive = this.lastActive;
+ return lastActive && $.grep(this.errorList, function( n ) {
+ return n.element.name === lastActive.name;
+ }).length === 1 && lastActive;
+ },
+
+ elements: function() {
+ var validator = this,
+ rulesCache = {};
+
+ // select all valid inputs inside the form (no submit or reset buttons)
+ return $(this.currentForm)
+ .find("input, select, textarea")
+ .not(":submit, :reset, :image, [disabled]")
+ .not( this.settings.ignore )
+ .filter(function() {
+ if ( !this.name && validator.settings.debug && window.console ) {
+ console.error( "%o has no name assigned", this);
+ }
+
+ // select only the first element for each name, and only those with rules specified
+ if ( this.name in rulesCache || !validator.objectLength($(this).rules()) ) {
+ return false;
+ }
+
+ rulesCache[this.name] = true;
+ return true;
+ });
+ },
+
+ clean: function( selector ) {
+ return $(selector)[0];
+ },
+
+ errors: function() {
+ var errorClass = this.settings.errorClass.replace(" ", ".");
+ return $(this.settings.errorElement + "." + errorClass, this.errorContext);
+ },
+
+ reset: function() {
+ this.successList = [];
+ this.errorList = [];
+ this.errorMap = {};
+ this.toShow = $([]);
+ this.toHide = $([]);
+ this.currentElements = $([]);
+ },
+
+ prepareForm: function() {
+ this.reset();
+ this.toHide = this.errors().add( this.containers );
+ },
+
+ prepareElement: function( element ) {
+ this.reset();
+ this.toHide = this.errorsFor(element);
+ },
+
+ elementValue: function( element ) {
+ var type = $(element).attr("type"),
+ val = $(element).val();
+
+ if ( type === "radio" || type === "checkbox" ) {
+ return $("input[name='" + $(element).attr("name") + "']:checked").val();
+ }
+
+ if ( typeof val === "string" ) {
+ return val.replace(/\r/g, "");
+ }
+ return val;
+ },
+
+ check: function( element ) {
+ element = this.validationTargetFor( this.clean( element ) );
+
+ var rules = $(element).rules();
+ var dependencyMismatch = false;
+ var val = this.elementValue(element);
+ var result;
+
+ for (var method in rules ) {
+ var rule = { method: method, parameters: rules[method] };
+ try {
+
+ result = $.validator.methods[method].call( this, val, element, rule.parameters );
+
+ // if a method indicates that the field is optional and therefore valid,
+ // don't mark it as valid when there are no other rules
+ if ( result === "dependency-mismatch" ) {
+ dependencyMismatch = true;
+ continue;
+ }
+ dependencyMismatch = false;
+
+ if ( result === "pending" ) {
+ this.toHide = this.toHide.not( this.errorsFor(element) );
+ return;
+ }
+
+ if ( !result ) {
+ this.formatAndAdd( element, rule );
+ return false;
+ }
+ } catch(e) {
+ if ( this.settings.debug && window.console ) {
+ console.log( "Exception occured when checking element " + element.id + ", check the '" + rule.method + "' method.", e );
+ }
+ throw e;
+ }
+ }
+ if ( dependencyMismatch ) {
+ return;
+ }
+ if ( this.objectLength(rules) ) {
+ this.successList.push(element);
+ }
+ return true;
+ },
+
+ // return the custom message for the given element and validation method
+ // specified in the element's HTML5 data attribute
+ customDataMessage: function( element, method ) {
+ return $(element).data("msg-" + method.toLowerCase()) || (element.attributes && $(element).attr("data-msg-" + method.toLowerCase()));
+ },
+
+ // return the custom message for the given element name and validation method
+ customMessage: function( name, method ) {
+ var m = this.settings.messages[name];
+ return m && (m.constructor === String ? m : m[method]);
+ },
+
+ // return the first defined argument, allowing empty strings
+ findDefined: function() {
+ for(var i = 0; i < arguments.length; i++) {
+ if ( arguments[i] !== undefined ) {
+ return arguments[i];
+ }
+ }
+ return undefined;
+ },
+
+ defaultMessage: function( element, method ) {
+ return this.findDefined(
+ this.customMessage( element.name, method ),
+ this.customDataMessage( element, method ),
+ // title is never undefined, so handle empty string as undefined
+ !this.settings.ignoreTitle && element.title || undefined,
+ $.validator.messages[method],
+ "Warning: No message defined for " + element.name + ""
+ );
+ },
+
+ formatAndAdd: function( element, rule ) {
+ var message = this.defaultMessage( element, rule.method ),
+ theregex = /\$?\{(\d+)\}/g;
+ if ( typeof message === "function" ) {
+ message = message.call(this, rule.parameters, element);
+ } else if (theregex.test(message)) {
+ message = $.validator.format(message.replace(theregex, "{$1}"), rule.parameters);
+ }
+ this.errorList.push({
+ message: message,
+ element: element
+ });
+
+ this.errorMap[element.name] = message;
+ this.submitted[element.name] = message;
+ },
+
+ addWrapper: function( toToggle ) {
+ if ( this.settings.wrapper ) {
+ toToggle = toToggle.add( toToggle.parent( this.settings.wrapper ) );
+ }
+ return toToggle;
+ },
+
+ defaultShowErrors: function() {
+ var i, elements;
+ for ( i = 0; this.errorList[i]; i++ ) {
+ var error = this.errorList[i];
+ if ( this.settings.highlight ) {
+ this.settings.highlight.call( this, error.element, this.settings.errorClass, this.settings.validClass );
+ }
+ this.showLabel( error.element, error.message );
+ }
+ if ( this.errorList.length ) {
+ this.toShow = this.toShow.add( this.containers );
+ }
+ if ( this.settings.success ) {
+ for ( i = 0; this.successList[i]; i++ ) {
+ this.showLabel( this.successList[i] );
+ }
+ }
+ if ( this.settings.unhighlight ) {
+ for ( i = 0, elements = this.validElements(); elements[i]; i++ ) {
+ this.settings.unhighlight.call( this, elements[i], this.settings.errorClass, this.settings.validClass );
+ }
+ }
+ this.toHide = this.toHide.not( this.toShow );
+ this.hideErrors();
+ this.addWrapper( this.toShow ).show();
+ },
+
+ validElements: function() {
+ return this.currentElements.not(this.invalidElements());
+ },
+
+ invalidElements: function() {
+ return $(this.errorList).map(function() {
+ return this.element;
+ });
+ },
+
+ showLabel: function( element, message ) {
+ var label = this.errorsFor( element );
+ if ( label.length ) {
+ // refresh error/success class
+ label.removeClass( this.settings.validClass ).addClass( this.settings.errorClass );
+ // replace message on existing label
+ label.html(message);
+ } else {
+ // create label
+ label = $("<" + this.settings.errorElement + ">")
+ .attr("for", this.idOrName(element))
+ .addClass(this.settings.errorClass)
+ .html(message || "");
+ if ( this.settings.wrapper ) {
+ // make sure the element is visible, even in IE
+ // actually showing the wrapped element is handled elsewhere
+ label = label.hide().show().wrap("<" + this.settings.wrapper + "/>").parent();
+ }
+ if ( !this.labelContainer.append(label).length ) {
+ if ( this.settings.errorPlacement ) {
+ this.settings.errorPlacement(label, $(element) );
+ } else {
+ label.insertAfter(element);
+ }
+ }
+ }
+ if ( !message && this.settings.success ) {
+ label.text("");
+ if ( typeof this.settings.success === "string" ) {
+ label.addClass( this.settings.success );
+ } else {
+ this.settings.success( label, element );
+ }
+ }
+ this.toShow = this.toShow.add(label);
+ },
+
+ errorsFor: function( element ) {
+ var name = this.idOrName(element);
+ return this.errors().filter(function() {
+ return $(this).attr("for") === name;
+ });
+ },
+
+ idOrName: function( element ) {
+ return this.groups[element.name] || (this.checkable(element) ? element.name : element.id || element.name);
+ },
+
+ validationTargetFor: function( element ) {
+ // if radio/checkbox, validate first element in group instead
+ if ( this.checkable(element) ) {
+ element = this.findByName( element.name ).not(this.settings.ignore)[0];
+ }
+ return element;
+ },
+
+ checkable: function( element ) {
+ return (/radio|checkbox/i).test(element.type);
+ },
+
+ findByName: function( name ) {
+ return $(this.currentForm).find("[name='" + name + "']");
+ },
+
+ getLength: function( value, element ) {
+ switch( element.nodeName.toLowerCase() ) {
+ case "select":
+ return $("option:selected", element).length;
+ case "input":
+ if ( this.checkable( element) ) {
+ return this.findByName(element.name).filter(":checked").length;
+ }
+ }
+ return value.length;
+ },
+
+ depend: function( param, element ) {
+ return this.dependTypes[typeof param] ? this.dependTypes[typeof param](param, element) : true;
+ },
+
+ dependTypes: {
+ "boolean": function( param, element ) {
+ return param;
+ },
+ "string": function( param, element ) {
+ return !!$(param, element.form).length;
+ },
+ "function": function( param, element ) {
+ return param(element);
+ }
+ },
+
+ optional: function( element ) {
+ var val = this.elementValue(element);
+ return !$.validator.methods.required.call(this, val, element) && "dependency-mismatch";
+ },
+
+ startRequest: function( element ) {
+ if ( !this.pending[element.name] ) {
+ this.pendingRequest++;
+ this.pending[element.name] = true;
+ }
+ },
+
+ stopRequest: function( element, valid ) {
+ this.pendingRequest--;
+ // sometimes synchronization fails, make sure pendingRequest is never < 0
+ if ( this.pendingRequest < 0 ) {
+ this.pendingRequest = 0;
+ }
+ delete this.pending[element.name];
+ if ( valid && this.pendingRequest === 0 && this.formSubmitted && this.form() ) {
+ $(this.currentForm).submit();
+ this.formSubmitted = false;
+ } else if (!valid && this.pendingRequest === 0 && this.formSubmitted) {
+ $(this.currentForm).triggerHandler("invalid-form", [this]);
+ this.formSubmitted = false;
+ }
+ },
+
+ previousValue: function( element ) {
+ return $.data(element, "previousValue") || $.data(element, "previousValue", {
+ old: null,
+ valid: true,
+ message: this.defaultMessage( element, "remote" )
+ });
+ }
+
+ },
+
+ classRuleSettings: {
+ required: {required: true},
+ email: {email: true},
+ url: {url: true},
+ date: {date: true},
+ dateISO: {dateISO: true},
+ number: {number: true},
+ digits: {digits: true},
+ creditcard: {creditcard: true}
+ },
+
+ addClassRules: function( className, rules ) {
+ if ( className.constructor === String ) {
+ this.classRuleSettings[className] = rules;
+ } else {
+ $.extend(this.classRuleSettings, className);
+ }
+ },
+
+ classRules: function( element ) {
+ var rules = {};
+ var classes = $(element).attr("class");
+ if ( classes ) {
+ $.each(classes.split(" "), function() {
+ if ( this in $.validator.classRuleSettings ) {
+ $.extend(rules, $.validator.classRuleSettings[this]);
+ }
+ });
+ }
+ return rules;
+ },
+
+ attributeRules: function( element ) {
+ var rules = {};
+ var $element = $(element);
+
+ for (var method in $.validator.methods) {
+ var value;
+
+ // support for in both html5 and older browsers
+ if ( method === "required" ) {
+ value = $element.get(0).getAttribute(method);
+ // Some browsers return an empty string for the required attribute
+ // and non-HTML5 browsers might have required="" markup
+ if ( value === "" ) {
+ value = true;
+ }
+ // force non-HTML5 browsers to return bool
+ value = !!value;
+ } else {
+ value = $element.attr(method);
+ }
+
+ if ( value ) {
+ rules[method] = value;
+ } else if ( $element[0].getAttribute("type") === method ) {
+ rules[method] = true;
+ }
+ }
+
+ // maxlength may be returned as -1, 2147483647 (IE) and 524288 (safari) for text inputs
+ if ( rules.maxlength && /-1|2147483647|524288/.test(rules.maxlength) ) {
+ delete rules.maxlength;
+ }
+
+ return rules;
+ },
+
+ dataRules: function( element ) {
+ var method, value,
+ rules = {}, $element = $(element);
+ for (method in $.validator.methods) {
+ value = $element.data("rule-" + method.toLowerCase());
+ if ( value !== undefined ) {
+ rules[method] = value;
+ }
+ }
+ return rules;
+ },
+
+ staticRules: function( element ) {
+ var rules = {};
+ var validator = $.data(element.form, "validator");
+ if ( validator.settings.rules ) {
+ rules = $.validator.normalizeRule(validator.settings.rules[element.name]) || {};
+ }
+ return rules;
+ },
+
+ normalizeRules: function( rules, element ) {
+ // handle dependency check
+ $.each(rules, function( prop, val ) {
+ // ignore rule when param is explicitly false, eg. required:false
+ if ( val === false ) {
+ delete rules[prop];
+ return;
+ }
+ if ( val.param || val.depends ) {
+ var keepRule = true;
+ switch (typeof val.depends) {
+ case "string":
+ keepRule = !!$(val.depends, element.form).length;
+ break;
+ case "function":
+ keepRule = val.depends.call(element, element);
+ break;
+ }
+ if ( keepRule ) {
+ rules[prop] = val.param !== undefined ? val.param : true;
+ } else {
+ delete rules[prop];
+ }
+ }
+ });
+
+ // evaluate parameters
+ $.each(rules, function( rule, parameter ) {
+ rules[rule] = $.isFunction(parameter) ? parameter(element) : parameter;
+ });
+
+ // clean number parameters
+ $.each(['minlength', 'maxlength'], function() {
+ if ( rules[this] ) {
+ rules[this] = Number(rules[this]);
+ }
+ });
+ $.each(['rangelength'], function() {
+ var parts;
+ if ( rules[this] ) {
+ if ( $.isArray(rules[this]) ) {
+ rules[this] = [Number(rules[this][0]), Number(rules[this][1])];
+ } else if ( typeof rules[this] === "string" ) {
+ parts = rules[this].split(/[\s,]+/);
+ rules[this] = [Number(parts[0]), Number(parts[1])];
+ }
+ }
+ });
+
+ if ( $.validator.autoCreateRanges ) {
+ // auto-create ranges
+ if ( rules.min && rules.max ) {
+ rules.range = [rules.min, rules.max];
+ delete rules.min;
+ delete rules.max;
+ }
+ if ( rules.minlength && rules.maxlength ) {
+ rules.rangelength = [rules.minlength, rules.maxlength];
+ delete rules.minlength;
+ delete rules.maxlength;
+ }
+ }
+
+ return rules;
+ },
+
+ // Converts a simple string to a {string: true} rule, e.g., "required" to {required:true}
+ normalizeRule: function( data ) {
+ if ( typeof data === "string" ) {
+ var transformed = {};
+ $.each(data.split(/\s/), function() {
+ transformed[this] = true;
+ });
+ data = transformed;
+ }
+ return data;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Validator/addMethod
+ addMethod: function( name, method, message ) {
+ $.validator.methods[name] = method;
+ $.validator.messages[name] = message !== undefined ? message : $.validator.messages[name];
+ if ( method.length < 3 ) {
+ $.validator.addClassRules(name, $.validator.normalizeRule(name));
+ }
+ },
+
+ methods: {
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/required
+ required: function( value, element, param ) {
+ // check if dependency is met
+ if ( !this.depend(param, element) ) {
+ return "dependency-mismatch";
+ }
+ if ( element.nodeName.toLowerCase() === "select" ) {
+ // could be an array for select-multiple or a string, both are fine this way
+ var val = $(element).val();
+ return val && val.length > 0;
+ }
+ if ( this.checkable(element) ) {
+ return this.getLength(value, element) > 0;
+ }
+ return $.trim(value).length > 0;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/remote
+ remote: function( value, element, param ) {
+ if ( this.optional(element) ) {
+ return "dependency-mismatch";
+ }
+
+ var previous = this.previousValue(element);
+ if (!this.settings.messages[element.name] ) {
+ this.settings.messages[element.name] = {};
+ }
+ previous.originalMessage = this.settings.messages[element.name].remote;
+ this.settings.messages[element.name].remote = previous.message;
+
+ param = typeof param === "string" && {url:param} || param;
+
+ if ( previous.old === value ) {
+ return previous.valid;
+ }
+
+ previous.old = value;
+ var validator = this;
+ this.startRequest(element);
+ var data = {};
+ data[element.name] = value;
+ $.ajax($.extend(true, {
+ url: param,
+ mode: "abort",
+ port: "validate" + element.name,
+ dataType: "json",
+ data: data,
+ success: function( response ) {
+ validator.settings.messages[element.name].remote = previous.originalMessage;
+ var valid = response === true || response === "true";
+ if ( valid ) {
+ var submitted = validator.formSubmitted;
+ validator.prepareElement(element);
+ validator.formSubmitted = submitted;
+ validator.successList.push(element);
+ delete validator.invalid[element.name];
+ validator.showErrors();
+ } else {
+ var errors = {};
+ var message = response || validator.defaultMessage( element, "remote" );
+ errors[element.name] = previous.message = $.isFunction(message) ? message(value) : message;
+ validator.invalid[element.name] = true;
+ validator.showErrors(errors);
+ }
+ previous.valid = valid;
+ validator.stopRequest(element, valid);
+ }
+ }, param));
+ return "pending";
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/minlength
+ minlength: function( value, element, param ) {
+ var length = $.isArray( value ) ? value.length : this.getLength($.trim(value), element);
+ return this.optional(element) || length >= param;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/maxlength
+ maxlength: function( value, element, param ) {
+ var length = $.isArray( value ) ? value.length : this.getLength($.trim(value), element);
+ return this.optional(element) || length <= param;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/rangelength
+ rangelength: function( value, element, param ) {
+ var length = $.isArray( value ) ? value.length : this.getLength($.trim(value), element);
+ return this.optional(element) || ( length >= param[0] && length <= param[1] );
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/min
+ min: function( value, element, param ) {
+ return this.optional(element) || value >= param;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/max
+ max: function( value, element, param ) {
+ return this.optional(element) || value <= param;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/range
+ range: function( value, element, param ) {
+ return this.optional(element) || ( value >= param[0] && value <= param[1] );
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/email
+ email: function( value, element ) {
+ // contributed by Scott Gonzalez: http://projects.scottsplayground.com/email_address_validation/
+ return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i.test(value);
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/url
+ url: function( value, element ) {
+ // contributed by Scott Gonzalez: http://projects.scottsplayground.com/iri/
+ return this.optional(element) || /^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/date
+ date: function( value, element ) {
+ return this.optional(element) || !/Invalid|NaN/.test(new Date(value).toString());
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/dateISO
+ dateISO: function( value, element ) {
+ return this.optional(element) || /^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/.test(value);
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/number
+ number: function( value, element ) {
+ return this.optional(element) || /^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(value);
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/digits
+ digits: function( value, element ) {
+ return this.optional(element) || /^\d+$/.test(value);
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/creditcard
+ // based on http://en.wikipedia.org/wiki/Luhn
+ creditcard: function( value, element ) {
+ if ( this.optional(element) ) {
+ return "dependency-mismatch";
+ }
+ // accept only spaces, digits and dashes
+ if ( /[^0-9 \-]+/.test(value) ) {
+ return false;
+ }
+ var nCheck = 0,
+ nDigit = 0,
+ bEven = false;
+
+ value = value.replace(/\D/g, "");
+
+ for (var n = value.length - 1; n >= 0; n--) {
+ var cDigit = value.charAt(n);
+ nDigit = parseInt(cDigit, 10);
+ if ( bEven ) {
+ if ( (nDigit *= 2) > 9 ) {
+ nDigit -= 9;
+ }
+ }
+ nCheck += nDigit;
+ bEven = !bEven;
+ }
+
+ return (nCheck % 10) === 0;
+ },
+
+ // http://docs.jquery.com/Plugins/Validation/Methods/equalTo
+ equalTo: function( value, element, param ) {
+ // bind to the blur event of the target in order to revalidate whenever the target field is updated
+ // TODO find a way to bind the event just once, avoiding the unbind-rebind overhead
+ var target = $(param);
+ if ( this.settings.onfocusout ) {
+ target.unbind(".validate-equalTo").bind("blur.validate-equalTo", function() {
+ $(element).valid();
+ });
+ }
+ return value === target.val();
+ }
+
+ }
+
+});
+
+// deprecated, use $.validator.format instead
+$.format = $.validator.format;
+
+}(jQuery));
+
+// ajax mode: abort
+// usage: $.ajax({ mode: "abort"[, port: "uniqueport"]});
+// if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort()
+(function($) {
+ var pendingRequests = {};
+ // Use a prefilter if available (1.5+)
+ if ( $.ajaxPrefilter ) {
+ $.ajaxPrefilter(function( settings, _, xhr ) {
+ var port = settings.port;
+ if ( settings.mode === "abort" ) {
+ if ( pendingRequests[port] ) {
+ pendingRequests[port].abort();
+ }
+ pendingRequests[port] = xhr;
+ }
+ });
+ } else {
+ // Proxy ajax
+ var ajax = $.ajax;
+ $.ajax = function( settings ) {
+ var mode = ( "mode" in settings ? settings : $.ajaxSettings ).mode,
+ port = ( "port" in settings ? settings : $.ajaxSettings ).port;
+ if ( mode === "abort" ) {
+ if ( pendingRequests[port] ) {
+ pendingRequests[port].abort();
+ }
+ return (pendingRequests[port] = ajax.apply(this, arguments));
+ }
+ return ajax.apply(this, arguments);
+ };
+ }
+}(jQuery));
+
+// provides delegate(type: String, delegate: Selector, handler: Callback) plugin for easier event delegation
+// handler is only called when $(event.target).is(delegate), in the scope of the jquery-object for event.target
+(function($) {
+ $.extend($.fn, {
+ validateDelegate: function( delegate, type, handler ) {
+ return this.bind(type, function( event ) {
+ var target = $(event.target);
+ if ( target.is(delegate) ) {
+ return handler.apply(target, arguments);
+ }
+ });
+ }
+ });
+}(jQuery));
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.min.js b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.min.js
new file mode 100644
index 0000000..450a25d
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/js/jquery.validate.min.js
@@ -0,0 +1,4 @@
+/*! jQuery Validation Plugin - v1.11.0 - 7/13/2013
+* https://github.com/jzaefferer/jquery-validation
+* Copyright (c) 2013 Jörn Zaefferer; Licensed MIT */
+(function(e){e.extend(e.fn,{validate:function(t){if(!this.length){t&&t.debug&&window.console&&console.warn("Nothing selected, can't validate, returning nothing.");return}var n=e.data(this[0],"validator");return n?n:(this.attr("novalidate","novalidate"),n=new e.validator(t,this[0]),e.data(this[0],"validator",n),n.settings.onsubmit&&(this.validateDelegate(":submit","click",function(t){n.settings.submitHandler&&(n.submitButton=t.target),e(t.target).hasClass("cancel")&&(n.cancelSubmit=!0)}),this.submit(function(t){function r(){var r;return n.settings.submitHandler?(n.submitButton&&(r=e("").attr("name",n.submitButton.name).val(n.submitButton.value).appendTo(n.currentForm)),n.settings.submitHandler.call(n,n.currentForm,t),n.submitButton&&r.remove(),!1):!0}return n.settings.debug&&t.preventDefault(),n.cancelSubmit?(n.cancelSubmit=!1,r()):n.form()?n.pendingRequest?(n.formSubmitted=!0,!1):r():(n.focusInvalid(),!1)})),n)},valid:function(){if(e(this[0]).is("form"))return this.validate().form();var t=!0,n=e(this[0].form).validate();return this.each(function(){t&=n.element(this)}),t},removeAttrs:function(t){var n={},r=this;return e.each(t.split(/\s/),function(e,t){n[t]=r.attr(t),r.removeAttr(t)}),n},rules:function(t,n){var r=this[0];if(t){var i=e.data(r.form,"validator").settings,s=i.rules,o=e.validator.staticRules(r);switch(t){case"add":e.extend(o,e.validator.normalizeRule(n)),s[r.name]=o,n.messages&&(i.messages[r.name]=e.extend(i.messages[r.name],n.messages));break;case"remove":if(!n)return delete s[r.name],o;var u={};return e.each(n.split(/\s/),function(e,t){u[t]=o[t],delete o[t]}),u}}var a=e.validator.normalizeRules(e.extend({},e.validator.classRules(r),e.validator.attributeRules(r),e.validator.dataRules(r),e.validator.staticRules(r)),r);if(a.required){var f=a.required;delete a.required,a=e.extend({required:f},a)}return a}}),e.extend(e.expr[":"],{blank:function(t){return!e.trim(""+t.value)},filled:function(t){return!!e.trim(""+t.value)},unchecked:function(e){return!e.checked}}),e.validator=function(t,n){this.settings=e.extend(!0,{},e.validator.defaults,t),this.currentForm=n,this.init()},e.validator.format=function(t,n){return arguments.length===1?function(){var n=e.makeArray(arguments);return n.unshift(t),e.validator.format.apply(this,n)}:(arguments.length>2&&n.constructor!==Array&&(n=e.makeArray(arguments).slice(1)),n.constructor!==Array&&(n=[n]),e.each(n,function(e,n){t=t.replace(new RegExp("\\{"+e+"\\}","g"),function(){return n})}),t)},e.extend(e.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:!0,errorContainer:e([]),errorLabelContainer:e([]),onsubmit:!0,ignore:":hidden",ignoreTitle:!1,onfocusin:function(e,t){this.lastActive=e,this.settings.focusCleanup&&!this.blockFocusCleanup&&(this.settings.unhighlight&&this.settings.unhighlight.call(this,e,this.settings.errorClass,this.settings.validClass),this.addWrapper(this.errorsFor(e)).hide())},onfocusout:function(e,t){!this.checkable(e)&&(e.name in this.submitted||!this.optional(e))&&this.element(e)},onkeyup:function(e,t){if(t.which===9&&this.elementValue(e)==="")return;(e.name in this.submitted||e===this.lastElement)&&this.element(e)},onclick:function(e,t){e.name in this.submitted?this.element(e):e.parentNode.name in this.submitted&&this.element(e.parentNode)},highlight:function(t,n,r){t.type==="radio"?this.findByName(t.name).addClass(n).removeClass(r):e(t).addClass(n).removeClass(r)},unhighlight:function(t,n,r){t.type==="radio"?this.findByName(t.name).removeClass(n).addClass(r):e(t).removeClass(n).addClass(r)}},setDefaults:function(t){e.extend(e.validator.defaults,t)},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",maxlength:e.validator.format("Please enter no more than {0} characters."),minlength:e.validator.format("Please enter at least {0} characters."),rangelength:e.validator.format("Please enter a value between {0} and {1} characters long."),range:e.validator.format("Please enter a value between {0} and {1}."),max:e.validator.format("Please enter a value less than or equal to {0}."),min:e.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:!1,prototype:{init:function(){function r(t){var n=e.data(this[0].form,"validator"),r="on"+t.type.replace(/^validate/,"");n.settings[r]&&n.settings[r].call(n,this[0],t)}this.labelContainer=e(this.settings.errorLabelContainer),this.errorContext=this.labelContainer.length&&this.labelContainer||e(this.currentForm),this.containers=e(this.settings.errorContainer).add(this.settings.errorLabelContainer),this.submitted={},this.valueCache={},this.pendingRequest=0,this.pending={},this.invalid={},this.reset();var t=this.groups={};e.each(this.settings.groups,function(n,r){typeof r=="string"&&(r=r.split(/\s/)),e.each(r,function(e,r){t[r]=n})});var n=this.settings.rules;e.each(n,function(t,r){n[t]=e.validator.normalizeRule(r)}),e(this.currentForm).validateDelegate(":text, [type='password'], [type='file'], select, textarea, [type='number'], [type='search'] ,[type='tel'], [type='url'], [type='email'], [type='datetime'], [type='date'], [type='month'], [type='week'], [type='time'], [type='datetime-local'], [type='range'], [type='color'] ","focusin focusout keyup",r).validateDelegate("[type='radio'], [type='checkbox'], select, option","click",r),this.settings.invalidHandler&&e(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler)},form:function(){return this.checkForm(),e.extend(this.submitted,this.errorMap),this.invalid=e.extend({},this.errorMap),this.valid()||e(this.currentForm).triggerHandler("invalid-form",[this]),this.showErrors(),this.valid()},checkForm:function(){this.prepareForm();for(var e=0,t=this.currentElements=this.elements();t[e];e++)this.check(t[e]);return this.valid()},element:function(t){t=this.validationTargetFor(this.clean(t)),this.lastElement=t,this.prepareElement(t),this.currentElements=e(t);var n=this.check(t)!==!1;return n?delete this.invalid[t.name]:this.invalid[t.name]=!0,this.numberOfInvalids()||(this.toHide=this.toHide.add(this.containers)),this.showErrors(),n},showErrors:function(t){if(t){e.extend(this.errorMap,t),this.errorList=[];for(var n in t)this.errorList.push({message:t[n],element:this.findByName(n)[0]});this.successList=e.grep(this.successList,function(e){return!(e.name in t)})}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors()},resetForm:function(){e.fn.resetForm&&e(this.currentForm).resetForm(),this.submitted={},this.lastElement=null,this.prepareForm(),this.hideErrors(),this.elements().removeClass(this.settings.errorClass).removeData("previousValue")},numberOfInvalids:function(){return this.objectLength(this.invalid)},objectLength:function(e){var t=0;for(var n in e)t++;return t},hideErrors:function(){this.addWrapper(this.toHide).hide()},valid:function(){return this.size()===0},size:function(){return this.errorList.length},focusInvalid:function(){if(this.settings.focusInvalid)try{e(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus().trigger("focusin")}catch(t){}},findLastActive:function(){var t=this.lastActive;return t&&e.grep(this.errorList,function(e){return e.element.name===t.name}).length===1&&t},elements:function(){var t=this,n={};return e(this.currentForm).find("input, select, textarea").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){return!this.name&&t.settings.debug&&window.console&&console.error("%o has no name assigned",this),this.name in n||!t.objectLength(e(this).rules())?!1:(n[this.name]=!0,!0)})},clean:function(t){return e(t)[0]},errors:function(){var t=this.settings.errorClass.replace(" ",".");return e(this.settings.errorElement+"."+t,this.errorContext)},reset:function(){this.successList=[],this.errorList=[],this.errorMap={},this.toShow=e([]),this.toHide=e([]),this.currentElements=e([])},prepareForm:function(){this.reset(),this.toHide=this.errors().add(this.containers)},prepareElement:function(e){this.reset(),this.toHide=this.errorsFor(e)},elementValue:function(t){var n=e(t).attr("type"),r=e(t).val();return n==="radio"||n==="checkbox"?e("input[name='"+e(t).attr("name")+"']:checked").val():typeof r=="string"?r.replace(/\r/g,""):r},check:function(t){t=this.validationTargetFor(this.clean(t));var n=e(t).rules(),r=!1,i=this.elementValue(t),s;for(var o in n){var u={method:o,parameters:n[o]};try{s=e.validator.methods[o].call(this,i,t,u.parameters);if(s==="dependency-mismatch"){r=!0;continue}r=!1;if(s==="pending"){this.toHide=this.toHide.not(this.errorsFor(t));return}if(!s)return this.formatAndAdd(t,u),!1}catch(a){throw this.settings.debug&&window.console&&console.log("Exception occured when checking element "+t.id+", check the '"+u.method+"' method.",a),a}}if(r)return;return this.objectLength(n)&&this.successList.push(t),!0},customDataMessage:function(t,n){return e(t).data("msg-"+n.toLowerCase())||t.attributes&&e(t).attr("data-msg-"+n.toLowerCase())},customMessage:function(e,t){var n=this.settings.messages[e];return n&&(n.constructor===String?n:n[t])},findDefined:function(){for(var e=0;eWarning: No message defined for "+t.name+"")},formatAndAdd:function(t,n){var r=this.defaultMessage(t,n.method),i=/\$?\{(\d+)\}/g;typeof r=="function"?r=r.call(this,n.parameters,t):i.test(r)&&(r=e.validator.format(r.replace(i,"{$1}"),n.parameters)),this.errorList.push({message:r,element:t}),this.errorMap[t.name]=r,this.submitted[t.name]=r},addWrapper:function(e){return this.settings.wrapper&&(e=e.add(e.parent(this.settings.wrapper))),e},defaultShowErrors:function(){var e,t;for(e=0;this.errorList[e];e++){var n=this.errorList[e];this.settings.highlight&&this.settings.highlight.call(this,n.element,this.settings.errorClass,this.settings.validClass),this.showLabel(n.element,n.message)}this.errorList.length&&(this.toShow=this.toShow.add(this.containers));if(this.settings.success)for(e=0;this.successList[e];e++)this.showLabel(this.successList[e]);if(this.settings.unhighlight)for(e=0,t=this.validElements();t[e];e++)this.settings.unhighlight.call(this,t[e],this.settings.errorClass,this.settings.validClass);this.toHide=this.toHide.not(this.toShow),this.hideErrors(),this.addWrapper(this.toShow).show()},validElements:function(){return this.currentElements.not(this.invalidElements())},invalidElements:function(){return e(this.errorList).map(function(){return this.element})},showLabel:function(t,n){var r=this.errorsFor(t);r.length?(r.removeClass(this.settings.validClass).addClass(this.settings.errorClass),r.html(n)):(r=e("<"+this.settings.errorElement+">").attr("for",this.idOrName(t)).addClass(this.settings.errorClass).html(n||""),this.settings.wrapper&&(r=r.hide().show().wrap("<"+this.settings.wrapper+"/>").parent()),this.labelContainer.append(r).length||(this.settings.errorPlacement?this.settings.errorPlacement(r,e(t)):r.insertAfter(t))),!n&&this.settings.success&&(r.text(""),typeof this.settings.success=="string"?r.addClass(this.settings.success):this.settings.success(r,t)),this.toShow=this.toShow.add(r)},errorsFor:function(t){var n=this.idOrName(t);return this.errors().filter(function(){return e(this).attr("for")===n})},idOrName:function(e){return this.groups[e.name]||(this.checkable(e)?e.name:e.id||e.name)},validationTargetFor:function(e){return this.checkable(e)&&(e=this.findByName(e.name).not(this.settings.ignore)[0]),e},checkable:function(e){return/radio|checkbox/i.test(e.type)},findByName:function(t){return e(this.currentForm).find("[name='"+t+"']")},getLength:function(t,n){switch(n.nodeName.toLowerCase()){case"select":return e("option:selected",n).length;case"input":if(this.checkable(n))return this.findByName(n.name).filter(":checked").length}return t.length},depend:function(e,t){return this.dependTypes[typeof e]?this.dependTypes[typeof e](e,t):!0},dependTypes:{"boolean":function(e,t){return e},string:function(t,n){return!!e(t,n.form).length},"function":function(e,t){return e(t)}},optional:function(t){var n=this.elementValue(t);return!e.validator.methods.required.call(this,n,t)&&"dependency-mismatch"},startRequest:function(e){this.pending[e.name]||(this.pendingRequest++,this.pending[e.name]=!0)},stopRequest:function(t,n){this.pendingRequest--,this.pendingRequest<0&&(this.pendingRequest=0),delete this.pending[t.name],n&&this.pendingRequest===0&&this.formSubmitted&&this.form()?(e(this.currentForm).submit(),this.formSubmitted=!1):!n&&this.pendingRequest===0&&this.formSubmitted&&(e(this.currentForm).triggerHandler("invalid-form",[this]),this.formSubmitted=!1)},previousValue:function(t){return e.data(t,"previousValue")||e.data(t,"previousValue",{old:null,valid:!0,message:this.defaultMessage(t,"remote")})}},classRuleSettings:{required:{required:!0},email:{email:!0},url:{url:!0},date:{date:!0},dateISO:{dateISO:!0},number:{number:!0},digits:{digits:!0},creditcard:{creditcard:!0}},addClassRules:function(t,n){t.constructor===String?this.classRuleSettings[t]=n:e.extend(this.classRuleSettings,t)},classRules:function(t){var n={},r=e(t).attr("class");return r&&e.each(r.split(" "),function(){this in e.validator.classRuleSettings&&e.extend(n,e.validator.classRuleSettings[this])}),n},attributeRules:function(t){var n={},r=e(t);for(var i in e.validator.methods){var s;i==="required"?(s=r.get(0).getAttribute(i),s===""&&(s=!0),s=!!s):s=r.attr(i),s?n[i]=s:r[0].getAttribute("type")===i&&(n[i]=!0)}return n.maxlength&&/-1|2147483647|524288/.test(n.maxlength)&&delete n.maxlength,n},dataRules:function(t){var n,r,i={},s=e(t);for(n in e.validator.methods)r=s.data("rule-"+n.toLowerCase()),r!==undefined&&(i[n]=r);return i},staticRules:function(t){var n={},r=e.data(t.form,"validator");return r.settings.rules&&(n=e.validator.normalizeRule(r.settings.rules[t.name])||{}),n},normalizeRules:function(t,n){return e.each(t,function(r,i){if(i===!1){delete t[r];return}if(i.param||i.depends){var s=!0;switch(typeof i.depends){case"string":s=!!e(i.depends,n.form).length;break;case"function":s=i.depends.call(n,n)}s?t[r]=i.param!==undefined?i.param:!0:delete t[r]}}),e.each(t,function(r,i){t[r]=e.isFunction(i)?i(n):i}),e.each(["minlength","maxlength"],function(){t[this]&&(t[this]=Number(t[this]))}),e.each(["rangelength"],function(){var n;t[this]&&(e.isArray(t[this])?t[this]=[Number(t[this][0]),Number(t[this][1])]:typeof t[this]=="string"&&(n=t[this].split(/[\s,]+/),t[this]=[Number(n[0]),Number(n[1])]))}),e.validator.autoCreateRanges&&(t.min&&t.max&&(t.range=[t.min,t.max],delete t.min,delete t.max),t.minlength&&t.maxlength&&(t.rangelength=[t.minlength,t.maxlength],delete t.minlength,delete t.maxlength)),t},normalizeRule:function(t){if(typeof t=="string"){var n={};e.each(t.split(/\s/),function(){n[this]=!0}),t=n}return t},addMethod:function(t,n,r){e.validator.methods[t]=n,e.validator.messages[t]=r!==undefined?r:e.validator.messages[t],n.length<3&&e.validator.addClassRules(t,e.validator.normalizeRule(t))},methods:{required:function(t,n,r){if(!this.depend(r,n))return"dependency-mismatch";if(n.nodeName.toLowerCase()==="select"){var i=e(n).val();return i&&i.length>0}return this.checkable(n)?this.getLength(t,n)>0:e.trim(t).length>0},remote:function(t,n,r){if(this.optional(n))return"dependency-mismatch";var i=this.previousValue(n);this.settings.messages[n.name]||(this.settings.messages[n.name]={}),i.originalMessage=this.settings.messages[n.name].remote,this.settings.messages[n.name].remote=i.message,r=typeof r=="string"&&{url:r}||r;if(i.old===t)return i.valid;i.old=t;var s=this;this.startRequest(n);var o={};return o[n.name]=t,e.ajax(e.extend(!0,{url:r,mode:"abort",port:"validate"+n.name,dataType:"json",data:o,success:function(r){s.settings.messages[n.name].remote=i.originalMessage;var o=r===!0||r==="true";if(o){var u=s.formSubmitted;s.prepareElement(n),s.formSubmitted=u,s.successList.push(n),delete s.invalid[n.name],s.showErrors()}else{var a={},f=r||s.defaultMessage(n,"remote");a[n.name]=i.message=e.isFunction(f)?f(t):f,s.invalid[n.name]=!0,s.showErrors(a)}i.valid=o,s.stopRequest(n,o)}},r)),"pending"},minlength:function(t,n,r){var i=e.isArray(t)?t.length:this.getLength(e.trim(t),n);return this.optional(n)||i>=r},maxlength:function(t,n,r){var i=e.isArray(t)?t.length:this.getLength(e.trim(t),n);return this.optional(n)||i<=r},rangelength:function(t,n,r){var i=e.isArray(t)?t.length:this.getLength(e.trim(t),n);return this.optional(n)||i>=r[0]&&i<=r[1]},min:function(e,t,n){return this.optional(t)||e>=n},max:function(e,t,n){return this.optional(t)||e<=n},range:function(e,t,n){return this.optional(t)||e>=n[0]&&e<=n[1]},email:function(e,t){return this.optional(t)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$/i.test(e)},url:function(e,t){return this.optional(t)||/^(https?|s?ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(e)},date:function(e,t){return this.optional(t)||!/Invalid|NaN/.test((new Date(e)).toString())},dateISO:function(e,t){return this.optional(t)||/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/.test(e)},number:function(e,t){return this.optional(t)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)},digits:function(e,t){return this.optional(t)||/^\d+$/.test(e)},creditcard:function(e,t){if(this.optional(t))return"dependency-mismatch";if(/[^0-9 \-]+/.test(e))return!1;var n=0,r=0,i=!1;e=e.replace(/\D/g,"");for(var s=e.length-1;s>=0;s--){var o=e.charAt(s);r=parseInt(o,10),i&&(r*=2)>9&&(r-=9),n+=r,i=!i}return n%10===0},equalTo:function(t,n,r){var i=e(r);return this.settings.onfocusout&&i.unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){e(n).valid()}),t===i.val()}}}),e.format=e.validator.format})(jQuery),function(e){var t={};if(e.ajaxPrefilter)e.ajaxPrefilter(function(e,n,r){var i=e.port;e.mode==="abort"&&(t[i]&&t[i].abort(),t[i]=r)});else{var n=e.ajax;e.ajax=function(r){var i=("mode"in r?r:e.ajaxSettings).mode,s=("port"in r?r:e.ajaxSettings).port;return i==="abort"?(t[s]&&t[s].abort(),t[s]=n.apply(this,arguments)):n.apply(this,arguments)}}}(jQuery),function(e){e.extend(e.fn,{validateDelegate:function(t,n,r){return this.bind(n,function(n){var i=e(n.target);if(i.is(t))return r.apply(i,arguments)})}})}(jQuery);
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ar.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ar.mo
new file mode 100644
index 0000000..56b2a8c
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ar.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ar.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ar.po
new file mode 100644
index 0000000..5ce821a
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ar.po
@@ -0,0 +1,300 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.2.3\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2013-10-28 20:02:19+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-11-03 01:23-0600\n"
+"Last-Translator: \n"
+"Language-Team: Omar AlQabandi \n"
+"X-Generator: Poedit 1.5.7\n"
+"Language: Arabic\n"
+
+#: class.cscf.php:143
+msgid "Settings"
+msgstr "الإعدادات"
+
+#: class.cscf_contact.php:54
+msgid "Sorry the email addresses do not match."
+msgstr "عفواً، عناوين البريد الإلكترونية لا تتطابق."
+
+#: class.cscf_contact.php:58 views/contact-form.view.php:32
+msgid "Please give your email address."
+msgstr "قم بإدخال بريدك الإلكتروني."
+
+#: class.cscf_contact.php:62
+msgid "Please confirm your email address."
+msgstr "الرجاء التأكد من البريد الإلكتروني."
+
+#: class.cscf_contact.php:66 views/contact-form.view.php:77
+msgid "Please give your name."
+msgstr "أدخل إسمك الكامل."
+
+#: class.cscf_contact.php:70
+msgid "Please enter a message."
+msgstr "قم بإدخال الرسالة"
+
+#: class.cscf_contact.php:74 views/contact-form.view.php:33
+#: views/contact-form.view.php:56
+msgid "Please enter a valid email address."
+msgstr "الرجاء إدخال بريد إلكتروني صحيح."
+
+#: class.cscf_contact.php:82
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "لم يتم إدخال الكود بشكل صحيح، حاول مرة أخرى"
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "تم إرسال الرسالة"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "شكراً على تواصلك، سنحاول الرد بأسرع وقت."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"رجاءاً قم بإدخال بيانات المستخدم ملحقاً برسالة قصيرة و سوف أحاول الرد في أسرع "
+"وقت."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "استفسار من الويب (Web Enquiry)"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "إعدادات نموذج بيانات المستخدم"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "نموذج بيانات المستخدم"
+
+#: class.cscf_settings.php:40
+msgid "Clean and Simple Contact Form Settings"
+msgstr "إعدادات نموذج بيانات مستخدم “Clean and Simple”"
+
+#: class.cscf_settings.php:46
+msgid "Donate $10, $20 or $50!"
+msgstr "تبرع بـ 10$، 20$ أو 50$!"
+
+#: class.cscf_settings.php:48
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr "إذا أعجبتكم هذه الإضافة، نرجو منكم التبرع لدعم التطوير و الصيانة:"
+
+#: class.cscf_settings.php:48
+msgid "Clean and Simple Contact Form!"
+msgstr "نموذج بيانات مستخدم Clean and Simple"
+
+#: class.cscf_settings.php:63
+msgid "You are using version"
+msgstr "أنت تستعمل الإصدار"
+
+#: class.cscf_settings.php:64
+msgid "If you find this plugin useful please consider"
+msgstr "اذا أعجبتكم هذه الإضافة، نرجو منكم"
+
+#: class.cscf_settings.php:67
+msgid "leaving a review"
+msgstr "ترك إنطباعكم"
+
+#: class.cscf_settings.php:69
+msgid "Thank you!"
+msgstr "شكراً!"
+
+#: class.cscf_settings.php:74
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"تنبيه: نموذج بيانات مستخدم JetPack مفعل لديك، قم بتعطيل هذه الخاصية أو "
+"استخدم الأكواد القصيرة التالية [cscf-contact-form]."
+
+#: class.cscf_settings.php:75
+msgid "Read More"
+msgstr "اقرأ المزيد"
+
+#: class.cscf_settings.php:79
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr "ملاحظة: لإضافة نموذج بيانات المستخدم إلى صفحتك، الرجاء إضافة النص"
+
+#: class.cscf_settings.php:79
+msgid "to your post or page."
+msgstr "إلى مقالك أو صفحتك."
+
+#: class.cscf_settings.php:98
+msgid "ReCAPTCHA Settings"
+msgstr "إعدادات reCAPTCHA"
+
+#: class.cscf_settings.php:106
+msgid "Use reCAPTCHA :"
+msgstr "استعمل reCAPTCHA :"
+
+#: class.cscf_settings.php:112
+msgid "reCAPTCHA Theme :"
+msgstr "مظهر reCAPTCHA :"
+
+#: class.cscf_settings.php:118
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key:"
+
+#: class.cscf_settings.php:124
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key:"
+
+#: class.cscf_settings.php:130
+msgid "Message Settings"
+msgstr "إعدادات الرسالة"
+
+#: class.cscf_settings.php:134
+msgid "Recipient Emails :"
+msgstr "العناوين البريدية للمستلمين:"
+
+#: class.cscf_settings.php:140
+msgid "Override 'From' Address :"
+msgstr "تجاهل عنوان المرسل:"
+
+#: class.cscf_settings.php:146
+msgid "'From' Email Address :"
+msgstr "عناوين المرسلين:"
+
+#: class.cscf_settings.php:152
+msgid "Email Subject :"
+msgstr "عنوان الرسالة:"
+
+#: class.cscf_settings.php:158
+msgid "Message :"
+msgstr "الرسالة:"
+
+#: class.cscf_settings.php:164
+msgid "Message Sent Heading :"
+msgstr "عنوان الرسالة المرسلة:"
+
+#: class.cscf_settings.php:170
+msgid "Message Sent Content :"
+msgstr "مضمون الرسالة المرسلة:"
+
+#: class.cscf_settings.php:176
+msgid "Styling and Validation"
+msgstr "التصميم و الصلاحية"
+
+#: class.cscf_settings.php:180
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"إستخدم النمط الإفتراضي للإضافة (دع هذا الإختيار فارغاً لإستعمال نمطك الخاص):"
+
+#: class.cscf_settings.php:186
+msgid "Use client side validation (AJAX) :"
+msgstr "التأكد من الصلاحية من جهة المستخدم (AJAX)."
+
+#: class.cscf_settings.php:256
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "قم بإدخال إعدادات reCAPTCHA :"
+
+#: class.cscf_settings.php:257
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "لإستعمال reCAPTCHA يجب عليك الحصول على API key من"
+
+#: class.cscf_settings.php:262
+msgid "Enter your message settings below :"
+msgstr "أدخل إعدادات الرسالة في الأسفل:"
+
+#: class.cscf_settings.php:332
+msgid "Red"
+msgstr "أحمر"
+
+#: class.cscf_settings.php:333
+msgid "White"
+msgstr "أبيض"
+
+#: class.cscf_settings.php:334
+msgid "Blackglass"
+msgstr "أسود"
+
+#: class.cscf_settings.php:335
+msgid "Clean"
+msgstr "مرتب"
+
+#: views/contact-form.view.php:24
+msgid "Email Address:"
+msgstr "البريد الإلكتروني:"
+
+#: views/contact-form.view.php:36
+msgid "Your Email Address"
+msgstr "بريدك الإلكتروني"
+
+#: views/contact-form.view.php:46
+msgid "Confirm Email Address:"
+msgstr "أدخل بريدك الإلكتروني مرة أُخرى:"
+
+#: views/contact-form.view.php:55 views/contact-form.view.php:57
+msgid "Please enter the same email address again."
+msgstr "الرجاء إدخال البريد الإلكتروني مرة أًخرى."
+
+#: views/contact-form.view.php:60
+msgid "Confirm Your Email Address"
+msgstr "أدخل بريدك الإلكتروني مرة أُخرى"
+
+#: views/contact-form.view.php:70
+msgid "Name:"
+msgstr "الإسم:"
+
+#: views/contact-form.view.php:80
+msgid "Your Name"
+msgstr "إسمك الكامل"
+
+#: views/contact-form.view.php:90
+msgid "Message:"
+msgstr "الرسالة:"
+
+#: views/contact-form.view.php:97
+msgid "Please give a message."
+msgstr "أكتب الرسالة التي تود إرسالها."
+
+#: views/contact-form.view.php:99
+msgid "Your Message"
+msgstr "رسالتك"
+
+#: views/contact-form.view.php:121
+msgid "Send Message"
+msgstr "إرسل الرسالة"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "نأسف، تم حدوث خلل و لم يتم إرسال رسالتك."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "نموذج بيانات مستخدم Clean and Simple"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ca.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ca.mo
new file mode 100644
index 0000000..b5ef99a
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ca.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ca.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ca.po
new file mode 100644
index 0000000..2b16d3d
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ca.po
@@ -0,0 +1,264 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas\n"
+"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-08-06 15:51+0100\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cff.php:90
+msgid "Settings"
+msgstr "Configuració"
+
+#: class.cff_contact.php:55
+msgid "Sorry the email addresses do not match."
+msgstr "Alerta. Les adreces no coincideixen"
+
+#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Si us plau, introduïu el vostre correu"
+
+#: class.cff_contact.php:63
+msgid "Please confirm your email address."
+msgstr "Si us plau, confirmeu el vostre correu"
+
+#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Si us plau, introduïu el vostre nom"
+
+#: class.cff_contact.php:71
+msgid "Please enter a message."
+msgstr "Si us plau, introduïu el vostre comentari"
+
+#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Si us plau, introduïu una adreça valida de correu"
+
+#: class.cff_contact.php:83
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Alerta!. El codi introduit no es correcte"
+
+#: class.cff_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Comentari enviat"
+
+#: class.cff_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+"Gràcies per el teu Comentari, ens posarem en contacte el mes aviat possible."
+
+#: class.cff_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Introdueix les teves dades, un comentari curt i et contestarem el mes aviat "
+"possible."
+
+#: class.cff_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "- Pregunta Web"
+
+#: class.cff_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Configuració de Clean and Simple Contact Form"
+
+#: class.cff_settings.php:43
+msgid "You are using version"
+msgstr "Aquesta es la versió"
+
+#: class.cff_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Si t'es util, si us plau considera"
+
+#: class.cff_settings.php:47
+msgid "leaving a review"
+msgstr "deja un comentari"
+
+#: class.cff_settings.php:49
+msgid "Thank you!"
+msgstr "Moltes Gràcies!"
+
+#: class.cff_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "Configuració ReCAPTCHA "
+
+#: class.cff_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Utilitza ReCAPTCHA :"
+
+#: class.cff_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "Tema reCAPTCHA :"
+
+#: class.cff_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "Clau Publica reCAPTCHA :"
+
+#: class.cff_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "Clau Privada reCAPTCHA :"
+
+#: class.cff_settings.php:100
+msgid "Message Settings"
+msgstr "Configuració dels Missatges"
+
+#: class.cff_settings.php:104
+msgid "Recipient Email :"
+msgstr "Adressa de Correu del destinatari:"
+
+#: class.cff_settings.php:110
+msgid "Email Subject :"
+msgstr "Assumpte del correo:"
+
+#: class.cff_settings.php:116
+msgid "Message :"
+msgstr "Comentari:"
+
+#: class.cff_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Titol de Missatge Enviat:"
+
+#: class.cff_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Contingut de Missatge Enviat:"
+
+#: class.cff_settings.php:134
+msgid "Styling and Validation"
+msgstr "Estils i Validació"
+
+#: class.cff_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Utilitza els estils del plugin por defectet (desmarca para utilitzar el teu "
+"estil) :"
+
+#: class.cff_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Utilitza la validació de client (AJAX) :"
+
+#: class.cff_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Introduíu la teva configuració reCAPTCHA :"
+
+#: class.cff_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Per utilitzar reCAPTCHA has de demanar una API key de"
+
+#: class.cff_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Introdueix la teva configuració del missatge :"
+
+#: class.cff_settings.php:274
+msgid "Red"
+msgstr "Vermell"
+
+#: class.cff_settings.php:275
+msgid "White"
+msgstr "Blanc"
+
+#: class.cff_settings.php:276
+msgid "Blackglass"
+msgstr "Negre Vidre"
+
+#: class.cff_settings.php:277
+msgid "Clean"
+msgstr "Transparent"
+
+#: views/contact-form-with-recaptcha.view.php:27
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Adreça de Correu:"
+
+#: views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "La teva Adreça de Correu"
+
+#: views/contact-form-with-recaptcha.view.php:37
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Confirma l'Adreça de Correu"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Si us plau repeteix l'Adreça de Correu"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Confirma la teva Adreça de Correu"
+
+#: views/contact-form-with-recaptcha.view.php:47
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Nom:"
+
+#: views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "El teu Nom:"
+
+#: views/contact-form-with-recaptcha.view.php:57
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Comentari:"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Si us plau, escriu un Comentari"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "El teu Comentari"
+
+#: views/contact-form-with-recaptcha.view.php:75
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Enviar"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Alerta!. Hi ha algun problema, no s'ha enviat el Correu"
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Un formulari de contacte net i sencill, amb Google, reCAPTCHA i Twitter "
+"Bootstrap."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-da_DK.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-da_DK.mo
new file mode 100644
index 0000000..a3a0a3d
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-da_DK.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-da_DK.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-da_DK.po
new file mode 100644
index 0000000..e180a12
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-da_DK.po
@@ -0,0 +1,262 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-08 23:16+0100\n"
+"Last-Translator: Mike Larsen \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "Indstillinger"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "Beklager, men mail-adresserne er ikke ens."
+
+#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Skriv din mail-adresse."
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "Bekræft venligst din mail-adresse."
+
+#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Skriv dit navn."
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "Skriv besked."
+
+#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Skriv en gyldig mail-adresse."
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Beklager, men koden var forkert. Prøv igen."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Besked sendt"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Tak for din meddelelse. Vi vender tilbage hurtigt muligt."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Udfyld formularen med en kort besked, og vi vender tilbage hurtigst muligt."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "Kontakt formular"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Indstillinger for Clean and Simple Contact Form"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Du bruger version"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Hvis du finder dette plugin nyttigt, overvej venligst at"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "give en bedømmelse"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "På forhånd tak!"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "Indstillinger for ReCAPTCHA:"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Brug reCAPTCHA:"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA tema :"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "Indstillinger for mails:"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "Din email adresse:"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "Tekst i emnefelt:"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "Besked:"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Overskrift for sendt besked:"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Indhold for sendt besked:"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "Udseende og validering"
+
+#: class.cscf_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Brug standard temaet for dette plugin (fjern flueben for at bruge dit "
+"standard tema i stedet):"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Brug AJAX validering:"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Udfyld med dine reCAPTCHA indstillinger"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "For at bruge reCAPTCHA skal du have en API nøgle fra"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Udfyld med dine indstillinger for mails:"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "Rød"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "Hvid"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "Gennemsigtig"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "Ren"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Din mail-adresse:"
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Din mail-adresse"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Bekræft din mail-adresse:"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Skriv venligst den samme mail-adresse igen."
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Bekræft din mail-adresse"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Dit navn:"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Dit navn"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Din besked:"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Skriv en besked."
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Din besked"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Send besked"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Beklager, men der er sket en fejl, og din besked blev ikke sendt."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"En meget simpel kontakt formular med Google reCAPTCHA og Twitter Bootstrap "
+"markering."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-de_DE.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-de_DE.mo
new file mode 100644
index 0000000..df448f9
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-de_DE.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-de_DE.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-de_DE.po
new file mode 100644
index 0000000..ae6943a
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-de_DE.po
@@ -0,0 +1,335 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: clean-and-simple-contact-form-by-meg-nicholas.4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2014-09-24 08:46:00+00:00\n"
+"PO-Revision-Date: 2015-04-02 16:59+0100\n"
+"Last-Translator: \n"
+"Language-Team: faktorzwei.net \n"
+"Language: de_DE informal\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.4\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
+"X-Poedit-Basepath: .\n"
+
+#: class.cscf.php:151
+msgid "Settings"
+msgstr "Einstellungen"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Die E-Mail-Adressen stimmen nicht überein."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:54
+msgid "Please give your email address."
+msgstr "Bitte geben Sie Ihre E-Mail-Adresse ein."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Bitte bestätigen Sie Ihre E-Mail-Adresse."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:32
+msgid "Please give your name."
+msgstr "Bitte geben Sie Ihren Namen ein."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Bitte geben Sie Ihre Nachricht ein."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:55
+#: views/contact-form.view.php:79
+msgid "Please enter a valid email address."
+msgstr "Bitte geben Sie eine gültige E-Mail-Adresse an."
+
+#: class.cscf_contact.php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Der eingegebene Code stimmt nicht überein. Bitte versuchen Sie es nochmals."
+
+#: class.cscf_contact.php:157
+msgid "Here is a copy of your message :"
+msgstr "Hier ist die Kopie Ihrer Nachricht:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Nachricht gesendet"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+"Danke für Ihre Nachricht, Sie werden sobald wie möglich eine Antwort "
+"erhalten."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Bitte geben Sie Ihre Kontaktdaten und Ihre Nachricht unten ein. Wir werden "
+"uns so schnell wie möglich um Ihre Anfrage kümmern."
+
+#: class.cscf_pluginsettings.php:93
+msgid " - Web Enquiry"
+msgstr " - Web-Anfrage"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Contact Form Einstellungen"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Kontaktformular"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form Einstellungen"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Spende $10, $20 or $50!"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Wenn Dir dieser Plugin gefällt, spende bitte um die weitere Entwicklung und "
+"Pflege dieses Programms zu unterstützen."
+
+# Plugin Name des plugin/theme
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Contact Form"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Sie benutzen Version"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Falls Sie dieses Plugin nützlich finden, schreiben Sie bitte"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "eine Bewertung"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Danke!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"Hinweis: Wenn JetPack's Contact Form aktiviert ist, deaktiviere dieses oder "
+"nutze den shortcode [cscf-contact-form]"
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Weiterlesen"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Hinweis: Mit diesem Text wird das Kontaktformular zu Deiner Webseite "
+"hinzugefügt."
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "zu Deinem Artikel oder Deiner Seite."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA Einstellungen"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Verwende reCAPTCHA :"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA Farbschema :"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key :"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key :"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Nachrichten-Einstellungen"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Empfänger E-Mail-Adresse:"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "E-Mail-Adresse bestätigen:"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Neu*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Erlaube Benutzern sich eine Kopie zusenden zu lassen:"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Überschreibe 'Von' Adresse:"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "'Von' E-Mail-Adresse:"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Email-Betreff:"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Hinweistext:"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Nachricht gesendet, Überschrift:"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Nachricht gesendet, Text:"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Darstellung und Überprüfung"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Nutze das plugin-eigene Stylesheet (abwählen, um dein Theme-Stylesheet "
+"stattdessen zu nutzen) :"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Nutze benutzerseitige Prüfung (AJAX):"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr ""
+"Geben Sie die erforderlichen Daten unten ein, um reCAPTCHA verwenden zu "
+"können:"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Um reCAPTCHA nutzen zu können, muss ein API-Key generiert werden bei:"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Gib nachfolgend deine Nachrichten-Einstellungen ein:"
+
+#: class.cscf_settings.php:392
+msgid "Red"
+msgstr "Rot"
+
+#: class.cscf_settings.php:394
+msgid "White"
+msgstr "Weiß"
+
+#: class.cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Schwarz-Glas"
+
+#: class.cscf_settings.php:398
+msgid "Clean"
+msgstr "Einfach"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Name:"
+
+#: views/contact-form.view.php:35
+msgid "Your Name"
+msgstr "Ihr Name"
+
+#: views/contact-form.view.php:46
+msgid "Email Address:"
+msgstr "E-Mail-Adresse:"
+
+#: views/contact-form.view.php:58
+msgid "Your Email Address"
+msgstr "Ihre E-Mail-Adresse"
+
+#: views/contact-form.view.php:69
+msgid "Confirm Email Address:"
+msgstr "E-Mail-Adresse bestätigen:"
+
+#: views/contact-form.view.php:78 views/contact-form.view.php:80
+msgid "Please enter the same email address again."
+msgstr "Bitte geben Sie Ihre E-Mail-Adresse nochmals ein."
+
+#: views/contact-form.view.php:83
+msgid "Confirm Your Email Address"
+msgstr "Bestätigen Sie Ihre E-Mail-Adresse"
+
+#: views/contact-form.view.php:95
+msgid "Message:"
+msgstr "Nachricht:"
+
+#: views/contact-form.view.php:102
+msgid "Please give a message."
+msgstr "Bitte geben Sie Ihre Nachricht ein."
+
+#: views/contact-form.view.php:104
+msgid "Your Message"
+msgstr "Ihre Nachricht"
+
+#: views/contact-form.view.php:114
+msgid "Send me a copy:"
+msgstr "Schicke mir eine Kopie:"
+
+#: views/contact-form.view.php:142
+msgid "Send Message"
+msgstr "Nachricht senden"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr ""
+"Entschuldigung, es ist ein Fehler aufgetreten und die Nachricht wurde nicht "
+"gesendet."
+
+# Plugin Name des plugin/theme
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+# Beschreibung des plugin/theme
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Ein sauberes und einfaches Kontaktformular mit Google reCAPTCHA und Twitter "
+"Bootstrap markup."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el.mo
new file mode 100644
index 0000000..c614530
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el.po
new file mode 100644
index 0000000..c9d5bb1
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el.po
@@ -0,0 +1,301 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.7\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2013-09-08 21:03:24+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-09-29 16:35-0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cscf.php:106
+msgid "Settings"
+msgstr "Ρυθμίσεις"
+
+#: class.cscf_contact.php:54
+msgid "Sorry the email addresses do not match."
+msgstr "Τα e-mail δεν μοιάζουν."
+
+#: class.cscf_contact.php:58 views/contact-form.view.php:29
+msgid "Please give your email address."
+msgstr "Παρακαλώ δώστε το e-mail σας."
+
+#: class.cscf_contact.php:62
+msgid "Please confirm your email address."
+msgstr "Παρακαλώ επιβεβαιώστε το e-mail σας. "
+
+#: class.cscf_contact.php:66 views/contact-form.view.php:62
+msgid "Please give your name."
+msgstr "Δώστε το όνομα σας."
+
+#: class.cscf_contact.php:70
+msgid "Please enter a message."
+msgstr "Δώστε το μήνυμα."
+
+#: class.cscf_contact.php:74 views/contact-form.view.php:30
+#: views/contact-form.view.php:47
+msgid "Please enter a valid email address."
+msgstr "Παρακαλώ δώστε έγκυρη διεύθυνση e-mail."
+
+#: class.cscf_contact.php:82
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Συγνώμη ο κωδικός που δώσατε δεν είναι σωστός. Παρακαλώ δοκιμάστε ξανά. "
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Το μήνυμα εστάλη. "
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+"Ευχαριστούμε για το μήνυμα, θα επικοινωνήσουμε μαζί σας το συντομότερο "
+"δυνατό. "
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Παρακαλώ δώστε τα στοιχεία επικοινωνία σας και ένα σύντομο μήνυμα και θα "
+"επικοινωνήσουμε μαζί σας το συντομότερο δυνατό."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Διαδικτυακή Επικοινωνία "
+
+#: class.cscf_settings.php:42
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Ρυθμίσεις της Φόρμας Επικοινωνίας Clean and Simple"
+
+#: class.cscf_settings.php:48
+msgid "Donate $10, $20 or $50!"
+msgstr "Δωρίστε $10, $20 ή $50!"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Εάν σας αρέσει αυτή η επέκταση, παρακαλώ δωρίστε για την υποστήριξη της "
+"ανάπτυξης και της συντήρησης του:"
+
+#: class.cscf_settings.php:50
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Φόρμα Επικοινωνίας!"
+
+#: class.cscf_settings.php:65
+msgid "You are using version"
+msgstr "Χρησιμοποιείτε την έκδοση"
+
+#: class.cscf_settings.php:66
+msgid "If you find this plugin useful please consider"
+msgstr "Εάν θεωρείτε αυτή την επέκταση χρήσιμη παρακαλώ σκεφτείτε να"
+
+#: class.cscf_settings.php:69
+msgid "leaving a review"
+msgstr "αφήσετε μια κριτική"
+
+#: class.cscf_settings.php:71
+msgid "Thank you!"
+msgstr "Ευχαριστούμε!"
+
+#: class.cscf_settings.php:76
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"ΕΙΔΟΠΟΙΗΣΗ: Έχετε ενεργή την Φόρμα Επικοινωνίας JetPack, παρακαλώ "
+"απενεργοποιήστε την ή αντί αυτού χρησιμοποιήστε το shortcode [CSCF-φόρμα "
+"επικοινωνίας]."
+
+#: class.cscf_settings.php:77
+msgid "Read More"
+msgstr "Διαβάστε περισσότερα"
+
+#: class.cscf_settings.php:81
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Σημείωση: Για να προσθέσετε τη φόρμα επικοινωνίας στη σελίδα σας, "
+"παρακαλούμε προσθέστε το κείμενο"
+
+#: class.cscf_settings.php:81
+msgid "to your post or page."
+msgstr "στη δημοσίευση ή τη σελίδα σας."
+
+#: class.cscf_settings.php:112
+msgid "ReCAPTCHA Settings"
+msgstr "Ρυθμίσεις ReCAPTCHA"
+
+#: class.cscf_settings.php:120
+msgid "Use reCAPTCHA :"
+msgstr "Χρησιμοποιήστε το reCAPTCHA:"
+
+#: class.cscf_settings.php:126
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA Θέμα:"
+
+#: class.cscf_settings.php:132
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA δημόσιο κλειδί:"
+
+#: class.cscf_settings.php:138
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA ιδιωτικό κλειδί:"
+
+#: class.cscf_settings.php:144
+msgid "Message Settings"
+msgstr "Ρυθμίσεις Μηνυμάτων"
+
+#: class.cscf_settings.php:148
+msgid "Recipient Email :"
+msgstr "E-mail Αποδέκτη:"
+
+#: class.cscf_settings.php:154
+msgid "Override 'From' Address :"
+msgstr "Υπέρβαση διεύθυνσης 'Από':"
+
+#: class.cscf_settings.php:160
+msgid "'From' Email Address :"
+msgstr "e-Mail Διεύθυνση 'Από':"
+
+#: class.cscf_settings.php:166
+msgid "Email Subject :"
+msgstr "Θέμα e-Mail:"
+
+#: class.cscf_settings.php:172
+msgid "Message :"
+msgstr "Μήνυμα:"
+
+#: class.cscf_settings.php:178
+msgid "Message Sent Heading :"
+msgstr "Επικεφαλίδα Αποστολής e-mail:"
+
+#: class.cscf_settings.php:184
+msgid "Message Sent Content :"
+msgstr "Περιεχόμενο Αποστολής e-mail:"
+
+#: class.cscf_settings.php:190
+msgid "Styling and Validation"
+msgstr "Εμφάνιση και Επικύρωση"
+
+#: class.cscf_settings.php:194
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Χρησιμοποιήστε το προεπιλεγμένο stylesheet της επέκτασης (από-επιλέξτε για "
+"να χρησιμοποιήσει το stylesheet του δικού σας θέματος):"
+
+#: class.cscf_settings.php:200
+msgid "Use client side validation (AJAX) :"
+msgstr "Χρησιμοποιήστε την επικύρωση (AJAX):"
+
+#: class.cscf_settings.php:287
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Εισάγετε τις ρυθμίσεις reCAPTCHA παρακάτω:"
+
+#: class.cscf_settings.php:288
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr ""
+"Για να χρησιμοποιήσετε το reCAPTCHA πρέπει να πάρετε ένα API κλειδί από"
+
+#: class.cscf_settings.php:293
+msgid "Enter your message settings below :"
+msgstr "Εισάγετε τις ρυθμίσεις του μηνύματος σας παρακάτω:"
+
+#: class.cscf_settings.php:353
+msgid "Red"
+msgstr "Κόκκινο"
+
+#: class.cscf_settings.php:354
+msgid "White"
+msgstr "Λευκό"
+
+#: class.cscf_settings.php:355
+msgid "Blackglass"
+msgstr "Μαύρο Γυαλί"
+
+#: class.cscf_settings.php:356
+msgid "Clean"
+msgstr "Καθαρό"
+
+#: views/contact-form.view.php:24
+msgid "Email Address:"
+msgstr "Διεύθυνση e-mail:"
+
+#: views/contact-form.view.php:33
+msgid "Your Email Address"
+msgstr "Το e-mail σας:"
+
+#: views/contact-form.view.php:40
+msgid "Confirm Email Address:"
+msgstr "Επιβεβαιώστε τη διεύθυνση e-mail:"
+
+#: views/contact-form.view.php:46 views/contact-form.view.php:48
+msgid "Please enter the same email address again."
+msgstr "Παρακαλώ δώστε το ίδιο e-mail ξανά. "
+
+#: views/contact-form.view.php:51
+msgid "Confirm Your Email Address"
+msgstr "Επιβεβαιώστε το e-mail σας"
+
+#: views/contact-form.view.php:58
+msgid "Name:"
+msgstr "Όνομα:"
+
+#: views/contact-form.view.php:65
+msgid "Your Name"
+msgstr "Το Όνομα σας"
+
+#: views/contact-form.view.php:72
+msgid "Message:"
+msgstr "Μήνυμα:"
+
+#: views/contact-form.view.php:76
+msgid "Please give a message."
+msgstr "Παρακαλώ δώστε το μήνυμα σας."
+
+#: views/contact-form.view.php:78
+msgid "Your Message"
+msgstr "Το Μήνυμα σας"
+
+#: views/contact-form.view.php:101
+msgid "Send Message"
+msgstr "Αποστολή Μηνύματος"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Δυστυχώς, υπήρξε ένα πρόβλημα και το μήνυμά σας δεν στάλθηκε."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Φόρμα Επικοινωνίας"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Μία απλή και καθαρή φόρμα επικοινωνίας με Google reCAPTCHA και Twitter "
+"Bootstrap markup."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el_GR.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el_GR.mo
new file mode 100644
index 0000000..c614530
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el_GR.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el_GR.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el_GR.po
new file mode 100644
index 0000000..c9d5bb1
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-el_GR.po
@@ -0,0 +1,301 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.7\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2013-09-08 21:03:24+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-09-29 16:35-0000\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cscf.php:106
+msgid "Settings"
+msgstr "Ρυθμίσεις"
+
+#: class.cscf_contact.php:54
+msgid "Sorry the email addresses do not match."
+msgstr "Τα e-mail δεν μοιάζουν."
+
+#: class.cscf_contact.php:58 views/contact-form.view.php:29
+msgid "Please give your email address."
+msgstr "Παρακαλώ δώστε το e-mail σας."
+
+#: class.cscf_contact.php:62
+msgid "Please confirm your email address."
+msgstr "Παρακαλώ επιβεβαιώστε το e-mail σας. "
+
+#: class.cscf_contact.php:66 views/contact-form.view.php:62
+msgid "Please give your name."
+msgstr "Δώστε το όνομα σας."
+
+#: class.cscf_contact.php:70
+msgid "Please enter a message."
+msgstr "Δώστε το μήνυμα."
+
+#: class.cscf_contact.php:74 views/contact-form.view.php:30
+#: views/contact-form.view.php:47
+msgid "Please enter a valid email address."
+msgstr "Παρακαλώ δώστε έγκυρη διεύθυνση e-mail."
+
+#: class.cscf_contact.php:82
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Συγνώμη ο κωδικός που δώσατε δεν είναι σωστός. Παρακαλώ δοκιμάστε ξανά. "
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Το μήνυμα εστάλη. "
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+"Ευχαριστούμε για το μήνυμα, θα επικοινωνήσουμε μαζί σας το συντομότερο "
+"δυνατό. "
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Παρακαλώ δώστε τα στοιχεία επικοινωνία σας και ένα σύντομο μήνυμα και θα "
+"επικοινωνήσουμε μαζί σας το συντομότερο δυνατό."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Διαδικτυακή Επικοινωνία "
+
+#: class.cscf_settings.php:42
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Ρυθμίσεις της Φόρμας Επικοινωνίας Clean and Simple"
+
+#: class.cscf_settings.php:48
+msgid "Donate $10, $20 or $50!"
+msgstr "Δωρίστε $10, $20 ή $50!"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Εάν σας αρέσει αυτή η επέκταση, παρακαλώ δωρίστε για την υποστήριξη της "
+"ανάπτυξης και της συντήρησης του:"
+
+#: class.cscf_settings.php:50
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Φόρμα Επικοινωνίας!"
+
+#: class.cscf_settings.php:65
+msgid "You are using version"
+msgstr "Χρησιμοποιείτε την έκδοση"
+
+#: class.cscf_settings.php:66
+msgid "If you find this plugin useful please consider"
+msgstr "Εάν θεωρείτε αυτή την επέκταση χρήσιμη παρακαλώ σκεφτείτε να"
+
+#: class.cscf_settings.php:69
+msgid "leaving a review"
+msgstr "αφήσετε μια κριτική"
+
+#: class.cscf_settings.php:71
+msgid "Thank you!"
+msgstr "Ευχαριστούμε!"
+
+#: class.cscf_settings.php:76
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"ΕΙΔΟΠΟΙΗΣΗ: Έχετε ενεργή την Φόρμα Επικοινωνίας JetPack, παρακαλώ "
+"απενεργοποιήστε την ή αντί αυτού χρησιμοποιήστε το shortcode [CSCF-φόρμα "
+"επικοινωνίας]."
+
+#: class.cscf_settings.php:77
+msgid "Read More"
+msgstr "Διαβάστε περισσότερα"
+
+#: class.cscf_settings.php:81
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Σημείωση: Για να προσθέσετε τη φόρμα επικοινωνίας στη σελίδα σας, "
+"παρακαλούμε προσθέστε το κείμενο"
+
+#: class.cscf_settings.php:81
+msgid "to your post or page."
+msgstr "στη δημοσίευση ή τη σελίδα σας."
+
+#: class.cscf_settings.php:112
+msgid "ReCAPTCHA Settings"
+msgstr "Ρυθμίσεις ReCAPTCHA"
+
+#: class.cscf_settings.php:120
+msgid "Use reCAPTCHA :"
+msgstr "Χρησιμοποιήστε το reCAPTCHA:"
+
+#: class.cscf_settings.php:126
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA Θέμα:"
+
+#: class.cscf_settings.php:132
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA δημόσιο κλειδί:"
+
+#: class.cscf_settings.php:138
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA ιδιωτικό κλειδί:"
+
+#: class.cscf_settings.php:144
+msgid "Message Settings"
+msgstr "Ρυθμίσεις Μηνυμάτων"
+
+#: class.cscf_settings.php:148
+msgid "Recipient Email :"
+msgstr "E-mail Αποδέκτη:"
+
+#: class.cscf_settings.php:154
+msgid "Override 'From' Address :"
+msgstr "Υπέρβαση διεύθυνσης 'Από':"
+
+#: class.cscf_settings.php:160
+msgid "'From' Email Address :"
+msgstr "e-Mail Διεύθυνση 'Από':"
+
+#: class.cscf_settings.php:166
+msgid "Email Subject :"
+msgstr "Θέμα e-Mail:"
+
+#: class.cscf_settings.php:172
+msgid "Message :"
+msgstr "Μήνυμα:"
+
+#: class.cscf_settings.php:178
+msgid "Message Sent Heading :"
+msgstr "Επικεφαλίδα Αποστολής e-mail:"
+
+#: class.cscf_settings.php:184
+msgid "Message Sent Content :"
+msgstr "Περιεχόμενο Αποστολής e-mail:"
+
+#: class.cscf_settings.php:190
+msgid "Styling and Validation"
+msgstr "Εμφάνιση και Επικύρωση"
+
+#: class.cscf_settings.php:194
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Χρησιμοποιήστε το προεπιλεγμένο stylesheet της επέκτασης (από-επιλέξτε για "
+"να χρησιμοποιήσει το stylesheet του δικού σας θέματος):"
+
+#: class.cscf_settings.php:200
+msgid "Use client side validation (AJAX) :"
+msgstr "Χρησιμοποιήστε την επικύρωση (AJAX):"
+
+#: class.cscf_settings.php:287
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Εισάγετε τις ρυθμίσεις reCAPTCHA παρακάτω:"
+
+#: class.cscf_settings.php:288
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr ""
+"Για να χρησιμοποιήσετε το reCAPTCHA πρέπει να πάρετε ένα API κλειδί από"
+
+#: class.cscf_settings.php:293
+msgid "Enter your message settings below :"
+msgstr "Εισάγετε τις ρυθμίσεις του μηνύματος σας παρακάτω:"
+
+#: class.cscf_settings.php:353
+msgid "Red"
+msgstr "Κόκκινο"
+
+#: class.cscf_settings.php:354
+msgid "White"
+msgstr "Λευκό"
+
+#: class.cscf_settings.php:355
+msgid "Blackglass"
+msgstr "Μαύρο Γυαλί"
+
+#: class.cscf_settings.php:356
+msgid "Clean"
+msgstr "Καθαρό"
+
+#: views/contact-form.view.php:24
+msgid "Email Address:"
+msgstr "Διεύθυνση e-mail:"
+
+#: views/contact-form.view.php:33
+msgid "Your Email Address"
+msgstr "Το e-mail σας:"
+
+#: views/contact-form.view.php:40
+msgid "Confirm Email Address:"
+msgstr "Επιβεβαιώστε τη διεύθυνση e-mail:"
+
+#: views/contact-form.view.php:46 views/contact-form.view.php:48
+msgid "Please enter the same email address again."
+msgstr "Παρακαλώ δώστε το ίδιο e-mail ξανά. "
+
+#: views/contact-form.view.php:51
+msgid "Confirm Your Email Address"
+msgstr "Επιβεβαιώστε το e-mail σας"
+
+#: views/contact-form.view.php:58
+msgid "Name:"
+msgstr "Όνομα:"
+
+#: views/contact-form.view.php:65
+msgid "Your Name"
+msgstr "Το Όνομα σας"
+
+#: views/contact-form.view.php:72
+msgid "Message:"
+msgstr "Μήνυμα:"
+
+#: views/contact-form.view.php:76
+msgid "Please give a message."
+msgstr "Παρακαλώ δώστε το μήνυμα σας."
+
+#: views/contact-form.view.php:78
+msgid "Your Message"
+msgstr "Το Μήνυμα σας"
+
+#: views/contact-form.view.php:101
+msgid "Send Message"
+msgstr "Αποστολή Μηνύματος"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Δυστυχώς, υπήρξε ένα πρόβλημα και το μήνυμά σας δεν στάλθηκε."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Φόρμα Επικοινωνίας"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Μία απλή και καθαρή φόρμα επικοινωνίας με Google reCAPTCHA και Twitter "
+"Bootstrap markup."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-es_ES.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-es_ES.mo
new file mode 100644
index 0000000..9415d85
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-es_ES.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-es_ES.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-es_ES.po
new file mode 100644
index 0000000..543d221
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-es_ES.po
@@ -0,0 +1,264 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas\n"
+"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-09-14 16:13-0000\n"
+"Last-Translator: \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cff.php:90
+msgid "Settings"
+msgstr "Ajustes"
+
+#: class.cff_contact.php:55
+msgid "Sorry the email addresses do not match."
+msgstr "Lo sentimos las direcciones de correo electrónico no coinciden."
+
+#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Por favor ingresa tu correo electrónico"
+
+#: class.cff_contact.php:63
+msgid "Please confirm your email address."
+msgstr "Por favor confirma tu correo electrónico."
+
+#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Porfavor ingresa tu nombre."
+
+#: class.cff_contact.php:71
+msgid "Please enter a message."
+msgstr "Por favor ingresa un mensaje."
+
+#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Por favor ingresa una dirección de correo electrónico válida."
+
+#: class.cff_contact.php:83
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Lo sentimos el código ingresado no es correcto, por favor intenta de nuevo."
+
+#: class.cff_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Mensaje enviado"
+
+#: class.cff_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Gracias por su mensaje, nos pondremos en contacto a la brevedad."
+
+#: class.cff_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Ingresa tus datos de contacto, un mensaje corto abajo y lo contestaremos lo "
+"más pronto posible."
+
+#: class.cff_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "- Pregunta Web"
+
+#: class.cff_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Ajustes de Clean and Simple Contact Form"
+
+#: class.cff_settings.php:43
+msgid "You are using version"
+msgstr "Estás usando la versión"
+
+#: class.cff_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Si encuentras este plugin útil por favor considera"
+
+#: class.cff_settings.php:47
+msgid "leaving a review"
+msgstr "dejar una reseña"
+
+#: class.cff_settings.php:49
+msgid "Thank you!"
+msgstr "¡Gracias!"
+
+#: class.cff_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "Ajustes ReCAPTCHA "
+
+#: class.cff_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Usa ReCAPTCHA :"
+
+#: class.cff_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "Tema reCAPTCHA :"
+
+#: class.cff_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "Clave Pública reCAPTCHA :"
+
+#: class.cff_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "Clave Privada reCAPTCHA :"
+
+#: class.cff_settings.php:100
+msgid "Message Settings"
+msgstr "Ajustes de Mensajes"
+
+#: class.cff_settings.php:104
+msgid "Recipient Email :"
+msgstr "Correo electrónico del destinatario:"
+
+#: class.cff_settings.php:110
+msgid "Email Subject :"
+msgstr "Asunto del correo:"
+
+#: class.cff_settings.php:116
+msgid "Message :"
+msgstr "Mensaje:"
+
+#: class.cff_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Título de Mensaje Enviado:"
+
+#: class.cff_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Contenido de Mensaje Enviado:"
+
+#: class.cff_settings.php:134
+msgid "Styling and Validation"
+msgstr "Estilos y Validación"
+
+#: class.cff_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Usa los estilos del plugin por default (desmarca para usar los estilos de tu "
+"plantilla) :"
+
+#: class.cff_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Utilice la validación del lado del cliente (AJAX) :"
+
+#: class.cff_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Ingresa tus ajustes reCAPTCHA abajo :"
+
+#: class.cff_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Para usar reCAPTCHA tienes que solicitar una API key de"
+
+#: class.cff_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Ingresa tus ajustes de mensaje :"
+
+#: class.cff_settings.php:274
+msgid "Red"
+msgstr "Rojo"
+
+#: class.cff_settings.php:275
+msgid "White"
+msgstr "Blanco"
+
+#: class.cff_settings.php:276
+msgid "Blackglass"
+msgstr "Negro Cristal"
+
+#: class.cff_settings.php:277
+msgid "Clean"
+msgstr "Transparente"
+
+#: views/contact-form-with-recaptcha.view.php:27
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Dirección de correo electrónico:"
+
+#: views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Tu dirección de correo electrónico:"
+
+#: views/contact-form-with-recaptcha.view.php:37
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Confirma tu dirección de correo electrónico:"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Por favor ingresa la misma dirección de correo electrónico de nuevo."
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Confirma tu dirección de correo electrónico"
+
+#: views/contact-form-with-recaptcha.view.php:47
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Nombre:"
+
+#: views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Tu Nombre:"
+
+#: views/contact-form-with-recaptcha.view.php:57
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Mensaje:"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Por favor ingresa un mensaje."
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Tu Mensaje"
+
+#: views/contact-form-with-recaptcha.view.php:75
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Enviar mensaje"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Lo sentimos, ha habido un error. Tu mensaje no se ha enviado."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Un formulario de contacto limpio y sencillo, con Google, reCAPTCHA y "
+"Twitter Bootstrap."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-et.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-et.mo
new file mode 100644
index 0000000..0bf2a5a
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-et.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-et.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-et.po
new file mode 100644
index 0000000..dcf907a
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-et.po
@@ -0,0 +1,275 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+# Marko Punnar , 2013.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.6\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2013-09-02 14:21:53+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-09-14 16:06-0000\n"
+"Last-Translator: \n"
+"Language-Team: Estonian <>\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Language: et_EE\n"
+"X-Source-Language: C\n"
+"Language: et\n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cscf.php:106
+msgid "Settings"
+msgstr "Seaded"
+
+#: class.cscf_contact.php:54
+msgid "Sorry the email addresses do not match."
+msgstr "Meiliaadress ei sobi."
+
+#: class.cscf_contact.php:58 views/contact-form.view.php:29
+msgid "Please give your email address."
+msgstr "Sisesta oma e-maili aadress."
+
+#: class.cscf_contact.php:62
+msgid "Please confirm your email address."
+msgstr "Kinnita oma e-maili aadress."
+
+#: class.cscf_contact.php:66 views/contact-form.view.php:62
+msgid "Please give your name."
+msgstr "Sisesta oma nimi."
+
+#: class.cscf_contact.php:70
+msgid "Please enter a message."
+msgstr "Sisesta sõnum."
+
+#: class.cscf_contact.php:74 views/contact-form.view.php:30
+#: views/contact-form.view.php:47
+msgid "Please enter a valid email address."
+msgstr "Sisesta toimiv e-maili aadress."
+
+#: class.cscf_contact.php:82
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Kontrollkood polnud õige, proovi uuesti."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Sõnum saadetud"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Täname sõnumi eest. Teiega võetakse esimesel võimalusel ühendust."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Sisesta allpool info endast ja lühike sõnum. Püüame vastata esimesel "
+"võimalusel."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Veebivorm"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form seaded"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Kasutad versiooni"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Kui leiad, et plugin on kasulik"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "kirjuta ka ülevaade"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "Tänan!"
+
+#: class.cscf_settings.php:54
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"Märkus: Sul on JetPack's Contact Form lubatud. Palun lülita see välja või "
+"kasuta lühikäsku [cscf-contact-form] selle asemel."
+
+#: class.cscf_settings.php:55
+msgid "Read More"
+msgstr "Loe rohkem"
+
+#: class.cscf_settings.php:87
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA seaded"
+
+#: class.cscf_settings.php:95
+msgid "Use reCAPTCHA :"
+msgstr "Kasuta reCAPTCHA-t :"
+
+#: class.cscf_settings.php:101
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA teema :"
+
+#: class.cscf_settings.php:107
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA avalik võti :"
+
+#: class.cscf_settings.php:113
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA privaatvõti :"
+
+#: class.cscf_settings.php:119
+msgid "Message Settings"
+msgstr "Sõnumi seaded"
+
+#: class.cscf_settings.php:123
+msgid "Recipient Email :"
+msgstr "Saaja e-mail :"
+
+#: class.cscf_settings.php:129
+msgid "Override 'From' Address :"
+msgstr "Kirjuta saatja väli üle :"
+
+#: class.cscf_settings.php:135
+msgid "'From' Email Address :"
+msgstr "Saatja e-mail :"
+
+#: class.cscf_settings.php:141
+msgid "Email Subject :"
+msgstr "Kirja pealkiri :"
+
+#: class.cscf_settings.php:147
+msgid "Message :"
+msgstr "Sõnum :"
+
+#: class.cscf_settings.php:153
+msgid "Message Sent Heading :"
+msgstr "\"Saadetu\" teavituse pealkiri :"
+
+#: class.cscf_settings.php:159
+msgid "Message Sent Content :"
+msgstr "\"Saadetud\" teavitus :"
+
+#: class.cscf_settings.php:165
+msgid "Styling and Validation"
+msgstr "Kujundus ja valideerimine"
+
+#: class.cscf_settings.php:169
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Kasuta plugina vaikimisi stiili (võta linnuke ära, kui soovid kasutada oma "
+"teema stiili) :"
+
+#: class.cscf_settings.php:175
+msgid "Use client side validation (AJAX) :"
+msgstr "Kasuta kliendipoolset valideerimist (AJAX) :"
+
+#: class.cscf_settings.php:262
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Sisesta allpool reCAPTCHA seadistused :"
+
+#: class.cscf_settings.php:263
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "reCAPTCHA kasutamiseks pead hankima omale API võtme"
+
+#: class.cscf_settings.php:268
+msgid "Enter your message settings below :"
+msgstr "Sisesta allpool sõnumi seadistused :"
+
+#: class.cscf_settings.php:328
+msgid "Red"
+msgstr "Punane"
+
+#: class.cscf_settings.php:329
+msgid "White"
+msgstr "Valge"
+
+#: class.cscf_settings.php:330
+msgid "Blackglass"
+msgstr "Blackglass"
+
+#: class.cscf_settings.php:331
+msgid "Clean"
+msgstr "Puhas"
+
+#: views/contact-form.view.php:24
+msgid "Email Address:"
+msgstr "E-maili aadress:"
+
+#: views/contact-form.view.php:33
+msgid "Your Email Address"
+msgstr "Sinu e-maili aadress"
+
+#: views/contact-form.view.php:40
+msgid "Confirm Email Address:"
+msgstr "Kinnita e-maili aadress:"
+
+#: views/contact-form.view.php:46 views/contact-form.view.php:48
+msgid "Please enter the same email address again."
+msgstr "Sisesta sama meiliaadress uuesti."
+
+#: views/contact-form.view.php:51
+msgid "Confirm Your Email Address"
+msgstr "Kinnita oma e-maili aadress"
+
+#: views/contact-form.view.php:58
+msgid "Name:"
+msgstr "Nimi:"
+
+#: views/contact-form.view.php:65
+msgid "Your Name"
+msgstr "Sinu nimi"
+
+#: views/contact-form.view.php:72
+msgid "Message:"
+msgstr "Sõnum:"
+
+#: views/contact-form.view.php:76
+msgid "Please give a message."
+msgstr "Sisesta sõnum."
+
+#: views/contact-form.view.php:78
+msgid "Your Message"
+msgstr "Sinu sõnum"
+
+#: views/contact-form.view.php:101
+msgid "Send Message"
+msgstr "Saada sõnum"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Kahjuks tekkis mingi probleem ja sõnumit ei saadetud."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Puhas ja lihtne kontaktivorm koos \"Google reCAPTCHA\" ja \"Twitter "
+"Bootstrap\" koodistikuga."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi.mo
new file mode 100644
index 0000000..7286de1
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi.po
new file mode 100644
index 0000000..7104c0f
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi.po
@@ -0,0 +1,266 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-14 10:11+0200\n"
+"Last-Translator: Kai Lindfors \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+"Language: fi\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "Asetukset"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "Sähköpostiosoitteiden pitää olla sama"
+
+#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Ole hyvä ja syötä sähköpostiosoitteesi"
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "Ole hyvä ja vahvista sähköpostiosoitteesi"
+
+#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Ole hyvä ja syötä nimesi"
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "Ole hyvä ja kirjoita viestisi"
+
+#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Ole hyvä ja syötä kelvollinen sähköpostiosoite"
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Koodi ei ollut oikein. Ole hyvä ja yritä uudestaan."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Viestisi on lähetetty"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Kiitos viestistäsi. Otamme sinuun yhteyttä mahdollisimman pian."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Ole hyvä ja syötä yhteystietosi ja lyhyt viesti alle. Saat vastauksen niin "
+"pian kuin mahdollista"
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Yhteydenotto"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form -asetukset"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Käytössäsi on versio"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Jos pidät tätä lisäosaa hyödyllisenä, ole hyvä"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "ja anna sille arviosi"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "Kiitos!"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA -asetukset"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Käytä reCAPTCHA-palvelua :"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA teema :"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA julkinen avain :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA yksityisavain :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "Viestiasetukset"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "Vastaanottajan sähköpostiosoite"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "Viestin aihe :"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "Viesti :"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Viesti lähetetty -otsikkoteksti :"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Viesti lähetetty -ilmoitusteksti"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "Tyyli ja tarkistukset"
+
+#: class.cscf_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Käytä lisäosan oletustyyliä (poista rasti jos haluat käyttää teemasi "
+"tyyliä) :"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Tarkista tiedot selaimessa (AJAX) :"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Syötä reCAPTCHA asetukset alle :"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr ""
+"Jotta voit käyttää reCAPTCHA -palvelua sinun täytyy hankkia API avain "
+"lähteestä"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Syötä viestiasetukset alle:"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "Punainen"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "Valkoinen"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "Musta lasi"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "Pelkistetty"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Sähköpostiosoite:"
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Sähköpostiosoitteesi"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Vahvista sähköpostiosoite:"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Ole hyvä ja syötä sama sähköpostiosoite uudelleen."
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Vahvista sähköpostiosoitteesi"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Nimi:"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Oma nimesi"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Viesti:"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Ole hyvä ja kirjoita viesti."
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Viestisi"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Lähetä viesti"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Pahoittelemme. Tapahtui virhe eikä viestiäsi pystytty lähettämään."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Selkeä ja yksinkertainen yhteydenottolomake"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Selkeä ja yksinkertainen yhteydenottolomake jossa mukana Google reCAPTCHA ja "
+"Twitter Bootstrap -merkit."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi_FI.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi_FI.mo
new file mode 100644
index 0000000..7f7c5df
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi_FI.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi_FI.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi_FI.po
new file mode 100644
index 0000000..71c70e2
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fi_FI.po
@@ -0,0 +1,266 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-14 09:50+0200\n"
+"Last-Translator: Kai Lindfors \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+"Language: fi\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "Asetukset"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "Sähköpostiosoitteiden pitää olla sama"
+
+#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Ole hyvä ja syötä sähköpostiosoitteesi"
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "Ole hyvä ja vahvista sähköpostiosoitteesi"
+
+#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Ole hyvä ja syötä nimesi"
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "Ole hyvä ja kirjoita viestisi"
+
+#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Ole hyvä ja syötä kelvollinen sähköpostiosoite"
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Koodi ei ollut oikein. Ole hyvä ja yritä uudestaan."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Viestisi on lähetetty"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Kiitos viestistäsi. Otamme sinuun yhteyttä mahdollisimman pian."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Ole hyvä ja syötä yhteystietosi ja lyhyt viesti alle. Saat vastauksen niin "
+"pian kuin mahdollista"
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Yhteydenotto"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form -asetukset"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Käytössäsi on versio"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Jos pidät tätä lisäosaa hyödyllisenä, ole hyvä"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "ja anna sille arviosi"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "Kiitos!"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA -asetukset"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Käytä reCAPTCHA-palvelua :"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA teema :"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA julkinen avain :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA yksityisavain :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "Viestiasetukset"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "Vastaanottajan sähköpostiosoite"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "Viestin aihe :"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "Viesti :"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Viesti lähetetty -otsikkoteksti :"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Viesti lähetetty -ilmoitusteksti"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "Tyyli ja tarkistukset"
+
+#: class.cscf_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Käytä lisäosan oletustyyliä (poista rasti jos haluat käyttää teemasi "
+"tyyliä) :"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Tarkista tiedot selaimessa (AJAX) :"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Syötä reCAPTCHA asetukset alle :"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr ""
+"Jotta voit käyttää reCAPTCHA -palvelua sinun täytyy hankkia API avain "
+"lähteestä"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Syötä viestiasetukset alle:"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "Punainen"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "Valkoinen"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "Musta lasi"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "Pelkistetty"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Sähköpostiosoite:"
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Sähköpostiosoitteesi"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Vahvista sähköpostiosoite:"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Ole hyvä ja syötä sama sähköpostiosoite uudelleen."
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Vahvista sähköpostiosoitteesi"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Nimi:"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Oma nimesi"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Viesti:"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Ole hyvä ja kirjoita viesti."
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Viestisi"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Lähetä viesti"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Pahoittelemme. Tapahtui virhe eikä viestiäsi pystytty lähettämään."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Selkeä ja yksinkertainen yhteydenottolomake"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Selkeä ja yksinkertainen yhteydenottolomake jossa mukana Google reCAPTCHA ja "
+"Twitter Bootstrap -merkit."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fr_FR.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fr_FR.mo
new file mode 100644
index 0000000..2b91c08
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fr_FR.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fr_FR.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fr_FR.po
new file mode 100644
index 0000000..e62dfaa
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-fr_FR.po
@@ -0,0 +1,322 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Contact Form Clean and Simple\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clean-and-simple-"
+"contact-form-by-meg-nicholas\n"
+"POT-Creation-Date: 2015-07-08 11:44:43+00:00\n"
+"PO-Revision-Date: 2015-11-18 08:39+0100\n"
+"Last-Translator: \n"
+"Language-Team: Matthieu MARECHAL \n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.8.6\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop;__;_e;_c\n"
+"X-Poedit-Basepath: .\n"
+"Plural-Forms: nplurals=2; plural=n>1;\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-SearchPath-0: /Users/jocade/Desktop/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+
+#: class.cscf.php:157
+msgid "Settings"
+msgstr "Réglages"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Désolé les adresses e-mail ne correspondent pas."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:63
+msgid "Please give your email address."
+msgstr "Veuillez entrer votre adresse e-mail."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Veuillez confirmer votre adresse e-mail."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Veuillez entrer votre nom."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Veuillez entrer un message."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:64
+#: views/contact-form.view.php:93
+msgid "Please enter a valid email address."
+msgstr "Veuillez entrer une adresse e-mail valide."
+
+#: class.cscf_contact.php:97
+msgid "Please solve the recaptcha to continue."
+msgstr "Veuillez résoudre le recaptcha pour continuer."
+
+#: class.cscf_contact.php:160
+msgid "Here is a copy of your message :"
+msgstr "Voici une copie de votre message :"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Message envoyé"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+"Merci pour votre message, nous vous répondrons dans les plus brefs délais."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Merci d'entrer ci-dessous vos coordonnées et un message. Nous vous "
+"répondrons dès que possible."
+
+#: class.cscf_pluginsettings.php:94
+msgid " - Web Enquiry"
+msgstr " - Formulaire Web"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Options du formulaire de contact"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Formulaire de contact"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Options de Clean and Simple Contact Form"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Faire un don de 10 $, 20 $ ou 50 $ !"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Si vous appréciez cette extension, faites un don pour soutenir le "
+"développement et la maintenance de :"
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Contact Form !"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Vous utilisez la version"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Si vous trouvez cette extension utile, pensez à"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "laisser un avis"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Merci !"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"NOTE : Vous avez JetPack's Contact Form activé. Merci de le désactiver ou "
+"utilisez le shortcode [cscf-contact-form] à la place."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "En savois plus"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Veuillez noter : Pour ajouter le formulaire de contact, veuillez insérer le "
+"texte"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "à votre article ou votre page."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "Paramètres ReCAPTCHA"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Utiliser reCAPTCHA :"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "Thème reCAPTCHA :"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA clé publique :"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA clé privée :"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Paramètres courriel"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "E-mail du destinataire :"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Confirmer l'adresse e-mail :"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Nouveau*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Autoriser les utilisateurs à recevoir une copie :"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Forcer l'adresse d'origine :"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "Adresse e-mail d'origine :"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Sujet de l'e-mail :"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Message :"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "En-tête message envoyé :"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Texte message envoyé :"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Style et Validation"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Utiliser la feuille de style par défaut de l'extension (décocher pour "
+"utiliser votre propre feuille de style) :"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Utiliser la validation côté client (AJAX) :"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Entrez vos paramètres reCAPTCHA ci-dessous :"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Pour utiliser reCAPTCHA vous devez obtenir une clé de l'API"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Entrer vos paramètres courriel ci-dessous :"
+
+#: class.cscf_settings.php:392
+msgid "Light"
+msgstr "Clair"
+
+#: class.cscf_settings.php:394
+msgid "Dark"
+msgstr "Sombre"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Nom :"
+
+#: views/contact-form.view.php:37
+msgid "Your Name"
+msgstr "Votre nom"
+
+#: views/contact-form.view.php:54
+msgid "Email Address:"
+msgstr "Adresse e-mail :"
+
+#: views/contact-form.view.php:67
+msgid "Your Email Address"
+msgstr "Votre adresse e-mail"
+
+#: views/contact-form.view.php:83
+msgid "Confirm Email Address:"
+msgstr "Confirmez votre adresse e-mail :"
+
+#: views/contact-form.view.php:92 views/contact-form.view.php:94
+msgid "Please enter the same email address again."
+msgstr "Veuillez confirmer votre adresse e-mail."
+
+#: views/contact-form.view.php:97
+msgid "Confirm Your Email Address"
+msgstr "Confirmez votre adresse e-mail"
+
+#: views/contact-form.view.php:114
+msgid "Message:"
+msgstr "Message :"
+
+#: views/contact-form.view.php:121
+msgid "Please give a message."
+msgstr "Veuillez saisir un message."
+
+#: views/contact-form.view.php:123
+msgid "Your Message"
+msgstr "Votre message"
+
+#: views/contact-form.view.php:139
+msgid "Send me a copy:"
+msgstr "Recevoir une copie :"
+
+#: views/contact-form.view.php:201
+msgid "Send Message"
+msgstr "Envoyer le message"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Désolé, un problème est survenu et votre message n'a pu être envoyé."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Un formulaire de contact propre et simple avec Google reCAPTCHA et Twitter "
+"Bootstrap."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-he_IL.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-he_IL.mo
new file mode 100644
index 0000000..e0a17ea
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-he_IL.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-he_IL.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-he_IL.po
new file mode 100644
index 0000000..79cd747
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-he_IL.po
@@ -0,0 +1,302 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.2.4\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2013-11-06 14:29:38+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2014-01-28 22:57+0200\n"
+"Last-Translator: \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.6.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Language: he_IL\n"
+
+#: class.cscf.php:149
+msgid "Settings"
+msgstr "הגדרות"
+
+#: class.cscf_contact.php:54
+msgid "Sorry the email addresses do not match."
+msgstr "מצטערים כתובות הדוא\"ל אינן תואמות."
+
+#: class.cscf_contact.php:59 views/contact-form.view.php:32
+msgid "Please give your email address."
+msgstr "יש לרשום כתובת דואר אלקטרוני."
+
+#: class.cscf_contact.php:63
+msgid "Please confirm your email address."
+msgstr "יש לאשר את כתובת הדואר אלקטרוני."
+
+#: class.cscf_contact.php:68 views/contact-form.view.php:79
+msgid "Please give your name."
+msgstr "בבקשה לרשום השם שלך."
+
+#: class.cscf_contact.php:72
+msgid "Please enter a message."
+msgstr "יש להזין הודעה."
+
+#: class.cscf_contact.php:76 views/contact-form.view.php:33
+#: views/contact-form.view.php:57
+msgid "Please enter a valid email address."
+msgstr "נא להזין כתובת דואר אלקטרוני חוקית."
+
+#: class.cscf_contact.php:84
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "מצטערים הקוד לא הוזן כראוי אנא נסה שוב."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "הודעה נשלחה"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "תודה לך על פנייתך, נישתדל ליצור איתך קשר בהקדם."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"נא להזין את פרטי הקשר שלך והודעה קצרה ואנחנו נשתדל ליצור איתך קשר בהקדם."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "- פניה מהאתר"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "הגדרות טופס יצירת קשר"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "טופס יצירת קשר"
+
+#: class.cscf_settings.php:40
+msgid "Clean and Simple Contact Form Settings"
+msgstr "הגדרות טופס יצירת קשר נקייה ופשוטה"
+
+#: class.cscf_settings.php:46
+msgid "Donate $10, $20 or $50!"
+msgstr "לתרום 10 $, 20 $ או 50 $!"
+
+#: class.cscf_settings.php:48
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr "אם אתה אוהב את התוסף הזה, בבקשה תרום כדי לתמוך בפיתוח ותחזוקה של:"
+
+#: class.cscf_settings.php:48
+msgid "Clean and Simple Contact Form!"
+msgstr "טופס יצירת קשר נקי ופשוט!"
+
+#: class.cscf_settings.php:63
+msgid "You are using version"
+msgstr "אתה משתמש בגרסה"
+
+#: class.cscf_settings.php:64
+msgid "If you find this plugin useful please consider"
+msgstr "אם אתה מוצא את התוסף הזה שימושי נשמח אם"
+
+#: class.cscf_settings.php:67
+msgid "leaving a review"
+msgstr "תשלח לנו ביקורת"
+
+#: class.cscf_settings.php:69
+msgid "Thank you!"
+msgstr "תודה לך!"
+
+#: class.cscf_settings.php:74
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"שים לב: יש לך טופס יצירת קשר של JetPack אפשר בבקשה לנטרל אותה או להשתמש בקוד "
+"הקצר [cscf מגע הטופס] במקום."
+
+#: class.cscf_settings.php:75
+msgid "Read More"
+msgstr "קראו עוד"
+
+#: class.cscf_settings.php:79
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr "שים לב: כדי להוסיף טופס יצירת קשר לדף שלך בבקשה להוסיף את הטקסט"
+
+#: class.cscf_settings.php:79
+msgid "to your post or page."
+msgstr "לפוסט או לדף שלך."
+
+#: class.cscf_settings.php:98
+msgid "ReCAPTCHA Settings"
+msgstr ""
+
+#: class.cscf_settings.php:106
+msgid "Use reCAPTCHA :"
+msgstr ""
+
+#: class.cscf_settings.php:112
+msgid "reCAPTCHA Theme :"
+msgstr ""
+
+#: class.cscf_settings.php:118
+msgid "reCAPTCHA Public Key :"
+msgstr ""
+
+#: class.cscf_settings.php:124
+msgid "reCAPTCHA Private Key :"
+msgstr ""
+
+#: class.cscf_settings.php:130
+msgid "Message Settings"
+msgstr "הגדרות הודעה"
+
+#: class.cscf_settings.php:134
+msgid "Recipient Emails :"
+msgstr "הודעות דוא\"ל של נמען:"
+
+#: class.cscf_settings.php:140
+msgid "Confirm Email Address :"
+msgstr "אשר כתובת דוא\"ל:"
+
+#: class.cscf_settings.php:146
+msgid "Override 'From' Address :"
+msgstr ""
+
+#: class.cscf_settings.php:152
+msgid "'From' Email Address :"
+msgstr "'מאת' כתובת דוא\"ל:"
+
+#: class.cscf_settings.php:158
+msgid "Email Subject :"
+msgstr "כותרת הודעה דואר אלקטרוני:"
+
+#: class.cscf_settings.php:164
+msgid "Message :"
+msgstr "הודעה:"
+
+#: class.cscf_settings.php:170
+msgid "Message Sent Heading :"
+msgstr "כותרת נשלחה הודעה:"
+
+#: class.cscf_settings.php:176
+msgid "Message Sent Content :"
+msgstr "תוכן שנשלח הודעה:"
+
+#: class.cscf_settings.php:182
+msgid "Styling and Validation"
+msgstr "עיצוב ואימות"
+
+#: class.cscf_settings.php:186
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"השתמש בגיליון סגנון ברירת המחדל של תוסף (un-tick להשתמש בסגנון גיליון נושא "
+"שלך במקום):"
+
+#: class.cscf_settings.php:192
+msgid "Use client side validation (AJAX) :"
+msgstr ""
+
+#: class.cscf_settings.php:262
+msgid "Enter your reCAPTCHA settings below :"
+msgstr ""
+
+#: class.cscf_settings.php:263
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr ""
+
+#: class.cscf_settings.php:268
+msgid "Enter your message settings below :"
+msgstr "הזן את ההגדרות של ההודעות שלך:"
+
+#: class.cscf_settings.php:342
+msgid "Red"
+msgstr ""
+
+#: class.cscf_settings.php:343
+msgid "White"
+msgstr ""
+
+#: class.cscf_settings.php:344
+msgid "Blackglass"
+msgstr ""
+
+#: class.cscf_settings.php:345
+msgid "Clean"
+msgstr ""
+
+#: views/contact-form.view.php:24
+msgid "Email Address:"
+msgstr "כתובת דוא\"ל:"
+
+#: views/contact-form.view.php:36
+msgid "Your Email Address"
+msgstr "כתובת הדואר האלקטרוני שלך"
+
+#: views/contact-form.view.php:47
+msgid "Confirm Email Address:"
+msgstr "אשר כתובת דוא\"ל:"
+
+#: views/contact-form.view.php:56 views/contact-form.view.php:58
+msgid "Please enter the same email address again."
+msgstr "אנא הכנס אותה כתובת דוא\"ל שוב."
+
+#: views/contact-form.view.php:61
+msgid "Confirm Your Email Address"
+msgstr "אשר את כתובת הדואר האלקטרוני שלך"
+
+#: views/contact-form.view.php:72
+msgid "Name:"
+msgstr "שם:"
+
+#: views/contact-form.view.php:82
+msgid "Your Name"
+msgstr "השם שלך"
+
+#: views/contact-form.view.php:92
+msgid "Message:"
+msgstr "הודעה:"
+
+#: views/contact-form.view.php:99
+msgid "Please give a message."
+msgstr "יש לרשום הודעה."
+
+#: views/contact-form.view.php:101
+msgid "Your Message"
+msgstr "ההודעה שלך"
+
+#: views/contact-form.view.php:123
+msgid "Send Message"
+msgstr "שלח הודעה"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "סליחה, יש בעיה ההודעה שלך לא נשלחה."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr ""
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hu_HU.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hu_HU.mo
new file mode 100644
index 0000000..e3f6094
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hu_HU.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hu_HU.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hu_HU.po
new file mode 100644
index 0000000..bad3336
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hu_HU.po
@@ -0,0 +1,323 @@
+# Copyright (C) 2014 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.4.0\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2014-09-24 08:46:00+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-08-07 13:12+0100\n"
+"Last-Translator: Sánta János \n"
+"Language-Team: LANGUAGE \n"
+"Language: hu_HU\n"
+"X-Generator: Poedit 1.5.4\n"
+
+#: class.cscf.php:151
+msgid "Settings"
+msgstr "Beállítások"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Sajnos az email címek nem egyeznek."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:54
+msgid "Please give your email address."
+msgstr "Kérem, adja meg email címét."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Kérem, erősítse meg email címét."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:32
+msgid "Please give your name."
+msgstr "Kérem, írja be nevét."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Kérem, írjon ide egy üzenetet."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:55
+#: views/contact-form.view.php:79
+msgid "Please enter a valid email address."
+msgstr "Kérem érvényes email cím megadását."
+
+#: class.cscf_contact.php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Sajnos a kódot helytelenül írta be, próbálkozzon újra."
+
+#: class.cscf_contact.php:157
+msgid "Here is a copy of your message :"
+msgstr "Üzenetének másolata:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Üzenet elküldve"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Köszönjük üzenetét, hamarosan válaszolunk."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Kérem, adja meg kapcsolati adatait, és üzenetére válaszolunk, amilyen "
+"gyorsan csak lehet."
+
+#: class.cscf_pluginsettings.php:93
+msgid " - Web Enquiry"
+msgstr "- Internetes megkeresés"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Kapcsolati űrlap beállításai"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Kapcsolati űrlap"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form beállítások"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Adakozz $10, $20 vagy $50 értékben!"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Ha tetszik ez a kiegészítő, kérlek adakozz a fejlesztés és fenntartás "
+"érdekében:"
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr ""
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Verziószám: "
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Amennyiben hasznosnak találtad ezt a kiegészítőt, kérlek"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "küldj egy visszajelzést"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Köszönöm!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"FIGYELEM: A JetPack Contact Form engedélyezve van oldaladon. Kapcsold ki, "
+"vagy használd helyette a [cscf-contact-form] rövidkódot."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Tovább"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Megjegyzés: Ha be szeretnéd szúrni a kapcsolati űrlapot az oldaladra, a"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "szöveget kell beillesztened a bejegyzésedbe vagy oldaladba."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA beállítások"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "ReCAPTCHA használata:"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "ReCAPTCHA téma:"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "ReCAPTCHA nyilvános kulcs:"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "ReCAPTCHA magán kulcs:"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Üzenet beállítások"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Címzettek:"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Email cím megerősítése:"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Új*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Felhasználók küldhetnek maguknak egy másolatot:"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "'Feladó' mező felülírása:"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "'Feladó' email címe:"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Email tárgya:"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Üzenet:"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Üzenet elküldve címsor:"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Üzenet elküldve tartalom:"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Stílus és ellenőrzés"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"A kiegészítő alapértelmezett stíluslapját használja (töröld a pipát, ha "
+"inkább a saját sablonod stíluslapját szeretnéd használni)"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Kliens-oldali ellenőrzés (AJAX):"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "reCAPTCHA beállítások megadása:"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "A reCAPTCHA használatához be kell szerezned egy API kulcsot innen:"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Üzenet-beállítások megadása:"
+
+#: class.cscf_settings.php:392
+msgid "Red"
+msgstr "Piros"
+
+#: class.cscf_settings.php:394
+msgid "White"
+msgstr "Fehér"
+
+#: class.cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Feketeüveg"
+
+#: class.cscf_settings.php:398
+msgid "Clean"
+msgstr "Tiszta"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Név:"
+
+#: views/contact-form.view.php:35
+msgid "Your Name"
+msgstr "Az Ön neve:"
+
+#: views/contact-form.view.php:46
+msgid "Email Address:"
+msgstr "Email cím:"
+
+#: views/contact-form.view.php:58
+msgid "Your Email Address"
+msgstr "Az Ön email címe"
+
+#: views/contact-form.view.php:69
+msgid "Confirm Email Address:"
+msgstr "Email cím megerősítése:"
+
+#: views/contact-form.view.php:78 views/contact-form.view.php:80
+msgid "Please enter the same email address again."
+msgstr "Kérem, írja be újra email címét."
+
+#: views/contact-form.view.php:83
+msgid "Confirm Your Email Address"
+msgstr "Az Ön email címének megerősítése"
+
+#: views/contact-form.view.php:95
+msgid "Message:"
+msgstr "Üzenet:"
+
+#: views/contact-form.view.php:102
+msgid "Please give a message."
+msgstr "Kérem, írja ide üzenetét."
+
+#: views/contact-form.view.php:104
+msgid "Your Message"
+msgstr "Az Ön üzenete"
+
+#: views/contact-form.view.php:114
+msgid "Send me a copy:"
+msgstr "Kérek másolatot:"
+
+#: views/contact-form.view.php:142
+msgid "Send Message"
+msgstr "Üzenet küldése"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Sajnos probléma lépett fel, és üzenetét nem sikerült elküldeni."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Letisztult és egyszerű kapcsolati űrlap, Google reCAPTCHA és Twitter "
+"Bootstrap támogatással."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr ""
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hy_AM.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hy_AM.mo
new file mode 100644
index 0000000..6c5cd2b
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hy_AM.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hy_AM.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hy_AM.po
new file mode 100644
index 0000000..3199e84
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-hy_AM.po
@@ -0,0 +1,254 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-25 21:32+0400\n"
+"Last-Translator: hanuman \n"
+"Language-Team: Artak Kolyan (aka hanuman, http://ablog.gratun.am) \n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"X-Poedit-Language: Armenian\n"
+"X-Poedit-Country: Armenia\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "Կարգավորումներ"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "Էլ․փոստի հասցեն չի համընկնում"
+
+#: class.cscf_contact.php:57
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Գրեք ձեր էլ․փոստի հասցեն"
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "Հաստատեք էլ․փոստի հասցեն"
+
+#: class.cscf_contact.php:65
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Գրեք ձեր անունը"
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "Գրեք հաղորդագրության տեքստը"
+
+#: class.cscf_contact.php:73
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Մուտքագրեք վալիդ էլ․փոստի հասցե"
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Կոդը ճիշտ չի մուտքագրված, փորձեք նորից"
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Հաղորդագրությունը ուղարկված է"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Շնորհակալություն հաղորդագրության համար, մենք արագ կարձագանքենք։"
+
+#: class.cscf_pluginsettings.php:54
+msgid "Please enter your contact details and a short message below and I will try to answer your query as soon as possible."
+msgstr "Գրեք ձեր հաղորդագրությունը և կոնտակտային տվյալները ստորև, մենք կպատասխանենք որքան հնարավոր է արագ։"
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr ""
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form -ի կարգավորումները"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Դուք օգտագործում եք հետևյալ վարկածը ՝ "
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Կապվեք, եթե ունեք խնդիրներ փլագինի հետ"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr ""
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "Շնորհակալություն"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA-ի կարգավորումները"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Օգտագործել reCAPTCHA :"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA թեման,տեսքը:"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA հանրային բանալին :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA-ի գաղտնի բանալին :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "Հաղորդագրության կարգավորումները"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "Ստացողի․ էլ․փոստը"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "Էլ․նամակի (էմակի) վերնագիրը"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "Հաղորդագրություն ՝"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Ուղարկված հաղորդագրության վերնագիրը"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Ուղարկաված հաղորդագրության բովանդակությունը"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "Ոճավորում և Վալիդացիա"
+
+#: class.cscf_settings.php:138
+msgid "Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :"
+msgstr "Օգտագործել փլագինի լռելայն css-ոճը"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Օգտագործել կլիենտ-սայդ վալիդացիա (AJAX)"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Կարգավորեք reCAPTCHA-ն ստորև"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "reCAPTCHA-ն օգտագործելու համար վերցրեք API բանալին"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Հաղորդագրության կարգավորումները ստորև"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "Կարմիր"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "Սպիտակ"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "Սև ապակի"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "Մաքուր"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Էլ․փոստի հասցե"
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Ձեր էլ․փոստի հասցեն"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Հաստատել էլ․փոստի հասցեն"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Կրկին ներմուծեք ձեր էլ․փոստի հասցեն"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Հաստատեք ձեր էլ․փոստի հասցեն"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Անուն"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Ձեր անունը"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Հաղորդագրություն"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Գրեք հաղորդագրություն"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Ձեր հաղորդագրությունը"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Ուղարկել հաղորդագրություն"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Ներողություն, ինչ որ խնդիր կա և ձեր հաղորդագրությունը չի ուղարկվել"
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid "A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup."
+msgstr "Անվտանգ և պարզ կոնտակտ ֆորմա հիմնված Գուգլի reCAPTCHA-ի և Twitter Bootstrap-ի վրա։"
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Մեգան Նիկոլաս"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
+
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-id_ID.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-id_ID.mo
new file mode 100644
index 0000000..8ef87c7
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-id_ID.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-id_ID.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-id_ID.po
new file mode 100644
index 0000000..6de0c06
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-id_ID.po
@@ -0,0 +1,322 @@
+# Copyright (C) 2014 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Cleand and Simple Contact Form Indonesian\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2014-09-24 08:46:00+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2014-10-06 13:51+0700\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Beny Hirmansyah \n"
+"X-Generator: Poedit 1.6.9\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language: id_ID\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+
+#: class.cscf.php:151
+msgid "Settings"
+msgstr "Pengaturan"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Maaf, alamat email tidak cocok."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:54
+msgid "Please give your email address."
+msgstr "Mohon isikan email anda."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Konfirmasi alamat email anda kembali."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:32
+msgid "Please give your name."
+msgstr "Mohon isikan nama anda."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Mohon untuk mengisi kolom pesan."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:55
+#: views/contact-form.view.php:79
+msgid "Please enter a valid email address."
+msgstr "Masukkan alamat email yang valid."
+
+#: class.cscf_contact.php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Maaf, kode yang dimasukkan tidak benar. Silahkan coba kembali."
+
+#: class.cscf_contact.php:157
+msgid "Here is a copy of your message :"
+msgstr "Berikut salinan dari pesan anda:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Pesan Terkirim"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Terima kasih atas pesan anda, kami akan menghubungi anda secepatnya."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Masukkan detil kontak dan pesan singkat anda di bawah ini. Saya akan mencoba "
+"menjawab pertanyaan anda sesegera mungkin."
+
+#: class.cscf_pluginsettings.php:93
+msgid " - Web Enquiry"
+msgstr "- Pesan dari Situs"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Pengaturan Formulir Kontak"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Formulir Kontak"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Pengaturan Clean and Simple Contact Form"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr ""
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr ""
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr ""
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr ""
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr ""
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr ""
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"PERINGATAN: Contact Form plugin JetPack aktif. Mohon untuk menonaktifkan "
+"atau gunakan shortcode [cscf-contact-form sebagai gantinya."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Baca Selanjutnya"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Perhatian: Untuk menambahkan formulir kontak ke halaman anda mohon untuk "
+"menambahkan teks"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "ke postingan atau halaman anda."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "Pengaturan ReCAPTCHA"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Gunakan reCAPTCHA :"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "Tema reCAPTCHA :"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "Public Key reCAPTCHA :"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "Private Key reCAPTCHA :"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Pengaturan Pesan"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Email Penerima :"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Konfirmasi Alamat Email :"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Baru*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Ijinkan pengguna untuk mendapatkan salinan via email :"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Ubah Pengaturan 'Dari' :"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "'Dari' Alamat Email :"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Judul Email :"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Pesan :"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Heading Pesan Terkirim :"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Konten Pesan Terkirim :"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Styling dan Validasi"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Gunakan stylesheet default plugin (hilangkan checklist untuk menggunakan "
+"stylesheet tema anda) :"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Gunakan client side validation (AJAX)"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Masukkan detil pengaturan reCAPCTHA di bawah :"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Untuk menggunakan reCAPTCHA anda harus mendapatkan sebuah API key dari"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Masukkan pengaturan pesan anda di bawah :"
+
+#: class.cscf_settings.php:392
+msgid "Red"
+msgstr "Merah"
+
+#: class.cscf_settings.php:394
+msgid "White"
+msgstr "Putih"
+
+#: class.cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Blackglass"
+
+#: class.cscf_settings.php:398
+msgid "Clean"
+msgstr "Clean"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Nama:"
+
+#: views/contact-form.view.php:35
+msgid "Your Name"
+msgstr "Nama anda"
+
+#: views/contact-form.view.php:46
+msgid "Email Address:"
+msgstr "Alamat Email:"
+
+#: views/contact-form.view.php:58
+msgid "Your Email Address"
+msgstr "Alamat Email Anda"
+
+#: views/contact-form.view.php:69
+msgid "Confirm Email Address:"
+msgstr "Konfirmasi Alamat Email"
+
+#: views/contact-form.view.php:78 views/contact-form.view.php:80
+msgid "Please enter the same email address again."
+msgstr "Ulangi memasukkan alamat email yang sama."
+
+#: views/contact-form.view.php:83
+msgid "Confirm Your Email Address"
+msgstr "Konfirmasi Alamat Email Anda"
+
+#: views/contact-form.view.php:95
+msgid "Message:"
+msgstr "Pesan:"
+
+#: views/contact-form.view.php:102
+msgid "Please give a message."
+msgstr "Mohon untuk mengisi kolom pesan."
+
+#: views/contact-form.view.php:104
+msgid "Your Message"
+msgstr "Pesan Anda"
+
+#: views/contact-form.view.php:114
+msgid "Send me a copy:"
+msgstr "Kirimkan saya salinannya:"
+
+#: views/contact-form.view.php:142
+msgid "Send Message"
+msgstr "Kirim Pesan"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Maaf, ada masalah dan pesan anda gagal terkirim."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr ""
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.mo
new file mode 100644
index 0000000..121e968
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.po
new file mode 100644
index 0000000..2ceac74
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-it_IT.po
@@ -0,0 +1,378 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: Sun Apr 19 2015 03:10:40 GMT+0200 (ora solare Europa "
+"occidentale)\n"
+"PO-Revision-Date: 2015-04-22 11:06+0100\n"
+"Last-Translator: Elfo \n"
+"Language-Team: \n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=n != 1;\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
+"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
+"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
+"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
+"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
+"X-Loco-Target-Locale: it_IT\n"
+"X-Generator: Poedit 1.7.6\n"
+"X-Poedit-SearchPath-0: ../../plugins/clean-and-simple-contact-form-by-meg-"
+"nicholas\n"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Messaggio inviato"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Grazie del Messaggio, vi contatteremo il più presto possibile."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try to "
+"answer your query as soon as possible."
+msgstr ""
+"Per favore inserisci di seguito i dati di contatto e un breve messaggio e "
+"proveremo a risponderti al più presto."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_pluginsettings.php:94
+msgid " - Web Enquiry"
+msgstr "- Richiesta Web"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf.php:151
+msgid "Settings"
+msgstr "Impostazioni"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Spiacente gli indirizzi email non corrispondono."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:71 ../../plugins/clean-and-simple-contact-form-by-meg-
+#: nicholas/views/contact-form.view.php:51
+msgid "Please give your email address."
+msgstr "Si prega di fornire il vostro indirizzo email."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:75
+msgid "Please confirm your email address."
+msgstr "Si prega di confermare il vostro indirizzo email."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:80 ../../plugins/clean-and-simple-contact-form-by-meg-
+#: nicholas/views/contact-form.view.php:29
+msgid "Please give your name."
+msgstr "Il vostro nome."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:84
+msgid "Please enter a message."
+msgstr "Inserire un messaggio."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:88 ../../plugins/clean-and-simple-contact-form-by-meg-
+#: nicholas/views/contact-form.view.php:52
+#: ../../plugins/clean-and-simple-contact-
+#: form-by-meg-nicholas/views/contact-form.view.php:76
+msgid "Please enter a valid email address."
+msgstr "Si prega di inserire un indirizzo email valido."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Spiacenti ma il codice non è stato inserito correttamente si prega di riprovare."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.cscf_contact.
+#: php:157
+msgid "Here is a copy of your message :"
+msgstr "Qui c'è una copia del tuo messaggio:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Impostazioni Contact Form"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Contact Form"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Impostazioni Clean and Simple Contact Form"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Dona $10, $20 o $50!"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and maintenance "
+"of:"
+msgstr ""
+"Se ti piace questo plugin, per favore supporta lo sviluppo ed il mantenimento "
+"con una donazione a:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Contact Form!"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:72
+msgid "You are using version"
+msgstr "Versione in uso"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Se trovi utile questo plugin per favore"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:77
+msgid "leaving a review"
+msgstr "lascia una recensione"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Grazie!"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the "
+"shortcode [cscf-contact-form] instead."
+msgstr ""
+"ATTENZIONE: Hai il modulo di contatto di JetPack abilitato, per favore "
+"disabilitalo o utilizza lo shortcode [cscf-contact-form] al suo posto."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:86
+msgid "Read More"
+msgstr "Leggi di piú"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr "NOTA: Per aggiungere questo modulo di contatto ad una pagina usa il testo"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:91
+msgid "to your post or page."
+msgstr "sul tuo post o sulla tua pagina."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "Impostazioni ReCAPTCHA"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Usa ReCAPTCHA:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "Tema reCAPTCHA:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "Chiave Pubblica reCAPTCHA:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "Chiave Privata reCAPTCHA:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Impostazioni messaggio"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Contenitore email:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Conferma indirizzo email:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:159
+msgid "*New*"
+msgstr "*Novità*"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Permetti agli utenti di inviarsi una copia:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Sovrascrivi indirizzo 'From':"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "Indirizzo email 'From':"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Oggetto dell'email:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:183
+msgid "Message :"
+msgstr "Messaggio:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Intestazione messaggio inviato:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Contenuto messaggio inviato:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Stili e Validazione"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Usa lo stile di default del plugin (deselezionare per usare lo stile del tema "
+"principale):"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Usa validazione lato client (AJAX):"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Inserisci le impostazioni reCAPTCHA di seguito:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Per usare reCAPTCHA dovi ottenere una chiave API tramite"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Inserisci le impostazioni dei messaggi qui sotto:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:392
+msgid "Red"
+msgstr "Rosso"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:394
+msgid "White"
+msgstr "Bianco"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Vetro nero"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/class.
+#: cscf_settings.php:398
+msgid "Clean"
+msgstr "Pulito"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-
+#: sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr ""
+"Spiacenti, c'è stato un problema e il vostro messaggio non è stato inviato."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:22
+msgid "Name:"
+msgstr "Nome:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:32
+msgid "Your Name"
+msgstr "Il vostro nome"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:43
+msgid "Email Address:"
+msgstr "Indirizzo email:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:55
+msgid "Your Email Address"
+msgstr "Il vostro indirizzo email"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:66
+msgid "Confirm Email Address:"
+msgstr "Conferma indirizzo email:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:75 ../../plugins/clean-and-simple-contact-form-by-meg-
+#: nicholas/views/contact-form.view.php:77
+msgid "Please enter the same email address again."
+msgstr "Si prega di reinserire nuovamente l'indirizzo email."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:80
+msgid "Confirm Your Email Address"
+msgstr "Confermate il vostro indirizzo email"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:92
+msgid "Message:"
+msgstr "Messaggio:"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:99
+msgid "Please give a message."
+msgstr "Inserire un messaggio."
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:101
+msgid "Your Message"
+msgstr "Il vostro messaggio"
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:111
+msgid "Send me a copy:"
+msgstr "Inviami una copia del messaggio "
+
+#: ../../plugins/clean-and-simple-contact-form-by-meg-nicholas/views/contact-form.
+#: view.php:143
+msgid "Send Message"
+msgstr "Invia messaggio"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ja.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ja.mo
new file mode 100644
index 0000000..7e9e503
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ja.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ja.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ja.po
new file mode 100644
index 0000000..a4c5e30
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ja.po
@@ -0,0 +1,261 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-08-26 19:00+0900\n"
+"Last-Translator: \n"
+"Language-Team: Nikhil Khullar \n"
+"X-Generator: Poedit 1.5.7\n"
+"Language: Japanese\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "セッティング"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "メールアドレスが一致しません。"
+
+#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "メールアドレスをお願いします。"
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "メールアドレスを確認してください。"
+
+#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "お名前をお願いします。"
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "メッセージをお願いします。"
+
+#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "有効なメールアドレスを書いてください。"
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "コードが正しくありません。もう一度お試しください。"
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "メッセージが送信されました。"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "ありがとうございました。我々は非常にすぐに連絡させていただきます。"
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"連絡先とメッセージをお願いします。我々は非常にすぐに連絡させていただきます。"
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "ー ウェブ問い合わせ"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "セッティング"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "このバージョンは"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "よかったら、"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "レビューを残してください。"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "ありがとうございます。"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "「reCAPTCHA」セッティング"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "「reCAPTCHA」を着かす :"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "「reCAPTCHA」のテーマ :"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "「reCAPTCHA」の公開鍵 :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "「reCAPTCHA」の秘密鍵 :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "メッセージのセッティング"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "受信者のメールアドレス :"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "メールの件名 :"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "メッセージ :"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "メッセージが送信されるのヘディング :"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "メッセージが送信されるのコンテンツ :"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "スタイリングと検証"
+
+#: class.cscf_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr "プラグインのデフォルトのスタイルシート :"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "クライアント側の検証「AJAX」を使ってください。"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "「reCAPTCHA」セッティングをお願いします。"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "「reCAPTCHA」を使う前に「API key」を取得してください"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "メッセージのセッティングを教えてください :"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "赤"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "白"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "黒ガラス"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "クリーン"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "メールアドレス : "
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "あなたのメールアドレス"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "メールアドレスの確認:"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "また、同じメールアドレスを入ってください。"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "メールアドレスを確認してください。"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "名前 :"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "お名前"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "メッセージ :"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "メッセージをお願いします。"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "あなたのメッセージ"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "送信"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "ごめんなさい、メッセージは送信されませんでした。"
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "「Clean and Simple」お問い合わせフォーム"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"「Google reCAPTCHA」と「Twitter Bootstrap」を使っている清楚なお問い合わせ"
+"フォーム。"
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "http://www.megnicholas.co.uk"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ko_KR.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ko_KR.mo
new file mode 100644
index 0000000..025b198
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ko_KR.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ko_KR.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ko_KR.po
new file mode 100644
index 0000000..9c9e4d1
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ko_KR.po
@@ -0,0 +1,317 @@
+# Copyright (C) 2015 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.5.0\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clean-and-simple-"
+"contact-form-by-meg-nicholas\n"
+"POT-Creation-Date: 2016-01-07 15:54+0900\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2016-01-07 16:18+0900\n"
+"Language-Team: \n"
+"X-Generator: Poedit 1.8.6\n"
+"Last-Translator: \n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language: ko_KR\n"
+
+#: class.cscf.php:157
+msgid "Settings"
+msgstr "설정"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "이메일 주소가 일치하지 않습니다."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:63
+msgid "Please give your email address."
+msgstr "이메일 주소를 입력해 주십시오."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "이메일 주소를 확인해 주십시오."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "성함을 입력해 주십시오."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "메시지를 입력해 주십시오."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:64
+#: views/contact-form.view.php:93
+msgid "Please enter a valid email address."
+msgstr "이메일 주소가 올바르지 않습니다."
+
+#: class.cscf_contact.php:97
+msgid "Please solve the recaptcha to continue."
+msgstr "계속하려면 그림 문자를 입력해 주십시오."
+
+#: class.cscf_contact.php:160
+msgid "Here is a copy of your message :"
+msgstr "메시지 사본입니다:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "메시지 전송 완료"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "메시지를 보내주셔서 감사합니다. 곧 연락 드리겠습니다."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"자세한 연락처 정보와 메시지를 입력해 주시면 가능한 한 빨리 답변드리도록 노력"
+"하겠습니다."
+
+#: class.cscf_pluginsettings.php:94
+msgid " - Web Enquiry"
+msgstr "- 웹 질문"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "연락처 양식 설정"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "연락처 양식"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form 설정"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "기부해 주세요!($10, $20, $50)"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"플러그인이 마음에 드시면 지속적인 개발 및 유지보수를 위해 기부해 주십시오."
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Contact Form!"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "현재 사용 중인 버전"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "이 플러그인이 유용하다면"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "리뷰 작성"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "감사합니다!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"알림: JetPack의 Contact Form이 활성화돼 있습니다. 해당 플러그인을 비활성화하"
+"거나 [cscf-contact-form] 단축 코드를 사용해 주십시오."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "더 읽어보기"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"알림: 페이지에 연락처 양식을 추가하려면 다음 항목에 텍스트를 추가해 주십시"
+"오:"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "글이나 페이지"
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA 설정"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "reCAPTCHA 사용:"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA 테마:"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA 공개키:"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA 비밀키:"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "메시지 설정"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "받는이 이메일:"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "이메일 주소 확인:"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*새 항목*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "사용자가 자신에게 이메일 사본을 전송:"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "'보낸이' 주소를 재정의:"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "'보낸이' 이메일 주소:"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "이메일 제목:"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "내용:"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "메시지 전송 완료 시 머리말:"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "메시지 전송 완료 시 내용:"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "스타일/유효성 검증"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"플러그인의 기본 스타일시트 사용(별도 테마 스타일시트를 사용하려면 체크 해"
+"제):"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "클라이언트 측 유효성 검증 사용(AJAX):"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "아래에 reCAPTCHA 설정을 입력해 주십시오:"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "reCAPTCHA를 사용하려면 다음 위치에서 API 키를 가져와야 합니다:"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "아래에 메시지 설정을 입력해 주십시오:"
+
+#: class.cscf_settings.php:392
+msgid "Light"
+msgstr "Light"
+
+#: class.cscf_settings.php:394
+msgid "Dark"
+msgstr "Dark"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "이름:"
+
+#: views/contact-form.view.php:37
+msgid "Your Name"
+msgstr "성함을 입력해 주십시오."
+
+#: views/contact-form.view.php:54
+msgid "Email Address:"
+msgstr "이메일 주소:"
+
+#: views/contact-form.view.php:67
+msgid "Your Email Address"
+msgstr "이메일 주소를 입력해 주십시오."
+
+#: views/contact-form.view.php:83
+msgid "Confirm Email Address:"
+msgstr "이메일 주소 확인:"
+
+#: views/contact-form.view.php:92 views/contact-form.view.php:94
+msgid "Please enter the same email address again."
+msgstr "같은 이메일 주소를 한 번 입력해 주십시오."
+
+#: views/contact-form.view.php:97
+msgid "Confirm Your Email Address"
+msgstr "이메일 주소를 확인해 주십시오."
+
+#: views/contact-form.view.php:114
+msgid "Message:"
+msgstr "내용:"
+
+#: views/contact-form.view.php:121
+msgid "Please give a message."
+msgstr "내용을 입력해 주십시오."
+
+#: views/contact-form.view.php:123
+msgid "Your Message"
+msgstr "내용"
+
+#: views/contact-form.view.php:139
+msgid "Send me a copy:"
+msgstr "나에게 메시지 사본 전송:"
+
+#: views/contact-form.view.php:201
+msgid "Send Message"
+msgstr "메시지 전송"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "죄송합니다. 문제가 발생해서 메시지를 보내지 못했습니다."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Google reCAPTCHA와 Twitter Bootstrap 마크업을 활용해서 만든 깔끔하고 간단한 "
+"연락처 양식."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.mo
new file mode 100644
index 0000000..cdd4788
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.po
new file mode 100644
index 0000000..1d86301
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nb_NO.po
@@ -0,0 +1,262 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-08 23:16+0100\n"
+"Last-Translator: Mike Larsen \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "Innstillinger"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "Beklager, men epostadressene er ikke like."
+
+#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Skriv inn din epostadresse."
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "Vennligst bekreft din epostadresse."
+
+#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Skriv inn ditt navn."
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "Skriv inn beskjed."
+
+#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Skriv inn en gyldig epostadresse."
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Beklager, men koden var feil. Prøv igen."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Beskjeden er sendt"
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Takk for din henvendelse. Vi tar snart kontakt."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Fyll ut skjemaet med en kort beskjed, og vi tar snart kontakt."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "Kontakt fra hjemmeside"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Innstillinger for Clean and Simple Contact Form"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Du bruker versjon"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Hvis du synes dette plugin er nyttig, vurder å"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "gi en bedømmelse"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "På forhånd takk!"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "Innstillinger for ReCAPTCHA:"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Bruk reCAPTCHA:"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA tema :"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "Innstillinger for beskjed:"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "Din epostadresse:"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "Tekst i emnefelt:"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "Beskjed:"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Overskrift for sendt beskjed:"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Innhold i sendt beskjed:"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "Utseende og validering"
+
+#: class.cscf_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Bruk standardtemaet for dette plugin (fjern haken for å bruke ditt "
+"standardtema):"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Bruk AJAX validering:"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Definer dine reCAPTCHA innstillinger"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "For å bruke reCAPTCHA må du ha en API nøkkel fra"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Definer dine innstillinger for beskjeder:"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "Rød"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "Hvit"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "Gjennomsiktig"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "Enkel"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Epostadresse:"
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Din epostadresse"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Bekreft din epostadresse:"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Vennligst skriv inn den samme epostadressen igjen."
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Bekreft din epostadresse"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Navn:"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Ditt navn"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Beskjed:"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Skriv en beskjed."
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Din beskjed"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Send beskjed"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Beklager, men det har oppstått en feil og din beskjed ble ikke sendt."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Et stilig og enkelt kontaktskjema med Google reCAPTCHA og Twitter Bootstrap "
+"stiler."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nl_NL.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nl_NL.mo
new file mode 100644
index 0000000..10e37e0
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nl_NL.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nl_NL.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nl_NL.po
new file mode 100644
index 0000000..105017e
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-nl_NL.po
@@ -0,0 +1,264 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas/\n"
+"POT-Creation-Date: 2013-06-20 08:37:17+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-25 20:32+0100\n"
+"Last-Translator: a \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.7\n"
+
+#: class.cscf.php:102
+msgid "Settings"
+msgstr "Instellingen"
+
+#: class.cscf_contact.php:53
+msgid "Sorry the email addresses do not match."
+msgstr "Sorry, de emailadressen komen niet overeen."
+
+#: class.cscf_contact.php:57 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Vul uw emailadres in."
+
+#: class.cscf_contact.php:61
+msgid "Please confirm your email address."
+msgstr "Bevestig uw emailadres."
+
+#: class.cscf_contact.php:65 views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Vul uw naam in."
+
+#: class.cscf_contact.php:69
+msgid "Please enter a message."
+msgstr "Vul een bericht in."
+
+#: class.cscf_contact.php:73 views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Vul alstublieft een geldig emailadres in."
+
+#: class.cscf_contact.php:81
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Sorry, u heeft de code niet juist ingevoerd. Probeer het opnieuw."
+
+#: class.cscf_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Bericht verstuurd."
+
+#: class.cscf_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Dank u voor uw bericht, we zullen spoedig contact met u opnemen."
+
+#: class.cscf_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Vul alstublieft uw gegevens in en daaronder een kort bericht. We zullen dan "
+"zo spoedig mogelijk contact met u opnemen."
+
+#: class.cscf_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Internet Onderzoek"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form Instellingen"
+
+#: class.cscf_settings.php:43
+msgid "You are using version"
+msgstr "Je gebruikt versie"
+
+#: class.cscf_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Als je deze plugin nuttig vindt, overweeg dan"
+
+#: class.cscf_settings.php:47
+msgid "leaving a review"
+msgstr "een review achter te laten"
+
+#: class.cscf_settings.php:49
+msgid "Thank you!"
+msgstr "Bedankt!"
+
+#: class.cscf_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA Instellingen"
+
+#: class.cscf_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Gebruik reCAPTCHA:"
+
+#: class.cscf_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA Thema:"
+
+#: class.cscf_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key :"
+
+#: class.cscf_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key :"
+
+#: class.cscf_settings.php:100
+msgid "Message Settings"
+msgstr "Bericht Instellingen"
+
+#: class.cscf_settings.php:104
+msgid "Recipient Email :"
+msgstr "Email Ontvanger:"
+
+#: class.cscf_settings.php:110
+msgid "Email Subject :"
+msgstr "Email Onderwerp:"
+
+#: class.cscf_settings.php:116
+msgid "Message :"
+msgstr "Bericht:"
+
+#: class.cscf_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Bericht Verzonden Kop:"
+
+#: class.cscf_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Bericht Verzonden Inhoud:"
+
+#: class.cscf_settings.php:134
+msgid "Styling and Validation"
+msgstr "Styling en Validatie"
+
+#: class.cscf_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Gebruik de standaard stylesheet van de plugin (uitvinken om de stylesheet "
+"van je thema te gebruiken) :"
+
+#: class.cscf_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Gebruik client-side validatie (AJAX):"
+
+#: class.cscf_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Vul hier je reCAPTCHA instellingen in :"
+
+#: class.cscf_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Om reCAPTCHA te gebruiken moet je een API sleutel krijgen van"
+
+#: class.cscf_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Vul je berichtinstellingen hieronder in :"
+
+#: class.cscf_settings.php:274
+msgid "Red"
+msgstr "Rood"
+
+#: class.cscf_settings.php:275
+msgid "White"
+msgstr "Wit"
+
+#: class.cscf_settings.php:276
+msgid "Blackglass"
+msgstr "Zwartglas"
+
+#: class.cscf_settings.php:277
+msgid "Clean"
+msgstr "Clean"
+
+#: views/contact-form-with-recaptcha.view.php:31
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Emailadres:"
+
+#: views/contact-form-with-recaptcha.view.php:33
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Uw Emailadres"
+
+#: views/contact-form-with-recaptcha.view.php:41
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Bevestig Emailadres:"
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Vul nogmaals het zelfde emailadres in."
+
+#: views/contact-form-with-recaptcha.view.php:43
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Bevestig Uw Emailadres"
+
+#: views/contact-form-with-recaptcha.view.php:51
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Naam:"
+
+#: views/contact-form-with-recaptcha.view.php:53
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Uw Naam"
+
+#: views/contact-form-with-recaptcha.view.php:61
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Bericht:"
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Schrijf alstublieft een bericht."
+
+#: views/contact-form-with-recaptcha.view.php:63
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Uw Bericht"
+
+#: views/contact-form-with-recaptcha.view.php:79
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Bericht Versturen"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr ""
+"Sorry, er was een probleem waardoor het bericht niet verzonden kon worden."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Formulier"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"A schoon en simpel contactformulier met Google reCAPTCHA en Twitter "
+"Bootstrap opmaak."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pl_PL.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pl_PL.mo
new file mode 100644
index 0000000..f164eca
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pl_PL.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pl_PL.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pl_PL.po
new file mode 100644
index 0000000..4199c39
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pl_PL.po
@@ -0,0 +1,339 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clean-and-simple-"
+"contact-form-by-meg-nicholas\n"
+"POT-Creation-Date: 2015-07-08 11:44:43+00:00\n"
+"PO-Revision-Date: 2015-07-08 13:58-0000\n"
+"Last-Translator: \n"
+"Language-Team: Kacper Ruciński \n"
+"Language: pl_PL\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.7.6\n"
+"X-Poedit-Basepath: ..\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
+"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
+"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
+"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
+"|| n%100>=20) ? 1 : 2);\n"
+"X-Poedit-SearchPath-0: .\n"
+
+#: class.cscf.php:157
+msgid "Settings"
+msgstr "Ustawienia"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Przepraszamy, wpisano różne adresy email."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:63
+msgid "Please give your email address."
+msgstr "Prosimy podać adres e-mail."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Prosimy potwierdzić podany adres e-mail."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Prosimy wpisać imię i nazwisko."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Prosimy wpisać wiadomość."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:64
+#: views/contact-form.view.php:93
+msgid "Please enter a valid email address."
+msgstr "Prosimy wpisać poprawny adres e-mail."
+
+#: class.cscf_contact.php:97
+msgid "Please solve the recaptcha to continue."
+msgstr "Proszę rozwiązać recaptcha, aby kontynuować."
+
+#: class.cscf_contact.php:160
+msgid "Here is a copy of your message :"
+msgstr "Oto kopia Twojej wiadomości:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Wiadomość została wysłana"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Dziękujemy za wiadomość, skontaktujemy się wkrótce."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Poniżej wpisz swoje dane kontaktowe i krótką wiadomość, a postaramy się "
+"odpowiedzieć wkrótce."
+
+#: class.cscf_pluginsettings.php:94
+msgid " - Web Enquiry"
+msgstr " ‒ Zapytanie"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Ustawienia Contact Form"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Contact Form"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Ustawienia Clean and Simple Contact Form"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Podaruj $10, $20, $50!"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Jeśli podoba Ci się ta wtyczka, prosimy o darowiznę na jej rozwój i "
+"utrzymanie:"
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Contact Form!"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Używasz wersji"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Jeśli ta wtyczka była dla Ciebie przydatna,"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "napisz o niej opinię, proszę"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Dziękuję!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"UWAGA: Masz włączony Contact Form z wtyczki JetPack, proszę wyłączyć go lub "
+"użyć kodu [CSCF-contact-form]."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Czytaj więcej"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Uwaga: Aby dodać formularz kontaktowy, należy do strony lub wpisu dodać kod"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "Ustawienia reCAPTCHA"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Użyj reCAPTCHA :"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "Motyw reCAPTCHA:"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "Klucz publiczny reCAPTCHA:"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "Klucz prywatny reCAPTCHA:"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Ustawienia wiadomości"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Adresy e-mail odbiorcy:"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Potwierdź adres e-mail:"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Nowe*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Użytkownicy mogą wysłać sobie kopię wiadomości"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Zastąp adres e-mail 'Od':"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "Jako adresu 'Od' użyj:"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Temat wiadomości:"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Wiadomość:"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Tytuł komunikatu o wysłanej wiadomości:"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Treść komunikatu o wysłanej wiadomości:"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Wygląd i weryfikacja"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr "Użyj domyślnego stylu wtyczki (odznacz, aby użyć stylów motywu "
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Użyj weryfikacji w przeglądarce (AJAX):"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Poniżej podaj swoje ustawienia reCAPTCHA:"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Aby używać reCAPTCHA, musisz uzyskać klucz API z"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Poniżej podaj swoje ustawienia wiadomości:"
+
+#: class.cscf_settings.php:392
+msgid "Light"
+msgstr "Jasny"
+
+#: class.cscf_settings.php:394
+msgid "Dark"
+msgstr "Ciemny"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Imię i nazwisko:"
+
+#: views/contact-form.view.php:37
+msgid "Your Name"
+msgstr "Twoje imię i nazwisko"
+
+#: views/contact-form.view.php:54
+msgid "Email Address:"
+msgstr "Adres e-mail:"
+
+#: views/contact-form.view.php:67
+msgid "Your Email Address"
+msgstr "Twój adres e-mail"
+
+#: views/contact-form.view.php:83
+msgid "Confirm Email Address:"
+msgstr "Potwierdź adres e-mail:"
+
+#: views/contact-form.view.php:92 views/contact-form.view.php:94
+msgid "Please enter the same email address again."
+msgstr "Ponownie wpisz swój adres e-mail"
+
+#: views/contact-form.view.php:97
+msgid "Confirm Your Email Address"
+msgstr "Potwierdź swój adres e-mail"
+
+#: views/contact-form.view.php:114
+msgid "Message:"
+msgstr "Wiadomość:"
+
+#: views/contact-form.view.php:121
+msgid "Please give a message."
+msgstr "Wpisz wiadomość."
+
+#: views/contact-form.view.php:123
+msgid "Your Message"
+msgstr "Twoja wiadomość"
+
+#: views/contact-form.view.php:139
+msgid "Send me a copy:"
+msgstr "Wyślij mi kopię:"
+
+#: views/contact-form.view.php:201
+msgid "Send Message"
+msgstr "Wyślij wiadomość"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Przepraszamy, wystąpił błąd i wiadomość nie została wysłana."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Czyste i proste Formularz kontaktowy"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Czysty i prosty formularz kontaktowy z Google i Twitter Bootstrap reCAPTCHA "
+"znaczników."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
+
+#~ msgid "Sorry the code wasn't entered correctly please try again."
+#~ msgstr ""
+#~ "Przepraszamy, kod nie został wprowadzony poprawnie. Spróbuj ponownie."
+
+#~ msgid "Red"
+#~ msgstr "Czerwony"
+
+#~ msgid "White"
+#~ msgstr "Biały"
+
+#~ msgid "Blackglass"
+#~ msgstr "Ciemne szkło"
+
+#~ msgid "Clean"
+#~ msgstr "Czysty"
+
+#~ msgid "View "
+#~ msgstr "Widok"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_BR.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_BR.mo
new file mode 100644
index 0000000..88e0bdf
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_BR.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_BR.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_BR.po
new file mode 100644
index 0000000..7653d7d
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_BR.po
@@ -0,0 +1,264 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas\n"
+"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-02 18:53-0000\n"
+"Last-Translator: Ricardo Santos aka BogasoBogolha \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.5\n"
+
+#: class.cff.php:90
+msgid "Settings"
+msgstr "Configurações"
+
+#: class.cff_contact.php:55
+msgid "Sorry the email addresses do not match."
+msgstr "Desculpe, os endereços de e-mail não coincidem."
+
+#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Por favor, indique o seu endereço de e-mail."
+
+#: class.cff_contact.php:63
+msgid "Please confirm your email address."
+msgstr "Por favor, confirme o seu endereço de e-mail."
+
+#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Por favor, dê o seu nome."
+
+#: class.cff_contact.php:71
+msgid "Please enter a message."
+msgstr "Por favor insira uma mensagem."
+
+#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Por favor insira um endereço de e-mail válido."
+
+#: class.cff_contact.php:83
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Desculpe, o código não foi inserido corretamente, por favor tente novamente."
+
+#: class.cff_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Mensagem enviada."
+
+#: class.cff_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Obrigado pela sua mensagem, entraremos em contato muito em breve."
+
+#: class.cff_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Por favor, insira os seus dados de contacto e uma curta mensagem abaixo e "
+"vou tentar responder à sua consulta o mais breve possível."
+
+#: class.cff_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "- Inquérito Web "
+
+#: class.cff_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr " Configurações do Formulário de Contacto Clean and Simple"
+
+#: class.cff_settings.php:43
+msgid "You are using version"
+msgstr "Está a utilizar a versão"
+
+#: class.cff_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Se achar este plugin útil, por favor considere"
+
+#: class.cff_settings.php:47
+msgid "leaving a review"
+msgstr "deixar um comentário"
+
+#: class.cff_settings.php:49
+msgid "Thank you!"
+msgstr "Obrigado!"
+
+#: class.cff_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "Configurações ReCAPTCHA"
+
+#: class.cff_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Utilize reCAPTCHA:"
+
+#: class.cff_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "Tema do reCAPTCHA :"
+
+#: class.cff_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "Chave Pública reCAPTCHA :"
+
+#: class.cff_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "Chave Privada reCAPTCHA :"
+
+#: class.cff_settings.php:100
+msgid "Message Settings"
+msgstr "Configurações de mensagens"
+
+#: class.cff_settings.php:104
+msgid "Recipient Email :"
+msgstr "E-mail do Destinatário:"
+
+#: class.cff_settings.php:110
+msgid "Email Subject :"
+msgstr "Assunto do E-mail :"
+
+#: class.cff_settings.php:116
+msgid "Message :"
+msgstr "Mensagem :"
+
+#: class.cff_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Título da Mensagem Enviada :"
+
+#: class.cff_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Conteúdo da Mensagem Enviada :"
+
+#: class.cff_settings.php:134
+msgid "Styling and Validation"
+msgstr "Estilos e Validação"
+
+#: class.cff_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Use o tema de estilo do plugin por defeito (em alternativa, desseleccione "
+"para utilizar o estilo do seu tema):"
+
+#: class.cff_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Use a validação do lado do cliente (AJAX) :"
+
+#: class.cff_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Introduza os seus dados reCAPTCHA abaixo :"
+
+#: class.cff_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Para usar o reCAPTCHA deve obter uma chave API do"
+
+#: class.cff_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Introduza as configurações da sua mensagem abaixo :"
+
+#: class.cff_settings.php:274
+msgid "Red"
+msgstr "Vermelho"
+
+#: class.cff_settings.php:275
+msgid "White"
+msgstr "Branco"
+
+#: class.cff_settings.php:276
+msgid "Blackglass"
+msgstr "Vidro negro"
+
+#: class.cff_settings.php:277
+msgid "Clean"
+msgstr "Limpo"
+
+#: views/contact-form-with-recaptcha.view.php:27
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Endereço de E-mail:"
+
+#: views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "O seu endereço de e-mail"
+
+#: views/contact-form-with-recaptcha.view.php:37
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Confirme o endereço de e-mail:"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Por favor, insira o mesmo endereço de e-mail novamente."
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Confirme o seu endereço e-mail"
+
+#: views/contact-form-with-recaptcha.view.php:47
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Nome:"
+
+#: views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "O Seu Nome"
+
+#: views/contact-form-with-recaptcha.view.php:57
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Mensagem:"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Por favor, deixe uma mensagem."
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "A Sua Mensagem"
+
+#: views/contact-form-with-recaptcha.view.php:75
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Enviar Mensagem"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Desculpe, houve um problema e a sua mensagem não foi enviada."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Formulário de Contacto Clean and Simple"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Um formulário de contacto limpo e simples, com reCAPTCHA Google e marcação "
+"Twitter Bootstrap ."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_PT.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_PT.mo
new file mode 100644
index 0000000..88e0bdf
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_PT.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_PT.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_PT.po
new file mode 100644
index 0000000..7653d7d
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-pt_PT.po
@@ -0,0 +1,264 @@
+# Copyright (C) 2013 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas\n"
+"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2013-07-02 18:53-0000\n"
+"Last-Translator: Ricardo Santos aka BogasoBogolha \n"
+"Language-Team: LANGUAGE \n"
+"X-Generator: Poedit 1.5.5\n"
+
+#: class.cff.php:90
+msgid "Settings"
+msgstr "Configurações"
+
+#: class.cff_contact.php:55
+msgid "Sorry the email addresses do not match."
+msgstr "Desculpe, os endereços de e-mail não coincidem."
+
+#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Por favor, indique o seu endereço de e-mail."
+
+#: class.cff_contact.php:63
+msgid "Please confirm your email address."
+msgstr "Por favor, confirme o seu endereço de e-mail."
+
+#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Por favor, dê o seu nome."
+
+#: class.cff_contact.php:71
+msgid "Please enter a message."
+msgstr "Por favor insira uma mensagem."
+
+#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Por favor insira um endereço de e-mail válido."
+
+#: class.cff_contact.php:83
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr ""
+"Desculpe, o código não foi inserido corretamente, por favor tente novamente."
+
+#: class.cff_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Mensagem enviada."
+
+#: class.cff_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Obrigado pela sua mensagem, entraremos em contato muito em breve."
+
+#: class.cff_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Por favor, insira os seus dados de contacto e uma curta mensagem abaixo e "
+"vou tentar responder à sua consulta o mais breve possível."
+
+#: class.cff_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "- Inquérito Web "
+
+#: class.cff_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr " Configurações do Formulário de Contacto Clean and Simple"
+
+#: class.cff_settings.php:43
+msgid "You are using version"
+msgstr "Está a utilizar a versão"
+
+#: class.cff_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Se achar este plugin útil, por favor considere"
+
+#: class.cff_settings.php:47
+msgid "leaving a review"
+msgstr "deixar um comentário"
+
+#: class.cff_settings.php:49
+msgid "Thank you!"
+msgstr "Obrigado!"
+
+#: class.cff_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "Configurações ReCAPTCHA"
+
+#: class.cff_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Utilize reCAPTCHA:"
+
+#: class.cff_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "Tema do reCAPTCHA :"
+
+#: class.cff_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "Chave Pública reCAPTCHA :"
+
+#: class.cff_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "Chave Privada reCAPTCHA :"
+
+#: class.cff_settings.php:100
+msgid "Message Settings"
+msgstr "Configurações de mensagens"
+
+#: class.cff_settings.php:104
+msgid "Recipient Email :"
+msgstr "E-mail do Destinatário:"
+
+#: class.cff_settings.php:110
+msgid "Email Subject :"
+msgstr "Assunto do E-mail :"
+
+#: class.cff_settings.php:116
+msgid "Message :"
+msgstr "Mensagem :"
+
+#: class.cff_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Título da Mensagem Enviada :"
+
+#: class.cff_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Conteúdo da Mensagem Enviada :"
+
+#: class.cff_settings.php:134
+msgid "Styling and Validation"
+msgstr "Estilos e Validação"
+
+#: class.cff_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Use o tema de estilo do plugin por defeito (em alternativa, desseleccione "
+"para utilizar o estilo do seu tema):"
+
+#: class.cff_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Use a validação do lado do cliente (AJAX) :"
+
+#: class.cff_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Introduza os seus dados reCAPTCHA abaixo :"
+
+#: class.cff_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Para usar o reCAPTCHA deve obter uma chave API do"
+
+#: class.cff_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Introduza as configurações da sua mensagem abaixo :"
+
+#: class.cff_settings.php:274
+msgid "Red"
+msgstr "Vermelho"
+
+#: class.cff_settings.php:275
+msgid "White"
+msgstr "Branco"
+
+#: class.cff_settings.php:276
+msgid "Blackglass"
+msgstr "Vidro negro"
+
+#: class.cff_settings.php:277
+msgid "Clean"
+msgstr "Limpo"
+
+#: views/contact-form-with-recaptcha.view.php:27
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Endereço de E-mail:"
+
+#: views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "O seu endereço de e-mail"
+
+#: views/contact-form-with-recaptcha.view.php:37
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Confirme o endereço de e-mail:"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Por favor, insira o mesmo endereço de e-mail novamente."
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Confirme o seu endereço e-mail"
+
+#: views/contact-form-with-recaptcha.view.php:47
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Nome:"
+
+#: views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "O Seu Nome"
+
+#: views/contact-form-with-recaptcha.view.php:57
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Mensagem:"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Por favor, deixe uma mensagem."
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "A Sua Mensagem"
+
+#: views/contact-form-with-recaptcha.view.php:75
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Enviar Mensagem"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Desculpe, houve um problema e a sua mensagem não foi enviada."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Formulário de Contacto Clean and Simple"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Um formulário de contacto limpo e simples, com reCAPTCHA Google e marcação "
+"Twitter Bootstrap ."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ro_RO.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ro_RO.mo
new file mode 100644
index 0000000..5f17508
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ro_RO.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ro_RO.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ro_RO.po
new file mode 100644
index 0000000..942b1e6
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ro_RO.po
@@ -0,0 +1,304 @@
+# Copyright (C) 2015 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.5.0\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clean-and-simple-contact-form-by-"
+"meg-nicholas\n"
+"POT-Creation-Date: 2015-09-02 15:44+0300\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-09-02 16:33+0300\n"
+"Language-Team: \n"
+"X-Generator: Poedit 1.8.4\n"
+"Last-Translator: \n"
+"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
+"Language: ro\n"
+
+#: class.cscf.php:157
+msgid "Settings"
+msgstr "Setări"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Ne pare rău adresele de email nu se potrivesc"
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:63
+msgid "Please give your email address."
+msgstr "Introdu adresa de e-mail"
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Confirma adresa de e-mail"
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Introdu numele"
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Introdu mesajul"
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:64 views/contact-form.view.php:93
+msgid "Please enter a valid email address."
+msgstr "Introdu o adresă de e-mail validă"
+
+#: class.cscf_contact.php:97
+msgid "Please solve the recaptcha to continue."
+msgstr "Introdu codul reCAPTCHA pentru a continua"
+
+#: class.cscf_contact.php:160
+msgid "Here is a copy of your message :"
+msgstr "Aici este o copie a mesajului tau"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Mesaj trimis"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Multumim pentru mesaj, vom reveni cu un raspuns in cel mai scurt timp."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try to answer your "
+"query as soon as possible."
+msgstr ""
+"Introdu detaliile de contact si un mesaj. Vom reveni cu un raspuns in cel mai scurt timp "
+"posibil."
+
+#: class.cscf_pluginsettings.php:94
+msgid " - Web Enquiry"
+msgstr "- solicitare"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Setari formular de contact"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Formular de contact"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Setari formular de contact “Clear and Simple”"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Doneaza $10, $20 sau $50!"
+
+#: class.cscf_settings.php:50
+msgid "If you like this plugin, please donate to support development and maintenance of:"
+msgstr ""
+"Daca iti place acest plugin poti face o donatie pentru intretinerea si dezvoltarea lui:"
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Formular de contact “Clear and simple”"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Folosesti versiunea"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Daca gasesti acest plugin folositor"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "lasa un comentariu"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Multumesc!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the shortcode "
+"[cscf-contact-form] instead."
+msgstr ""
+"ATENTIE: Ai activat formularul de contact JetPack, dezactiveaza-l sau foloseste codul [cscf-"
+"contact-form]."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Citeste mai mult"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr "Atentie: pentru a adauga formularul de contact la pagina ta, adauga textul"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "in pagina sau postarea ta."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "Setari ReCAPTCHA"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Foloseste ReCAPTCHA:"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "Tema ReCAPTCHA:"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "Cheie publica ReCAPTCHA:"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "Cheie privata ReCAPTCHA:"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Setari mesaj"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "E-mail destinatar:"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Confirma adresa de e-mail:"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Nou*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Permite utilizatorilor sa isi trimita o copie:"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Suprascrie adresa “De la:”"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "Adresa e-mail “De la”:"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Subiect e-mail:"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Mesaj:"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Antet mesaj trimis:"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Continut mesaj trimis:"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Stiluri"
+
+#: class.cscf_settings.php:205
+msgid "Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :"
+msgstr ""
+"Utilizeaza stilurile din oficiu ale pluginului (debifeaza daca doresti sa folosesti "
+"stilurile temei tale):"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Utilizeaza side-client-validation (AJAX):"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Introdu setarile codului ReCAPTCHA mai jos:"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Pentru a folosi codul ReCAPTCHA ai nevoie de o cheie API de la"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Introdu setarile mesajului mai jos:"
+
+#: class.cscf_settings.php:392
+msgid "Light"
+msgstr "Luminos"
+
+#: class.cscf_settings.php:394
+msgid "Dark"
+msgstr "Intunecat"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Nume"
+
+#: views/contact-form.view.php:37
+msgid "Your Name"
+msgstr "Numele tau"
+
+#: views/contact-form.view.php:54
+msgid "Email Address:"
+msgstr "E-mail"
+
+#: views/contact-form.view.php:67
+msgid "Your Email Address"
+msgstr "Adresa ta de e-mail"
+
+#: views/contact-form.view.php:83
+msgid "Confirm Email Address:"
+msgstr "Confirma adresa de e-mail"
+
+#: views/contact-form.view.php:92 views/contact-form.view.php:94
+msgid "Please enter the same email address again."
+msgstr "Introdu aceeasi adresa de e-mail"
+
+#: views/contact-form.view.php:97
+msgid "Confirm Your Email Address"
+msgstr "Confirma adresa de e-mail"
+
+#: views/contact-form.view.php:114
+msgid "Message:"
+msgstr "Mesaj"
+
+#: views/contact-form.view.php:121
+msgid "Please give a message."
+msgstr "Introdu mesajul"
+
+#: views/contact-form.view.php:123
+msgid "Your Message"
+msgstr "Mesajul tau"
+
+#: views/contact-form.view.php:139
+msgid "Send me a copy:"
+msgstr "Trimite-mi o copie"
+
+#: views/contact-form.view.php:201
+msgid "Send Message"
+msgstr "Trimite mesajul"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Ne pare rau, mesajul nu a fost trimis."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid "A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr ""
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ru_RU.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ru_RU.mo
new file mode 100644
index 0000000..7aaff6c
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ru_RU.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ru_RU.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ru_RU.po
new file mode 100644
index 0000000..b8bdd2d
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-ru_RU.po
@@ -0,0 +1,297 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form v4.1.6\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: \n"
+"PO-Revision-Date: 2013-09-08 18:29:31+0000\n"
+"Last-Translator: guidenumber \n"
+"Language-Team: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%100/10==1 ? 2 : n%10==1 ? 0 : (n+9)%10>3 ? 2 : 1;\n"
+"X-Generator: CSL v1.x\n"
+"X-Poedit-Language: Russian\n"
+"X-Poedit-Country: RUSSIA\n"
+"X-Poedit-SourceCharset: utf-8\n"
+"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;\n"
+"X-Poedit-Basepath: ../\n"
+"X-Poedit-Bookmarks: \n"
+"X-Poedit-SearchPath-0: .\n"
+"X-Textdomain-Support: yes"
+
+#: class.cscf.php:106
+#@ contact-form
+msgid "Settings"
+msgstr ""
+
+#: class.cscf_contact.php:54
+#@ cleanandsimple
+msgid "Sorry the email addresses do not match."
+msgstr "Извините, адреса почты не совпадают."
+
+#: class.cscf_contact.php:58
+#: views/contact-form.view.php:29
+#@ cleanandsimple
+msgid "Please give your email address."
+msgstr "Пожалуйста, введите адрес вашей почты."
+
+#: class.cscf_contact.php:62
+#@ cleanandsimple
+msgid "Please confirm your email address."
+msgstr "Пожалуйста, подтвердите адрес вашей почты."
+
+#: class.cscf_contact.php:66
+#: views/contact-form.view.php:62
+#@ cleanandsimple
+msgid "Please give your name."
+msgstr "Пожалуйста, введите ваше имя."
+
+#: class.cscf_contact.php:70
+#@ cleanandsimple
+msgid "Please enter a message."
+msgstr "Пожалуйста, введите ваше сообщение."
+
+#: class.cscf_contact.php:74
+#: views/contact-form.view.php:30
+#: views/contact-form.view.php:47
+#@ cleanandsimple
+msgid "Please enter a valid email address."
+msgstr "Пожалуйста, используйте настоящий адрес почты."
+
+#: class.cscf_contact.php:82
+#@ cleanandsimple
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Код был введен неправильно. Пожалуйста, попробуйте снова."
+
+#: class.cscf_pluginsettings.php:40
+#@ cleanandsimple
+msgid "Message Sent"
+msgstr "Сообщение отправлено"
+
+#: class.cscf_pluginsettings.php:47
+#@ cleanandsimple
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Спасибо за ваше обращение. Мы с вами свяжемся."
+
+#: class.cscf_pluginsettings.php:54
+#@ cleanandsimple
+msgid "Please enter your contact details and a short message below and I will try to answer your query as soon as possible."
+msgstr "Пожалуйста, введите ваши контактные данные и ваше сообщение в форму и мы попытаемся ответить вам как можно скорее."
+
+#: class.cscf_pluginsettings.php:83
+#@ cleanandsimple
+msgid " - Web Enquiry"
+msgstr " - Веб-запрос"
+
+#: class.cscf_settings.php:41
+#@ cleanandsimple
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Простая и ясная форма обратной связи. Настройки"
+
+#: class.cscf_settings.php:43
+#@ cleanandsimple
+msgid "You are using version"
+msgstr "Вы используете версию"
+
+#: class.cscf_settings.php:44
+#@ cleanandsimple
+msgid "If you find this plugin useful please consider"
+msgstr "Если вы считаете этот плагин полезным, то мы будем рады"
+
+#: class.cscf_settings.php:47
+#@ cleanandsimple
+msgid "leaving a review"
+msgstr "вашему отзыву"
+
+#: class.cscf_settings.php:49
+#@ cleanandsimple
+msgid "Thank you!"
+msgstr "Спасибо!"
+
+#: class.cscf_settings.php:54
+#@ cleanandsimple
+msgid "NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the shortcode [cscf-contact-form] instead."
+msgstr "ВНИМАНИЕ! У вас установлен плагин JetPack's Contact Form. Пожалуйста, деактивируйте его, чтобы избежать ошибок в совместимости, или используйте [cscf-contact-form] вместо [contact-form]."
+
+#: class.cscf_settings.php:55
+#@ default
+msgid "Read More"
+msgstr ""
+
+#: class.cscf_settings.php:87
+#@ cleanandsimple
+msgid "ReCAPTCHA Settings"
+msgstr "Настройки ReCAPTCHA"
+
+#: class.cscf_settings.php:95
+#@ cleanandsimple
+msgid "Use reCAPTCHA :"
+msgstr "Использовать ReCAPTCHA:"
+
+#: class.cscf_settings.php:101
+#@ cleanandsimple
+msgid "reCAPTCHA Theme :"
+msgstr "Тема оформления ReCAPTCHA:"
+
+#: class.cscf_settings.php:107
+#@ cleanandsimple
+msgid "reCAPTCHA Public Key :"
+msgstr "Публичный ключ reCAPTCHA (Public Key):"
+
+#: class.cscf_settings.php:113
+#@ cleanandsimple
+msgid "reCAPTCHA Private Key :"
+msgstr "Секретный ключ reCAPTCHA (Private Key):"
+
+#: class.cscf_settings.php:119
+#@ cleanandsimple
+msgid "Message Settings"
+msgstr "Настройки формы"
+
+#: class.cscf_settings.php:123
+#@ cleanandsimple
+msgid "Recipient Email :"
+msgstr "Почта получателя:"
+
+#: class.cscf_settings.php:129
+#@ cleanandsimple
+msgid "Override 'From' Address :"
+msgstr "Переопределить адрес отправителя (From):"
+
+#: class.cscf_settings.php:135
+#@ cleanandsimple
+msgid "'From' Email Address :"
+msgstr "Адрес отправителя (From):"
+
+#: class.cscf_settings.php:141
+#@ cleanandsimple
+msgid "Email Subject :"
+msgstr "Тема письма:"
+
+#: class.cscf_settings.php:147
+#@ cleanandsimple
+msgid "Message :"
+msgstr "Сообщение:"
+
+#: class.cscf_settings.php:153
+#@ cleanandsimple
+msgid "Message Sent Heading :"
+msgstr "Заголовок подтверждения успешной отправки сообщения:"
+
+#: class.cscf_settings.php:159
+#@ cleanandsimple
+msgid "Message Sent Content :"
+msgstr "Текст подтверждения успешной отправки сообщения:"
+
+#: class.cscf_settings.php:165
+#@ cleanandsimple
+msgid "Styling and Validation"
+msgstr "Стиль и валидация"
+
+#: class.cscf_settings.php:169
+#@ cleanandsimple
+msgid "Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :"
+msgstr "Использовать стили оформления поставляемые с плагином:"
+
+#: class.cscf_settings.php:175
+#@ cleanandsimple
+msgid "Use client side validation (AJAX) :"
+msgstr "Использовать валидацию на клиенте (AJAX):"
+
+#: class.cscf_settings.php:262
+#@ cleanandsimple
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Введите настройки для использования reCAPTCHA:"
+
+#: class.cscf_settings.php:263
+#@ cleanandsimple
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Для того чтобы использовать reCAPTCHA получите API ключи тут: "
+
+#: class.cscf_settings.php:268
+#@ cleanandsimple
+msgid "Enter your message settings below :"
+msgstr "Настройки для формы обратной связи:"
+
+#: class.cscf_settings.php:328
+#@ cleanandsimple
+msgid "Red"
+msgstr "Красный"
+
+#: class.cscf_settings.php:329
+#@ cleanandsimple
+msgid "White"
+msgstr "Белый"
+
+#: class.cscf_settings.php:330
+#@ cleanandsimple
+msgid "Blackglass"
+msgstr "Чёрное стекло"
+
+#: class.cscf_settings.php:331
+#@ cleanandsimple
+msgid "Clean"
+msgstr "Чистый"
+
+#: views/contact-form.view.php:24
+#@ cleanandsimple
+msgid "Email Address:"
+msgstr "Адрес почты:"
+
+#: views/contact-form.view.php:33
+#@ cleanandsimple
+msgid "Your Email Address"
+msgstr "Ваш адрес почты"
+
+#: views/contact-form.view.php:40
+#@ cleanandsimple
+msgid "Confirm Email Address:"
+msgstr "Подтвердите адрес почты"
+
+#: views/contact-form.view.php:46
+#: views/contact-form.view.php:48
+#@ cleanandsimple
+msgid "Please enter the same email address again."
+msgstr "Введите тот-же адрес почты еще раз."
+
+#: views/contact-form.view.php:51
+#@ cleanandsimple
+msgid "Confirm Your Email Address"
+msgstr "Подтвердите адрес вашей почты"
+
+#: views/contact-form.view.php:58
+#@ cleanandsimple
+msgid "Name:"
+msgstr "Имя:"
+
+#: views/contact-form.view.php:65
+#@ cleanandsimple
+msgid "Your Name"
+msgstr "Ваше имя"
+
+#: views/contact-form.view.php:72
+#@ cleanandsimple
+msgid "Message:"
+msgstr "Сообщение:"
+
+#: views/contact-form.view.php:76
+#@ cleanandsimple
+msgid "Please give a message."
+msgstr "Пожалуйста, введи текст сообщения."
+
+#: views/contact-form.view.php:78
+#@ cleanandsimple
+msgid "Your Message"
+msgstr "Ваше сообщение"
+
+#: views/contact-form.view.php:101
+#@ cleanandsimple
+msgid "Send Message"
+msgstr "Отправить"
+
+#: views/message-not-sent.view.php:1
+#@ cleanandsimple
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Простите, но случилась неизвестная ошибка и ваше письмо не было отправлено."
+
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sk_SK.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sk_SK.mo
new file mode 100644
index 0000000..495576d
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sk_SK.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sk_SK.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sk_SK.po
new file mode 100644
index 0000000..fa80c7a
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sk_SK.po
@@ -0,0 +1,264 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: clean-and-simple-contact-form-by-meg-nicholas.4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas\n"
+"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
+"PO-Revision-Date: 2013-07-28 02:08+0100\n"
+"Last-Translator: \n"
+"Language-Team: faktorzwei.net \n"
+"Language: de_DE informal\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.4\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
+"X-Poedit-Basepath: .\n"
+
+#: class.cff.php:90
+msgid "Settings"
+msgstr "Nastavenia"
+
+#: class.cff_contact.php:55
+msgid "Sorry the email addresses do not match."
+msgstr "Prepáčte, ale emailová adresa nesedí."
+
+#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Prosím, vložte Vašu emailovú adresu"
+
+#: class.cff_contact.php:63
+msgid "Please confirm your email address."
+msgstr "Prosím, potvrďte Vašu emailovú adresu"
+
+#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Prosím, vložte Vaše meno"
+
+#: class.cff_contact.php:71
+msgid "Please enter a message."
+msgstr "Prosím, vložte Vašu správu"
+
+#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Prosím, vložte validnú emailovú adresu"
+
+#: class.cff_contact.php:83
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Prepáčte, ale kód nebol opísaný správne, skúste znovu"
+
+#: class.cff_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Správa poslaná"
+
+#: class.cff_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Ďakujem za Vašu správu, ozvem sa Vám čo najskôr"
+
+#: class.cff_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Prosím vložte vaše kontaktné detaily a krátku správu nižšie a ja sa vám "
+"pokúsim odpovedať čo najskôr."
+
+#: class.cff_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr "- Webová otázka"
+
+#: class.cff_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Čistý a jednoduchý kontaktný formulár"
+
+#: class.cff_settings.php:43
+msgid "You are using version"
+msgstr "Používate verziu"
+
+#: class.cff_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Ak si myslíte, že tento plugin je užitočný, prosím zvážte"
+
+#: class.cff_settings.php:47
+msgid "leaving a review"
+msgstr "zanechať hodnotenie"
+
+#: class.cff_settings.php:49
+msgid "Thank you!"
+msgstr "Ďakujem!"
+
+#: class.cff_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA nastavenia"
+
+#: class.cff_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Použiť reCAPTCHA :"
+
+#: class.cff_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA šablóna :"
+
+#: class.cff_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key :"
+
+#: class.cff_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key :"
+
+#: class.cff_settings.php:100
+msgid "Message Settings"
+msgstr "Nastavenie správy"
+
+#: class.cff_settings.php:104
+msgid "Recipient Email :"
+msgstr "Adresa prijímateľa:"
+
+#: class.cff_settings.php:110
+msgid "Email Subject :"
+msgstr "Predmet správy"
+
+#: class.cff_settings.php:116
+msgid "Message :"
+msgstr "Správa"
+
+#: class.cff_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Nadpis správy:"
+
+#: class.cff_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Obsah správy:"
+
+#: class.cff_settings.php:134
+msgid "Styling and Validation"
+msgstr "Štýlovanie a validácia"
+
+#: class.cff_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr "Použiť východzí stylesheet "
+
+#: class.cff_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Client side validácia (AJAX):"
+
+#: class.cff_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Vložte vaše reCAPTCHA nastavenia nižšie:"
+
+#: class.cff_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Pre použitie reCAPTCHA prosím vložte API key "
+
+#: class.cff_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Vložte vaše nastavenie správy nižšie:"
+
+#: class.cff_settings.php:274
+msgid "Red"
+msgstr "Červená"
+
+#: class.cff_settings.php:275
+msgid "White"
+msgstr "Biela"
+
+#: class.cff_settings.php:276
+msgid "Blackglass"
+msgstr "Čierne sklo"
+
+#: class.cff_settings.php:277
+msgid "Clean"
+msgstr "Čistá"
+
+#: views/contact-form-with-recaptcha.view.php:27
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Emailová adresa:"
+
+#: views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Vaša emailová adresa"
+
+#: views/contact-form-with-recaptcha.view.php:37
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Potvrďte emailovú adresu:"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Prosím vložte rovnakú emailovú adresu znovu."
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Potvrďte vašu emailovú adresu"
+
+#: views/contact-form-with-recaptcha.view.php:47
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Meno"
+
+#: views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Vaše meno"
+
+#: views/contact-form-with-recaptcha.view.php:57
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Správa:"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Prosím vložte správu."
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Vaša správa"
+
+#: views/contact-form-with-recaptcha.view.php:75
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Odoslať správu"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Prepáčte, ale nastal problém s odoslaním vašej správy."
+
+# Plugin Name des plugin/theme
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+# Beschreibung des plugin/theme
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Ein sauberes und einfaches Kontaktformular mit Google reCAPTCHA und Twitter "
+"Bootstrap markup."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sl_SI.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sl_SI.mo
new file mode 100644
index 0000000..7ecf183
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sl_SI.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sl_SI.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sl_SI.po
new file mode 100644
index 0000000..41c3302
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sl_SI.po
@@ -0,0 +1,328 @@
+# Copyright (C) 2014 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.4.0\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2014-09-24 08:46:00+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-03-15 12:43+0100\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: PC PRO \n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
+"Language: sl\n"
+"X-Generator: Poedit 1.6.5\n"
+
+#: class.cscf.php:151
+msgid "Settings"
+msgstr "Nastavitve"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Oprostite e-naslov se ne ujema."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:54
+msgid "Please give your email address."
+msgstr "Prosimo, vpišite e-naslov."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Prosimo potrdite vaš e-naslov."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:32
+msgid "Please give your name."
+msgstr "Prosimo vnesite vaše ime."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Prosimo vnesite sporočilo."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:55
+#: views/contact-form.view.php:79
+msgid "Please enter a valid email address."
+msgstr "Prosimo vnesite veljaven e-naslov."
+
+#: class.cscf_contact.php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Oprostite, znaki niso bili vnešeni pravilno, prosimo poskusite znova."
+
+#: class.cscf_contact.php:157
+msgid "Here is a copy of your message :"
+msgstr "Tukaj je kopija vašega sporočila:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Sporočilo poslano"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+"Hvala, za vaše sporočilo. Kontaktirali vas bomo v najkrajšem možnem času."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Prosim vnesite vaše kontaktne podatke in kratko sporočilo. Poskušal vam bom "
+"odgovoriti v najkrajšem možnem času."
+
+#: class.cscf_pluginsettings.php:93
+msgid " - Web Enquiry"
+msgstr "- Spletni vprašalnik"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Nastavitve kontaktnega obrazca"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Kontaktni obrazec"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Čist in enostaven kontaktni obrazec"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Darujte $10, $20 ali $50!"
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Če vam ja ta vtičnik všeč, prosim donirajte za nadaljnji razvoj in "
+"vzdrževanje: "
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Čistega in enostavnega kontaktnega obrazca!"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Uporabljate različico"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Če menite, da je ta vtičnik uporaben, prosim"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "Pustite oceno"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Hvala!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"OBVESTILO: Imate omogočen JetPack's kontaktni obrazec, prosimo, da ga "
+"izključite ali pa uporabite kratko kodo [cscf-contact-form]."
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Preberi več"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+"Obvestilo: Če želite dodati kontaktni obrazec na vašo stran, prosim dodajte "
+"tekst"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "v vaš prispevek ali stran."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA Nastavitve"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Uporabi reCAPTCHA :"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA Predloga: "
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA : Javni ključ :"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Privatni ključ :"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Nastavitve sporočil"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "E-naslovi prejemnika: "
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Potrdite e-naslov :"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Novo*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Omogočite uporabnikom, da si pošljejo kopijo sporočila :"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Zaobidi 'Od' naslova :"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "'Od' e-naslov :"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Zadeva : "
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Sporočilo :"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Poslano sporočilo naslov :"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Sporočilo poslano vsebina :"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Oblikovanje in validacija"
+
+#: class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Uporabi privzeto obliko-css vtičnika (odzanči za uporabo lastne oblikovne "
+"datoteke css) :"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Uporabi validacijo (AJAX) :"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Vnesi vaše reCAPTCHA nastavitve spodaj :"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Za uporabo reCAPTCHA morate pridobiti API ključ od "
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Vnesite vaše nastavitve sporočila spodaj :"
+
+#: class.cscf_settings.php:392
+msgid "Red"
+msgstr "Rdeča"
+
+#: class.cscf_settings.php:394
+msgid "White"
+msgstr "Bela"
+
+#: class.cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Črno steklo"
+
+#: class.cscf_settings.php:398
+msgid "Clean"
+msgstr "Čista"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Ime: "
+
+#: views/contact-form.view.php:35
+msgid "Your Name"
+msgstr "Vaše ime"
+
+#: views/contact-form.view.php:46
+msgid "Email Address:"
+msgstr "E-poštni naslov:"
+
+#: views/contact-form.view.php:58
+msgid "Your Email Address"
+msgstr "Vaš e-poštni naslov"
+
+#: views/contact-form.view.php:69
+msgid "Confirm Email Address:"
+msgstr "Potrdi e-poštni naslov:"
+
+#: views/contact-form.view.php:78 views/contact-form.view.php:80
+msgid "Please enter the same email address again."
+msgstr "Prosim vnesite e-naslov še enkrat."
+
+#: views/contact-form.view.php:83
+msgid "Confirm Your Email Address"
+msgstr "Potrdite vaš e-naslov"
+
+#: views/contact-form.view.php:95
+msgid "Message:"
+msgstr "Sporočilo"
+
+#: views/contact-form.view.php:102
+msgid "Please give a message."
+msgstr "Prosim vnesite sporočilo."
+
+#: views/contact-form.view.php:104
+msgid "Your Message"
+msgstr "Vaše sporočilo"
+
+#: views/contact-form.view.php:114
+msgid "Send me a copy:"
+msgstr "Pošlji mi kopijo:"
+
+#: views/contact-form.view.php:142
+msgid "Send Message"
+msgstr "Pošlji sporočilo"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Oprostite, prišlo je do težav in vašega sporočila ni bilo poslano."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Čist in enostaven kontaktni obrazec"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Čist in enostaven kontaktni obrazec z Google reCAPTCHA in Twitter Bootstrap "
+"označevanjem."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sr_RS.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sr_RS.mo
new file mode 100644
index 0000000..c636850
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sr_RS.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sr_RS.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sr_RS.po
new file mode 100644
index 0000000..79cae16
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sr_RS.po
@@ -0,0 +1,314 @@
+# Copyright (C) 2014 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Cleand and Simple Contact Form Indonesian\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-by-meg-"
+"nicholas\n"
+"POT-Creation-Date: 2014-09-24 08:46:00+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2015-02-11 10:59+0100\n"
+"Language-Team: Beny Hirmansyah \n"
+"X-Generator: Poedit 1.7.4\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"Language: id_ID\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"Last-Translator: \n"
+
+#: class.cscf.php:151
+msgid "Settings"
+msgstr "Podešavanja"
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Mail adrese se ne podudaraju."
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:54
+msgid "Please give your email address."
+msgstr "Navedite svoju mail adresu."
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Potvrdite svoju mail adresu."
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:32
+msgid "Please give your name."
+msgstr "Navedite svoje ime."
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Unesite poruku."
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:55 views/contact-form.view.php:79
+msgid "Please enter a valid email address."
+msgstr "Unesite važeću mail adresu."
+
+#: class.cscf_contact.php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Kod nije ispravno unet. Pokušajte ponovo."
+
+#: class.cscf_contact.php:157
+msgid "Here is a copy of your message :"
+msgstr "Ovo je kopija vaše poruke:"
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Poruka poslata"
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Hvala vam za poruku, ubrzo ćemo vam se javiti."
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try to answer your "
+"query as soon as possible."
+msgstr ""
+"U nastavku unesite svoje podatke i kratku poruku, a ja ću se potruditi da vam što pre "
+"odgovorim na pitanje."
+
+#: class.cscf_pluginsettings.php:93
+msgid " - Web Enquiry"
+msgstr "Web upiti"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "Contact Form Podešavanja"
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "Obrazac za kontakt"
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Clean and Simple Contact Form Podešavanja"
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Donirajte $10, $20 ili $50!"
+
+#: class.cscf_settings.php:50
+msgid "If you like this plugin, please donate to support development and maintenance of:"
+msgstr ""
+"Ako vam se sviđa ovaj plugin, molimo vas da donirate kako biste podržali razvoj i održavanje:"
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Clean and Simple Contact Form!"
+
+#: class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Koristite verziju"
+
+#: class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Ako vam je ovaj plugin koristio, razmislite o tome da"
+
+#: class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "napišete komentar"
+
+#: class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Hvala!"
+
+#: class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use the shortcode "
+"[cscf-contact-form] instead."
+msgstr ""
+"NAPOMENA: Aktiviran vam je JetPack's Contact Form. Deaktivirajte ga ili, umesto njega, "
+"koristite shortcode [cscf-contact-form]. "
+
+#: class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Pročitajte više"
+
+#: class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr "Napomena: Da biste svojoj stranici dodali obrazac za kontakt, dodajte tekst"
+
+#: class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "svom postu ili stranici."
+
+#: class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA Podešavanja"
+
+#: class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "Koristite reCAPTCHA :"
+
+#: class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA tema:"
+
+#: class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA javni ključ:"
+
+#: class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA privatni ključ:"
+
+#: class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "Podešavanja poruka"
+
+#: class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Mail-ovi primalaca:"
+
+#: class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "Potvrdite mail adresu:"
+
+#: class.cscf_settings.php:159
+msgid "*New*"
+msgstr "*Novi*"
+
+#: class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Dozvolite korisnicima da sebi pošalju kopiju mail-a:"
+
+#: class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr "Poništite ‘Sa adrese’"
+
+#: class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr "Mail adresa pošiljaoca:"
+
+#: class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "Tema mail-a"
+
+#: class.cscf_settings.php:183
+msgid "Message :"
+msgstr "Poruka"
+
+#: class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Zaglavlje poslate poruke:"
+
+#: class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Sadržaj poslate poruke:"
+
+#: class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Stilizovanje i provera"
+
+#: class.cscf_settings.php:205
+msgid "Use the plugin default stylesheet (un-tick to use your theme style sheet instead) :"
+msgstr ""
+"Koristite podrazumevanu datoteku sa stilovima plugin-a (poništite štikliranje ako umesto "
+"podrazumevane koristite svoju datoteku sa stilovima teme:"
+
+#: class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "Koristite proveru strane klijenta (AJAX) :"
+
+#: class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Dole unesite svoja reCAPTCHA podešavanja:"
+
+#: class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "Da biste koristili reCAPTCHA, morate uzeti API ključ sa:"
+
+#: class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "Dole unesite podešavanja svoje poruke:"
+
+#: class.cscf_settings.php:392
+msgid "Red"
+msgstr "Crveno"
+
+#: class.cscf_settings.php:394
+msgid "White"
+msgstr "Belo"
+
+#: class.cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Zatamnjeno staklo"
+
+#: class.cscf_settings.php:398
+msgid "Clean"
+msgstr "Providno"
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Naziv:"
+
+#: views/contact-form.view.php:35
+msgid "Your Name"
+msgstr "Vaše ime"
+
+#: views/contact-form.view.php:46
+msgid "Email Address:"
+msgstr "Mail adresa"
+
+#: views/contact-form.view.php:58
+msgid "Your Email Address"
+msgstr "Vaša mail adresa"
+
+#: views/contact-form.view.php:69
+msgid "Confirm Email Address:"
+msgstr "Potvrdite mail adresu:"
+
+#: views/contact-form.view.php:78 views/contact-form.view.php:80
+msgid "Please enter the same email address again."
+msgstr "Unesite ponovo istu mail adresu"
+
+#: views/contact-form.view.php:83
+msgid "Confirm Your Email Address"
+msgstr "Potvrdite svoju mail adresu:"
+
+#: views/contact-form.view.php:95
+msgid "Message:"
+msgstr "Poruka:"
+
+#: views/contact-form.view.php:102
+msgid "Please give a message."
+msgstr "Navedite poruku."
+
+#: views/contact-form.view.php:104
+msgid "Your Message"
+msgstr "Vaša poruka"
+
+#: views/contact-form.view.php:114
+msgid "Send me a copy:"
+msgstr "Pošalji mi kopiju:"
+
+#: views/contact-form.view.php:142
+msgid "Send Message"
+msgstr "Pošalji poruku"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Žao nam je. Došlo je do problema i vaša poruka nije poslata."
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Contact Form"
+
+#. Plugin URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr "http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+#. Description of the plugin/theme
+msgid "A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap markup."
+msgstr ""
+"Jednostavan i pregledan obrazac za kontakt sa Google reCAPTCHA i Twitter Bootstrap oznakama."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sv_SE.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sv_SE.mo
new file mode 100644
index 0000000..f226d32
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sv_SE.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sv_SE.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sv_SE.po
new file mode 100644
index 0000000..58ca97d
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-sv_SE.po
@@ -0,0 +1,265 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: clean-and-simple-contact-form-by-meg-nicholas.4.1.1\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/plugins/clean-and-simple-contact-"
+"form-by-meg-nicholas\n"
+"POT-Creation-Date: 2013-06-13 10:12:32+00:00\n"
+"PO-Revision-Date: 2013-07-03 10:48+0100\n"
+"Last-Translator: hassesetter \n"
+"Language-Team: faktorzwei.net \n"
+"Language: de_DE informal\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.5\n"
+"X-Poedit-KeywordsList: _;gettext;gettext_noop\n"
+"X-Poedit-Basepath: .\n"
+
+#: class.cff.php:90
+msgid "Settings"
+msgstr "Inställningar"
+
+#: class.cff_contact.php:55
+msgid "Sorry the email addresses do not match."
+msgstr "Tyvärr är epostadressen felaktig."
+
+#: class.cff_contact.php:59 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please give your email address."
+msgstr "Fyll i epostadressen."
+
+#: class.cff_contact.php:63
+msgid "Please confirm your email address."
+msgstr "Bekräfta epostadressen."
+
+#: class.cff_contact.php:67 views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr "Fyll i ditt namn."
+
+#: class.cff_contact.php:71
+msgid "Please enter a message."
+msgstr "Skriv ett meddelande."
+
+#: class.cff_contact.php:75 views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Please enter a valid email address."
+msgstr "Fyll i en giltig epostadress."
+
+#: class.cff_contact.php:83
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Tyvärr har du fyllt i fel kod, prova igen."
+
+#: class.cff_pluginsettings.php:40
+msgid "Message Sent"
+msgstr "Meddelandet är skickat."
+
+#: class.cff_pluginsettings.php:47
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Tack för ditt meddelande, vi kontaktar er så snart som möjligt."
+
+#: class.cff_pluginsettings.php:54
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Fyll i dina kontaktuppgifter och ett kort meddelande så kommer vi svara så "
+"snart som möjligt."
+
+#: class.cff_pluginsettings.php:83
+msgid " - Web Enquiry"
+msgstr " - Webförfrågan"
+
+#: class.cff_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Inställningar för Clean and Simple Kontaktformulär"
+
+#: class.cff_settings.php:43
+msgid "You are using version"
+msgstr "Du använder version: "
+
+#: class.cff_settings.php:44
+msgid "If you find this plugin useful please consider"
+msgstr "Om du gillar vår plugin,"
+
+#: class.cff_settings.php:47
+msgid "leaving a review"
+msgstr "skriv gärna en recension."
+
+#: class.cff_settings.php:49
+msgid "Thank you!"
+msgstr "Tack på förhand!"
+
+#: class.cff_settings.php:68
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA inställningar"
+
+#: class.cff_settings.php:76
+msgid "Use reCAPTCHA :"
+msgstr "Använd reCAPTCHA :"
+
+#: class.cff_settings.php:82
+msgid "reCAPTCHA Theme :"
+msgstr "reCAPTCHA Tema :"
+
+#: class.cff_settings.php:88
+msgid "reCAPTCHA Public Key :"
+msgstr "reCAPTCHA Public Key :"
+
+#: class.cff_settings.php:94
+msgid "reCAPTCHA Private Key :"
+msgstr "reCAPTCHA Private Key :"
+
+#: class.cff_settings.php:100
+msgid "Message Settings"
+msgstr "Meddelande inställningar"
+
+#: class.cff_settings.php:104
+msgid "Recipient Email :"
+msgstr "Mottagande epostadress:"
+
+#: class.cff_settings.php:110
+msgid "Email Subject :"
+msgstr "Epost ämne:"
+
+#: class.cff_settings.php:116
+msgid "Message :"
+msgstr "Meddelande:"
+
+#: class.cff_settings.php:122
+msgid "Message Sent Heading :"
+msgstr "Meddelande skickat, rubrik"
+
+#: class.cff_settings.php:128
+msgid "Message Sent Content :"
+msgstr "Meddelande skickat, innehåll:"
+
+#: class.cff_settings.php:134
+msgid "Styling and Validation"
+msgstr "Utseende och validering."
+
+#: class.cff_settings.php:138
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+"Använd förvald stilmall i vår plugin (klicka bort om du vill använda "
+"stilmallen i ditt tema istället):"
+
+#: class.cff_settings.php:144
+msgid "Use client side validation (AJAX) :"
+msgstr "Använd klientvalidering (AJAX):"
+
+#: class.cff_settings.php:216
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "Fyll i dina reCAPTCHA inställningar nedan: "
+
+#: class.cff_settings.php:217
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "För att använda reCAPTCHA måste du skaffa en API-nyckel från "
+
+#: class.cff_settings.php:222
+msgid "Enter your message settings below :"
+msgstr "Fyll i inställningar för ditt meddelande nedan:"
+
+#: class.cff_settings.php:274
+msgid "Red"
+msgstr "Röd"
+
+#: class.cff_settings.php:275
+msgid "White"
+msgstr "Vit"
+
+#: class.cff_settings.php:276
+msgid "Blackglass"
+msgstr "Svart(glas)"
+
+#: class.cff_settings.php:277
+msgid "Clean"
+msgstr "Enkelt"
+
+#: views/contact-form-with-recaptcha.view.php:27
+#: views/contact-form.view.php:12
+msgid "Email Address:"
+msgstr "Epostadress:"
+
+#: views/contact-form-with-recaptcha.view.php:29
+#: views/contact-form.view.php:14
+msgid "Your Email Address"
+msgstr "Din epostadress:"
+
+#: views/contact-form-with-recaptcha.view.php:37
+#: views/contact-form.view.php:22
+msgid "Confirm Email Address:"
+msgstr "Bekräfta epostadress:"
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Please enter the same email address again."
+msgstr "Skriv din epostadress en gång till."
+
+#: views/contact-form-with-recaptcha.view.php:39
+#: views/contact-form.view.php:24
+msgid "Confirm Your Email Address"
+msgstr "Bekräfta din epostadress."
+
+#: views/contact-form-with-recaptcha.view.php:47
+#: views/contact-form.view.php:32
+msgid "Name:"
+msgstr "Namn:"
+
+#: views/contact-form-with-recaptcha.view.php:49
+#: views/contact-form.view.php:34
+msgid "Your Name"
+msgstr "Ditt namn:"
+
+#: views/contact-form-with-recaptcha.view.php:57
+#: views/contact-form.view.php:42
+msgid "Message:"
+msgstr "Meddelande:"
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Please give a message."
+msgstr "Skriv ett meddelande."
+
+#: views/contact-form-with-recaptcha.view.php:59
+#: views/contact-form.view.php:44
+msgid "Your Message"
+msgstr "Ditt meddelande:"
+
+#: views/contact-form-with-recaptcha.view.php:75
+#: views/contact-form.view.php:51
+msgid "Send Message"
+msgstr "Skicka meddelande"
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Tyvärr, något är fel och ditt meddelande har inte skickats."
+
+# Plugin Name des plugin/theme
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr "Clean and Simple Kontaktformulär"
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+
+# Beschreibung des plugin/theme
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+"Ett enkelt kontaktformulär med Google reCAPTCHA och Twitter Bootstrap kod."
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr "Meghan Nicholas"
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr "http://www.megnicholas.co.uk"
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.mo
new file mode 100644
index 0000000..06860f6
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.po b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.po
new file mode 100644
index 0000000..d577893
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas-tr_TR.po
@@ -0,0 +1,303 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.2.4\n"
+"Report-Msgid-Bugs-To: http://wordpress.org/tag/clean-and-simple-contact-form-"
+"by-meg-nicholas\n"
+"POT-Creation-Date: 2013-11-06 14:29:38+00:00\n"
+"PO-Revision-Date: Mon Dec 08 2014 14:19:29 GMT+0200 (Tonga Standart Saati)\n"
+"Last-Translator: Abdullah Manaz \n"
+"Language-Team: ManazNet \n"
+"Language: Turkish\n"
+"Plural-Forms: nplurals=1; plural=0\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-SourceCharset: UTF-8\n"
+"X-Generator: Loco - https://localise.biz/\n"
+"X-Poedit-Basepath: .\n"
+"X-Poedit-SearchPath-0: ..\n"
+"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
+"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
+"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
+"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
+"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
+"X-Loco-Target-Locale: tr_TR"
+
+#: ../class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr "İletişim Formu Kurgusu"
+
+#: ../class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr "İletişim Formu"
+
+#: ../class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr "Temiz ve Basit İletişim Formu Kurgusu"
+
+#: ../class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr "Bağış $10, $20 veya $50!"
+
+#: ../class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+"Bu eklentiyi beğendiyseniz, geliştirilmesine katkıda bulunmak için bağış "
+"yapabilirsiniz."
+
+#: ../class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr "Temiz ve Basit İleşitim Formu!"
+
+#: ../class.cscf_settings.php:72
+msgid "You are using version"
+msgstr "Kullanılan Versiyon"
+
+#: ../class.cscf_settings.php:74
+msgid "If you find this plugin useful please consider"
+msgstr "Bu eklentiyi yararlı bulursanız, lütfen desteklemek için "
+
+#: ../class.cscf_settings.php:77
+msgid "leaving a review"
+msgstr "Bir görüş belirtiniz."
+
+#: ../class.cscf_settings.php:79
+msgid "Thank you!"
+msgstr "Teşekkür Ederiz!"
+
+#: ../class.cscf_settings.php:84
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+"NOT: JetPack's Contact Form eklentisi aktif, lütfen onu deaktif ediniz veya "
+"[cscf-contact-form] kısa kodunu kullanınız."
+
+#: ../class.cscf_settings.php:86
+msgid "Read More"
+msgstr "Fazlasını Oku"
+
+#: ../class.cscf_settings.php:90
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr "Not: İletişim Formunu bir yazınıza veya sayfanıza eklemek için"
+
+#: ../class.cscf_settings.php:91
+msgid "to your post or page."
+msgstr "kısa kodunu kullanınız."
+
+#: ../class.cscf_settings.php:111
+msgid "ReCAPTCHA Settings"
+msgstr "ReCAPTCHA Kurgusu"
+
+#: ../class.cscf_settings.php:119
+msgid "Use reCAPTCHA :"
+msgstr "ReCAPTCHA Kullan:"
+
+#: ../class.cscf_settings.php:125
+msgid "reCAPTCHA Theme :"
+msgstr "ReCAPTCHA Teması :"
+
+#: ../class.cscf_settings.php:131
+msgid "reCAPTCHA Public Key :"
+msgstr "ReCAPTCHA Public Key :"
+
+#: ../class.cscf_settings.php:137
+msgid "reCAPTCHA Private Key :"
+msgstr "ReCAPTCHA Private Key :"
+
+#: ../class.cscf_settings.php:143
+msgid "Message Settings"
+msgstr "MesajFormu Kurgusu"
+
+#: ../class.cscf_settings.php:147
+msgid "Recipient Emails :"
+msgstr "Alıcı EPosta Adres(ler)i:"
+
+#: ../class.cscf_settings.php:153
+msgid "Confirm Email Address :"
+msgstr "EPosta Adres(ler)ini Onayla"
+
+#: ../class.cscf_settings.php:159
+msgid "*New*"
+msgstr "Yeni"
+
+#: ../class.cscf_settings.php:159
+msgid "Allow users to email themselves a copy :"
+msgstr "Kullanıcıların kendilerine bir EPosta Kopyası göndermesine izin ver:"
+
+#: ../class.cscf_settings.php:165
+msgid "Override 'From' Address :"
+msgstr " 'Kimden' bölümünü düzenle :"
+
+#: ../class.cscf_settings.php:171
+msgid "'From' Email Address :"
+msgstr " 'Kimden' bölümüne EPosta Adresi :"
+
+#: ../class.cscf_settings.php:177
+msgid "Email Subject :"
+msgstr "EPosta Konusu:"
+
+#: ../class.cscf_settings.php:183
+msgid "Message :"
+msgstr "EPosta Metni :"
+
+#: ../class.cscf_settings.php:189
+msgid "Message Sent Heading :"
+msgstr "Gönderilen Mesaj Başlığı:"
+
+#: ../class.cscf_settings.php:195
+msgid "Message Sent Content :"
+msgstr "Gönderilen Mesaj Konusu:"
+
+#: ../class.cscf_settings.php:201
+msgid "Styling and Validation"
+msgstr "Görünüm ve Doğrulama"
+
+#: ../class.cscf_settings.php:205
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr "Temel Görünümü Kullan (Kendi temanızı kullanacaksanız seçimi kaldırın) :"
+
+#: ../class.cscf_settings.php:211
+msgid "Use client side validation (AJAX) :"
+msgstr "(AJAX) Doğrulama Yöntemini Kullan :"
+
+#: ../class.cscf_settings.php:283
+msgid "Enter your reCAPTCHA settings below :"
+msgstr "ReCAPTCHA Ayarlarını Aşağıya Giriniz:"
+
+#: ../class.cscf_settings.php:284
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr "ReCAPTCHA kullanmak için API-Key edinmeniz gerekir:"
+
+#: ../class.cscf_settings.php:290
+msgid "Enter your message settings below :"
+msgstr "MesajFormu Kurgunuzu aşağıya giriniz:"
+
+#: ../class.cscf_settings.php:392
+msgid "Red"
+msgstr "Kırmızı"
+
+#: ../class.cscf_settings.php:394
+msgid "White"
+msgstr "Beyaz"
+
+#: ../class.cscf_settings.php:396
+msgid "Blackglass"
+msgstr "Şeffaf"
+
+#: ../class.cscf_settings.php:398
+msgid "Clean"
+msgstr "Temiz"
+
+#: ../class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr "Mesajınız Gönderildi!"
+
+#: ../class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr "Teşekkürler, Mesajınız alındı, en kısa zamanda cevaplanacaktır."
+
+#: ../class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+"Mesajınızı ve iletişim bilgilerinizi aşağıya yazınız.En kısa zamanda "
+"cevaplanacaktır."
+
+#: ../class.cscf_pluginsettings.php:93
+msgid " - Web Enquiry"
+msgstr " - Web Talebi"
+
+#: ../class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr "Afedersiniz, EPosta Adresleriniz uyuşmuyor."
+
+#: ../class.cscf_contact.php:71 ../views/contact-form.view.php:54
+msgid "Please give your email address."
+msgstr "Lütfen EPosta Adresinizi giriniz."
+
+#: ../class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr "Lütfen EPosta Adresinizi doğrulayınız."
+
+#: ../class.cscf_contact.php:80 ../views/contact-form.view.php:32
+msgid "Please give your name."
+msgstr "Lütfen isminizi giriniz."
+
+#: ../class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr "Lütfen bir mesaj giriniz."
+
+#: ../class.cscf_contact.php:88 ../views/contact-form.view.php:55 ..
+#: /views/contact-form.view.php:79
+msgid "Please enter a valid email address."
+msgstr "Lütfen, geçerli bir EPosta Adresi giriniz."
+
+#: ../class.cscf_contact.php:95
+msgid "Sorry the code wasn't entered correctly please try again."
+msgstr "Güvenlik kodunu yanlış girdiniz, tekrar deneyiniz."
+
+#: ../class.cscf_contact.php:157
+msgid "Here is a copy of your message :"
+msgstr "EPosta Mesajınızın bir kopyası :"
+
+#: ../class.cscf.php:151
+msgid "Settings"
+msgstr "Kurgu"
+
+#: ../views/contact-form.view.php:25
+msgid "Name:"
+msgstr "Adınız:"
+
+#: ../views/contact-form.view.php:35
+msgid "Your Name"
+msgstr "Adınız"
+
+#: ../views/contact-form.view.php:46
+msgid "Email Address:"
+msgstr "EPosta Adresi:"
+
+#: ../views/contact-form.view.php:58
+msgid "Your Email Address"
+msgstr "EPosta Adresiniz:"
+
+#: ../views/contact-form.view.php:69
+msgid "Confirm Email Address:"
+msgstr "EPosta Adresinizi doğrulayın:"
+
+#: ../views/contact-form.view.php:78 ../views/contact-form.view.php:80
+msgid "Please enter the same email address again."
+msgstr "EPosta Adresinizi tekrar giriniz."
+
+#: ../views/contact-form.view.php:83
+msgid "Confirm Your Email Address"
+msgstr "EPosta Adresinizi doğrulayınız"
+
+#: ../views/contact-form.view.php:95
+msgid "Message:"
+msgstr "Mesaj Metni:"
+
+#: ../views/contact-form.view.php:102
+msgid "Please give a message."
+msgstr "Lütfen bir Mesaj giriniz."
+
+#: ../views/contact-form.view.php:104
+msgid "Your Message"
+msgstr "Mesaj Metniniz"
+
+#: ../views/contact-form.view.php:114
+msgid "Send me a copy:"
+msgstr "Bana da bir Kopya gönder:"
+
+#: ../views/contact-form.view.php:142
+msgid "Send Message"
+msgstr "Mesajı Gönder"
+
+#: ../views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr "Afedersiniz, bir sorun oldu, mesajınız gitmedi."
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas.pot b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas.pot
new file mode 100644
index 0000000..48564cd
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas.pot
@@ -0,0 +1,302 @@
+# Copyright (C) 2016 Clean and Simple Contact Form
+# This file is distributed under the same license as the Clean and Simple Contact Form package.
+msgid ""
+msgstr ""
+"Project-Id-Version: Clean and Simple Contact Form 4.6.0\n"
+"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/clean-and-simple-"
+"contact-form-by-meg-nicholas\n"
+"POT-Creation-Date: 2016-01-19 14:59:22+00:00\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+
+#: class.cscf.php:157
+msgid "Settings"
+msgstr ""
+
+#: class.cscf_contact.php:66
+msgid "Sorry the email addresses do not match."
+msgstr ""
+
+#: class.cscf_contact.php:71 views/contact-form.view.php:63
+msgid "Please give your email address."
+msgstr ""
+
+#: class.cscf_contact.php:75
+msgid "Please confirm your email address."
+msgstr ""
+
+#: class.cscf_contact.php:80 views/contact-form.view.php:34
+msgid "Please give your name."
+msgstr ""
+
+#: class.cscf_contact.php:84
+msgid "Please enter a message."
+msgstr ""
+
+#: class.cscf_contact.php:88 views/contact-form.view.php:64
+#: views/contact-form.view.php:93
+msgid "Please enter a valid email address."
+msgstr ""
+
+#: class.cscf_contact.php:97
+msgid "Please solve the recaptcha to continue."
+msgstr ""
+
+#: class.cscf_contact.php:160
+msgid "Here is a copy of your message :"
+msgstr ""
+
+#: class.cscf_pluginsettings.php:44
+msgid "Message Sent"
+msgstr ""
+
+#: class.cscf_pluginsettings.php:52
+msgid "Thank you for your message, we will be in touch very shortly."
+msgstr ""
+
+#: class.cscf_pluginsettings.php:60
+msgid ""
+"Please enter your contact details and a short message below and I will try "
+"to answer your query as soon as possible."
+msgstr ""
+
+#: class.cscf_pluginsettings.php:94
+msgid " - Web Enquiry"
+msgstr ""
+
+#: class.cscf_settings.php:30
+msgid "Contact Form Settings"
+msgstr ""
+
+#: class.cscf_settings.php:30
+msgid "Contact Form"
+msgstr ""
+
+#: class.cscf_settings.php:41
+msgid "Clean and Simple Contact Form Settings"
+msgstr ""
+
+#: class.cscf_settings.php:47
+msgid "Donate $10, $20 or $50!"
+msgstr ""
+
+#: class.cscf_settings.php:50
+msgid ""
+"If you like this plugin, please donate to support development and "
+"maintenance of:"
+msgstr ""
+
+#: class.cscf_settings.php:52
+msgid "Clean and Simple Contact Form!"
+msgstr ""
+
+#: class.cscf_settings.php:67
+msgid "You are using version"
+msgstr ""
+
+#: class.cscf_settings.php:69
+msgid "If you find this plugin useful please consider"
+msgstr ""
+
+#: class.cscf_settings.php:72
+msgid "leaving a review"
+msgstr ""
+
+#: class.cscf_settings.php:74
+msgid "Thank you!"
+msgstr ""
+
+#: class.cscf_settings.php:79
+msgid ""
+"NOTICE: You have JetPack's Contact Form enabled please deactivate it or use "
+"the shortcode [cscf-contact-form] instead."
+msgstr ""
+
+#: class.cscf_settings.php:81
+msgid "Read More"
+msgstr ""
+
+#: class.cscf_settings.php:85
+msgid "Please Note: To add the contact form to your page please add the text"
+msgstr ""
+
+#: class.cscf_settings.php:86
+msgid "to your post or page."
+msgstr ""
+
+#: class.cscf_settings.php:106
+msgid "ReCAPTCHA Settings"
+msgstr ""
+
+#: class.cscf_settings.php:114
+msgid "Use reCAPTCHA :"
+msgstr ""
+
+#: class.cscf_settings.php:120
+msgid "reCAPTCHA Theme :"
+msgstr ""
+
+#: class.cscf_settings.php:126
+msgid "reCAPTCHA Public Key :"
+msgstr ""
+
+#: class.cscf_settings.php:132
+msgid "reCAPTCHA Private Key :"
+msgstr ""
+
+#: class.cscf_settings.php:138
+msgid "Message Settings"
+msgstr ""
+
+#: class.cscf_settings.php:142
+msgid "Recipient Emails :"
+msgstr ""
+
+#: class.cscf_settings.php:148
+msgid "Confirm Email Address :"
+msgstr ""
+
+#: class.cscf_settings.php:154
+msgid "*New*"
+msgstr ""
+
+#: class.cscf_settings.php:154
+msgid "Allow users to email themselves a copy :"
+msgstr ""
+
+#: class.cscf_settings.php:160
+msgid "Override 'From' Address :"
+msgstr ""
+
+#: class.cscf_settings.php:166
+msgid "'From' Email Address :"
+msgstr ""
+
+#: class.cscf_settings.php:172
+msgid "Email Subject :"
+msgstr ""
+
+#: class.cscf_settings.php:178
+msgid "Message :"
+msgstr ""
+
+#: class.cscf_settings.php:184
+msgid "Message Sent Heading :"
+msgstr ""
+
+#: class.cscf_settings.php:190
+msgid "Message Sent Content :"
+msgstr ""
+
+#: class.cscf_settings.php:196
+msgid "Styling and Validation"
+msgstr ""
+
+#: class.cscf_settings.php:200
+msgid ""
+"Use the plugin default stylesheet (un-tick to use your theme style sheet "
+"instead) :"
+msgstr ""
+
+#: class.cscf_settings.php:206
+msgid "Use client side validation (AJAX) :"
+msgstr ""
+
+#: class.cscf_settings.php:278
+msgid "Enter your reCAPTCHA settings below :"
+msgstr ""
+
+#: class.cscf_settings.php:279
+msgid "To use reCAPTCHA you must get an API key from"
+msgstr ""
+
+#: class.cscf_settings.php:285
+msgid "Enter your message settings below :"
+msgstr ""
+
+#: class.cscf_settings.php:387
+msgid "Light"
+msgstr ""
+
+#: class.cscf_settings.php:389
+msgid "Dark"
+msgstr ""
+
+#: views/contact-form.view.php:25
+msgid "Name:"
+msgstr ""
+
+#: views/contact-form.view.php:37
+msgid "Your Name"
+msgstr ""
+
+#: views/contact-form.view.php:54
+msgid "Email Address:"
+msgstr ""
+
+#: views/contact-form.view.php:67
+msgid "Your Email Address"
+msgstr ""
+
+#: views/contact-form.view.php:83
+msgid "Confirm Email Address:"
+msgstr ""
+
+#: views/contact-form.view.php:92 views/contact-form.view.php:94
+msgid "Please enter the same email address again."
+msgstr ""
+
+#: views/contact-form.view.php:97
+msgid "Confirm Your Email Address"
+msgstr ""
+
+#: views/contact-form.view.php:114
+msgid "Message:"
+msgstr ""
+
+#: views/contact-form.view.php:121
+msgid "Please give a message."
+msgstr ""
+
+#: views/contact-form.view.php:123
+msgid "Your Message"
+msgstr ""
+
+#: views/contact-form.view.php:139
+msgid "Send me a copy:"
+msgstr ""
+
+#: views/contact-form.view.php:201
+msgid "Send Message"
+msgstr ""
+
+#: views/message-not-sent.view.php:1
+msgid "Sorry, there has been a problem and your message was not sent."
+msgstr ""
+
+#. Plugin Name of the plugin/theme
+msgid "Clean and Simple Contact Form"
+msgstr ""
+
+#. Plugin URI of the plugin/theme
+msgid ""
+"http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form"
+msgstr ""
+
+#. Description of the plugin/theme
+msgid ""
+"A clean and simple contact form with Google reCAPTCHA and Twitter Bootstrap "
+"markup."
+msgstr ""
+
+#. Author of the plugin/theme
+msgid "Meghan Nicholas"
+msgstr ""
+
+#. Author URI of the plugin/theme
+msgid "http://www.megnicholas.co.uk"
+msgstr ""
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas_pl_PL.mo b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas_pl_PL.mo
new file mode 100644
index 0000000..55cdf2c
Binary files /dev/null and b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/languages/clean-and-simple-contact-form-by-meg-nicholas_pl_PL.mo differ
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/readme.txt b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/readme.txt
new file mode 100644
index 0000000..5160c33
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/readme.txt
@@ -0,0 +1,416 @@
+=== Contact Form Clean and Simple ===
+Contributors: megnicholas
+Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AKQM4KSBQ4H66
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl.html
+Tags: simple, contact, form, contact button, contact form, contact form plugin, akismet, contacts, contacts form plugin, contact me, feedback form, bootstrap, twitter, google, reCAPTCHA, ajax, secure
+Requires at least: 3.3
+Tested up to: 4.4.1
+Stable tag: 4.6.1
+
+A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
+
+== Description ==
+A clean and simple AJAX contact form with Google reCAPTCHA, Twitter Bootstrap markup and Akismet spam filtering.
+
+* **Clean**: all user inputs are stripped in order to avoid cross-site scripting (XSS) vulnerabilities.
+
+* **Simple**: AJAX enabled validation and submission for immediate response and guidance for your users (can be switched off).
+
+* **Stylish**: Use the included stylesheet or switch it off and use your own for seamless integration with your website.
+Uses **Twitter Bootstrap** classes.
+
+* **Safe**: All incoming data is scanned for spam with **Akismet**.
+
+This is a straightforward contact form for your WordPress site. There is very minimal set-up
+required. Simply install, activate, and then place the short code **[cscf-contact-form]** on your web page.
+
+A standard set of input boxes are provided, these include Email Address, Name, Message and a nice big ‘Send Message’ button.
+
+When your user has completed the form an email will be sent to you containing your user’s message.
+To reply simply click the ‘reply’ button on your email client.
+The email address used is the one you have set up in WordPress under ‘Settings’ -> ‘General’, so do check this is correct.
+
+To help prevent spam all data is scanned via Akismet.
+For this to work you must have the [Akismet Plugin](http://wordpress.org/plugins/akismet/ "Akismet Plugin") installed and activated.
+All spam will be placed in your 'comments' list which you can then review if you want to
+[learn more](http://www.megnicholas.co.uk/articles/contact-form-plugin-can-detect-spam/ "Learn More").
+
+For added piece of mind this plugin also allows you to add a ‘**reCAPTCHA**’.
+This adds a picture of a couple of words to the bottom of the contact form.
+Your user must correctly type the words before the form can be submitted, and in so doing, prove that they are human.
+
+= Why Choose This Plugin? =
+Granted there are many plugins of this type in existence already. Why use this one in-particular?
+
+Here’s why:
+
+* Minimal setup. Simply activate the plugin and place the shortcode [cscf-contact-form] on any post or page.
+
+* **Safe**. All input entered by your user is stripped back to minimise as far as possible the likelihood of any
+malicious user attempting to inject a script into your website.
+If the Akismet plugin is activated all form data will be scanned for spam.
+You can turn on reCAPTCHA to avoid your form being abused by bots.
+
+* **Ajax enabled**. You have the option to turn on AJAX (client-side) validation and submission which gives your users an immediate response when completing the form without having to wait for the page to refresh.
+
+* The form can **integrate seamlessly into your website**. Turn off the plugin’s default css style sheet so that your theme’s style sheet can be used instead.
+
+* If your theme is based on **twitter bootstrap** then this plugin will fit right in because it already has all the right div’s and CSS classes for bootstrap.
+
+* This plugin will only link in its jQuery file where it’s needed, it **will not impose** itself on every page of your whole site!
+
+* Works with the **latest version of WordPress**.
+
+* Written by an **experienced PHP programmer**, the code is rock solid, safe, and rigorously tested as standard practice.
+
+Hopefully this plugin will fulfil all your needs, if not [get in-touch](http://www.megnicholas.co.uk/contact-me "Get In Touch") and I will customise to your exact requirements.
+
+
+== Installation ==
+There are two ways to install:
+
+1. Click the ‘Install Now’ link from the plugin library listing to automatically download and install.
+
+2. Download the plugin as a zip file. To install the zip file simply double click to extract it and place the whole folder in your wordpress plugins folder, e.g. [wordpress]/wp-content/plugins where [wordpress] is the directory that you installed WordPress in.
+
+Then visit the plugin page on your wordpress site and click ‘Activate’ against the ‘Clean and Simple Contact Form’ plugin listing.
+
+To place the contact form on your page use the shortcode [cscf-contact-form]
+
+[More information on how to use the plugin.](http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form/ "More Information")
+
+== How to Use ==
+Unless you want to change messages or add reCAPTCHA to your contact form then this plugin will work out of the box without any additional setup.
+
+Important: Check that you have an email address set-up in your WordPress ‘Settings’->’General’ page. This is the address that the plugin will use to send the contents of the contact form.
+
+To add the contact form to your WordPress website simply place the shortcode [cscf-contact-form] on the post or page that you wish the form to appear on.
+
+**If you have Jetpack plugin installed disable the contact form otherwise the wrong form might display.**
+
+[More information on how to use the plugin.](http://www.megnicholas.co.uk/wordpress-plugins/clean-and-simple-contact-form/ "More Information")
+
+== Additional Settings ==
+This plugin will work out of the box without any additional setup. You have the option to change the default messages that are displayed to your user and to add reCAPTCHA capabilities.
+
+Go to the settings screen for the contact form plugin.
+
+You will find a link to the setting screen against the entry of this plugin on the ‘Installed Plugins’ page.
+
+Here is a list of things that you can change
+
+* **Message**: The message displayed to the user at the top of the contact form.
+
+* **Message Sent Heading**: The message heading or title displayed to the user after the message has been sent.
+
+* **Message Sent Content**: The message content or body displayed to the user after the message has been sent.
+
+* **Use this plugin’s default stylesheet**: The plugin comes with a default style sheet to make the form look nice for your user. Untick this if you want to use your theme’s stylesheet instead. The default stylesheet will simply not be linked in.
+
+* **Use client side validation (Ajax)**: When ticked the contact form will be validated and submitted on the client giving your user instant feedback if they have filled the form in incorrectly. If you wish the form to be validated and submitted only to the server then untick this option.
+
+* **Use reCAPTCHA**: Tick this option if you wish your form to have a reCAPTCHA box. ReCAPTCHA helps to avoid spam bots using your form by checking that the form filler is actually a real person. To use reCAPTCHA you will need to get a some special keys from google https://www.google.com/recaptcha/admin/create. Once you have your keys enter them into the Public key and Private key boxes
+
+* **reCAPTCHA Public Key**: Enter the public key that you obtained from here.
+
+* **reCAPTCHA Private Key**: Enter the private key that you obtained from here.
+
+* **reCAPTCHA Theme**: Here you can change the reCAPTCHA box theme so that it fits with the style of your website.
+
+* **!NEW! Recipient Emails**: The email address where you would like all messages to be sent.
+ This will default to the email address you have specified under 'E-Mail Address' in your WordPress General Settings.
+ If you want your mail sent to a different address then enter it here.
+ You may enter multiple email addresses by clicking the '+' button.
+
+* **!NEW! Confirm Email Address**: Email confirmation is now optional. To force your user to re-type their email address tick 'Confirm Email Address'.
+ It is recommended that you leave this option on. If you turn this option off your user will only have to enter their email address once,
+ but if they enter it incorrectly you will have no way of getting back to them!
+
+* **Email Subject**: This is the email subject that will appear on all messages. If you would like to set it to something different then enter it here.
+
+* **!NEW! Override 'From' Address**: If you tick this and then fill in the 'From Address:' box then all email will be sent from the given address NOT from the email address given by the form filler.
+
+* **!NEW! Option to allow enquiry to email themselves a copy of the message.
+
+== Screenshots ==
+1. Contact Form With reCAPTCHA
+2. Contact Form Without reCAPTCHA
+3. Message Sent
+4. Contact Form Options Screen
+5. Place this shortcode on your post or page to deploy
+
+== Demo ==
+This is a demonstration of this plugin working on the default Twenty Twelve theme ->
+[Clean and Simple Contact Form Demonstration](http://demo.megnicholas.co.uk/wordpress-clean-and-simple-contact-form "Plugin Demonstration")
+
+==About Meg Nicholas ==
+I am a freelance WordPress Developer.
+[Hire me for all your Wordpress needs](http://www.megnicholas.co.uk "Hire Me").
+
+== Frequently Asked Questions ==
+= I get a message to say that the message could not be sent =
+
+If you get this message then you have a general problem with email on your server. This plugin uses Wordpress's send mail function.
+So a problem sending mail from this plugin indicates that Wordpress as a whole cannot send email.
+Contact your web host provider for help, or use an SMTP plugin to use a third party email service.
+
+= I don't receive the email =
+
+* Check the recipient email on your settings screen, is it correct?
+* Check in your spam or junk mail folder
+* For Gmail check in 'All Mail', the email might have gone straight to archive
+* Try overriding the 'From' email address in the settings screen. Use an email address you own or is from your own domain
+
+= Why is a different contact form displayed? =
+
+You may have a conflict with another plugin. Either deactivate the other contact form plugin, if you don't need it, or use
+this alternative short code on your webpage - `[cscf-contact-form]`.
+This problem often occurs when Jetpack plugin is installed.
+
+= How do I display the contact form on my page/post? =
+
+To put the contact form on your page, add the text:
+`[cscf-contact-form]`
+
+The contact form will appear when you view the page.
+
+= When I use the style sheet that comes with the plugin my theme is affected =
+
+It is impossible to test this plugin with all themes. Styling incompatibilities can occur. In this case, switch off the default stylesheet on the settings
+screen so you can add your own styles to your theme's stylesheet.
+
+= Can I have this plugin in my own language? =
+
+Yes, I am currently building up translation files for this plugin. If your language is not yet available you are very welcome to translate it.
+If you are not sure how to go about doing this [get in touch](http://www.megnicholas.co.uk/contact-me/ "Contact Me").
+
+= How do I change the text box sizes? =
+
+The plugin now uses Bootstrap 3. The text box widths now use up 100% of the available width.
+This makes the form responsive to all types of media. If you want to have a fixed width for the form you can put some styling around the shortcode:
+`[cscf-contact-form]
`
+
+= Can I have multiple forms? =
+
+Currently you may only have one contact form per page. You CAN however put the contact form on more than one page using the same shortcode.
+Note that making changes to the settings will affect all implementations of the plugin across your site.
+
+= Will this work with other plugins that use Google reCAPTCHA? =
+Yes it will. HOWEVER, you cannot have more than one reCAPTCHA on a page. This is a constraint created by Google.
+So for example, if your 'Contact Me' page has comments below it,
+the reCAPTCHA for the contact form will be displayed correctly but not in the comments form below.
+The comments form will never validate due to no supplied reCAPTCHA code.
+
+== Changelog ==
+= 4.6.1 =
+* Fixed untranslated strings. Thanks to Abdullah Manaz!
+= 4.6.0 =
+* Prevent multiple 'send message' clicks.
+* Changed text domain to plugin slug to allow for WP translation system import
+* Removed advertising from settings screen
+* Added Korean translation thanks to Lee Dae-yeop
+* Added Romanian translation. Thanks to Marius Pruna.
+* Update French translation thanks to Steph
+* Added Hungarian translation. Thanks to János Sánta.
+= 4.5.1 =
+* Updated Polish translations thanks to Kacper
+* Updated French translation
+= 4.5.0 =
+* Added support for google recaptcha2. Replaces recaptcha version 1
+* Update to Italian translation thanks to Silvano
+* Added back the DIV to the contact form view as this introduced a display issue
+* Updated German translation thanks to schasoli
+* Polish translation update thanks to Kacper Rucinski
+= 4.4.4 =
+* Added Serbian translation thanks to [Borisa Djuraskovic](http://www.webhostinghub.com "Borisa Djuraskovic")
+* Added Slovenian translation thanks to Bekim Lutolli
+* Fixed some 'notice' errors
+* Recaptcha styling workaround for twenty fifteen theme
+* Remove empty divs from view
+= 4.4.3 =
+* Remove branding
+= 4.4.2 =
+* Akismet tweak only log as spam if akismet_result = 'true'
+* Updated Turkish translations thanks again to [Abdullah Manaz](http://manaz.net "Abdullah Manaz")
+* Added Indonesian translations thanks to Beny Hirmansyah
+= 4.4.0 =
+* Fixed XSS issue
+= 4.4.1 =
+* Add option for enquiry to email themselves a copy of the message
+* Update to Polish translation thanks to Radosław “Robaczek” Rak
+= 4.3.4 =
+* Added the wordpress page of contact form to the email
+* Removed link in main contact form view
+= 4.3.3 =
+* Before overriding the from address, check that another plugin has not done it first.
+Any plugin that overrides 'from email address' and 'from name' such as wp-mail-smtp plugin will take precedence over the settings in this plugin.
+* Added 'reply-to' to the email header
+* Moved the Name field before Email field
+* Added Hebrew translation thanks to Shay Cohen
+= 4.3.2 =
+* Added Norwegian Bokmål translation thanks to Jann Vestby
+* Added Brazilian Portugese translation originally a Portugese translation by Ricardo Santos aka BogasoBogolha
+= 4.3.1 =
+* Polish translation has been updated thanks to Arkadiusz Baron
+* Updated Turkish translations thanks again to [Abdullah Manaz](http://manaz.net "Abdullah Manaz")
+* New installations now have default stylesheet, ajax, and confirm-email options turned on
+* Compatibility with WordPress 3.8
+* Tested with twentyfourteen theme
+= 4.3.0 =
+* Contact form is now filtered for spam when the Akisturkishturkishturkmet plugin is present.
+[Learn more](http://www.megnicholas.co.uk/articles/contact-form-plugin-can-detect-spam/ "Learn More").
+= 4.2.5 =
+* Fixed bug that caused a PHP notice to be generated when 'Confirm Email Message' option is switched off.
+Thanks to MarrsAttax
+= 4.2.4 =
+* The requirement for users to confirm their email address is now optional.
+ When turned off users only need to enter their email address once.
+* Added Arabic translation thanks to [Omar AlQabandi](http://www.PlusOmar.com "Omar AlQabandi")
+= 4.2.3 =
+* Added ability to specify multiple recipient email addresses
+* Fix settings gui - there was a problem enabling 'From' Address option when javascript is not enabled.
+= 4.2.2 =
+* Recaptcha library has now been namespaced to 'cscf' to remove ALL possibility of conflicts with other plugins that also include this library.
+= 4.2.1 =
+* Fixed potential conflict with other themes or plugins that use Google reCAPTCHA. reCAPTCHA library is not loaded if it already loaded by another plugin or theme.
+* Recaptcha library function is now used to generate the sign up url on the settings page. The site domain is passed into the url for convenience.
+* Options subject, message, heading, and body text are now translated when they are retrieved from the the database. Previously only the default messages were translated when no values were found in the database.
+* Improved housekeeping: generic name for settings array has been changed from 'array_key' to 'cscf-options'
+= 4.2.0 =
+* Updated Turkish translations thanks again to [Abdullah Manaz](http://manaz.net "Abdullah Manaz")
+* Fixed a problem where certain texts on the settings screen were not being translated
+thanks to [Abdullah Manaz](http://manaz.net "Abdullah Manaz") again for finding this
+* Updates to FAQ section
+* The settings link on the plugin page may now be translated
+* The text 'Contact Form' on the admin screen menu may now be translated
+* Added Greek translations thanks to Georgios Diamantopoulos
+= 4.1.9 =
+* Added support for Bootstrap 3.0.0. Plugin is still compatible with Bootstrap 2.3.2, but if your theme uses this version
+please do not use the plugin's default style sheet (uncheck the box in the settings screen)
+[more information here](http://www.megnicholas.co.uk/articles/version-4-1-9-supports-bootstrap-3/ "more information").
+= 4.1.8 =
+* Added Russian Translation thanks to Oleg
+* Correct character encoding in Estonian translation thanks to [Marko Punnar](http://aretaja.org "Marko Punnar")
+* Correct some Spanish translation errors thanks to rowanda
+= 4.1.7 =
+* Added a note about the short code to use on the settings screen.
+* Added Estonian Translation thanks to [Marko Punnar](http://aretaja.org "Marko Punnar")
+* Added Japanese language thanks to Nikhil Khullar
+* Updated Turkish translation thanks again to Abdullah Manaz http://manaz.net
+= 4.1.6 =
+* Added ability to specify a 'from' address. When supplied the email will come from that address instead of the form filler's email address.
+* Changed type of email input boxes to "email"
+* Added Turkish translation thanks to Abdullah Manaz http://manaz.net
+= 4.1.5 =
+* Removed all carriage returns from views to avoid problems with wptexturize
+* Fixed typo in Dutch translation.
+= 4.1.4 =
+* Added Slovak translation file - thanks to Peter Gašparík
+* Added Catalan translation file - thanks to Llorenç
+= 4.1.3 =
+* Fixed escaped characters.
+* Added more translation files
+* Forms now submit via ajax.
+* Upgraded jquery-validate.js to 1.11. Removed jquery metadata plugin, form validation is now built with data attributes instead of json in classes.
+* Improved view html.
+* Added translations: Dutch thanks to Daniel Tetteroo, Armenian thanks to [Artak Kolyan](http://ablog.gratun.am "Artak Kolyan"),
+Polish thanks to Patryk Peas
+= 4.1.2 =
+* Added some FAQs
+* Added alternative shortcode [cscf-contact-form] for use when conflicts could occur.
+* Updated the documentation.
+* Recaptcha form now responds to language changes
+* Updated pot file to reflect new name space
+* Changed name space from cff to cscf
+* Settings screen: recaptcha theme and key inputs are immediately enabled/disabled as the 'Use reCAPTCHA' box is clicked.
+* Corrected some html seen as invalid by http://validator.w3.org/
+* removed '=' and replaced with ' $value ) {
+ $req .= $key . '=' . urlencode( stripslashes( $value ) ) . '&';
+ }
+ // Cut the last '&'
+ $req = substr( $req, 0, strlen( $req ) - 1 );
+
+ return $req;
+ }
+
+ /**
+ * Submits an HTTP GET to a reCAPTCHA server.
+ *
+ * @param string $path url path to recaptcha server.
+ * @param array $data array of parameters to be sent.
+ *
+ * @return array response
+ */
+ static function SubmitHTTPGet( $path, $data ) {
+ $req = self::EncodeQS( $data );
+ $response = file_get_contents( $path . $req );
+
+ return $response;
+ }
+
+
+ /**
+ * Calls the reCAPTCHA siteverify API to verify whether the user passes
+ * CAPTCHA test.
+ *
+ * @param string $remoteIp IP address of end user.
+ * @param string $secret google recaptcha secret key.
+ * @param string $response response string from recaptcha verification.
+ *
+ * @return ReCaptchaResponse
+ */
+ static function VerifyResponse( $remoteIp, $secret, $response ) {
+ // Discard empty solution submissions
+ if ( $response == null || strlen( $response ) == 0 ) {
+ $recaptchaResponse = new csf_ReCaptchaResponseV2();
+ $recaptchaResponse->success = false;
+ $recaptchaResponse->errorCodes = 'missing-input';
+
+ return $recaptchaResponse;
+ }
+ $getResponse = self::SubmitHttpGet(
+ self::$siteVerifyUrl,
+ array(
+ 'secret' => $secret,
+ 'remoteip' => $remoteIp,
+ 'response' => $response
+ )
+ );
+ $answers = json_decode( $getResponse, true );
+ $recaptchaResponse = new csf_ReCaptchaResponseV2();
+ if ( trim( $answers ['success'] ) == true ) {
+ $recaptchaResponse->success = true;
+ } else {
+ $recaptchaResponse->success = false;
+ $recaptchaResponse->errorCodes = $answers ['error-codes'];
+ }
+
+ return $recaptchaResponse;
+ }
+
+ }
+
+}
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/shortcodes/contact-form.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/shortcodes/contact-form.php
new file mode 100644
index 0000000..2dcd553
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/shortcodes/contact-form.php
@@ -0,0 +1,61 @@
+IsValid())
+ {
+ if ( $contact->SendMail() )
+
+ {
+ $view = new CSCF_View('message-sent');
+ $view->Set('heading',cscf_PluginSettings::SentMessageHeading());
+ $view->Set('message',cscf_PluginSettings::SentMessageBody());
+ }
+ else
+ {
+ $view = new CSCF_View('message-not-sent');
+ }
+
+ return $view->Render();
+ }
+
+ //load google recaptcha script if required
+ if ( $contact->RecaptchaPublicKey <> '' && $contact->RecaptchaPrivateKey <> '' ) {
+ wp_enqueue_script('csf-recaptcha2');
+ }
+
+ //here we need some jquery scripts and styles, so load them here
+ if ( cscf_PluginSettings::UseClientValidation() == true) {
+ wp_enqueue_script('jquery-validate');
+ wp_enqueue_script('cscf-validate');
+ }
+
+ //only load the stylesheet if required
+ if ( cscf_PluginSettings::LoadStyleSheet() == true)
+ wp_enqueue_style('cscf-bootstrap');
+
+ $messageSentView = new CSCF_View('message-sent');
+ $messageSentView->Set('heading',cscf_PluginSettings::SentMessageHeading());
+ $messageSentView->Set('message',cscf_PluginSettings::SentMessageBody());
+
+ $view = new CSCF_View('contact-form');
+ $view->Set('contact',$contact);
+ $view->Set('message',cscf_PluginSettings::Message());
+ $view->Set('version', CSCF_VERSION_NUM);
+ $view->Set('confirmEmail', cscf_PluginSettings::ConfirmEmail());
+ $view->Set('postID', get_the_ID());
+
+
+ $view->Set('messageSentView',$messageSentView);
+ $view->Set('messageNotSentView',new CSCF_View('message-not-sent'));
+
+ return $view->Render();
+
+}
+
+
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/uninstall.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/uninstall.php
new file mode 100644
index 0000000..fcc9733
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/uninstall.php
@@ -0,0 +1,9 @@
+
+
+ Render(); ?>
+
+
+ Render(); ?>
+
+
+
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-sent.view.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-sent.view.php
new file mode 100644
index 0000000..1fcc738
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-not-sent.view.php
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-sent.view.php b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-sent.view.php
new file mode 100644
index 0000000..2b7a035
--- /dev/null
+++ b/www/wp-content/plugins/clean-and-simple-contact-form-by-meg-nicholas/views/message-sent.view.php
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php b/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php
index ae372cc..6f03569 100644
--- a/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php
+++ b/www/wp-content/plugins/custom-post-type-ui/custom-post-type-ui.php
@@ -13,7 +13,7 @@
Plugin URI: https://github.com/WebDevStudios/custom-post-type-ui/
Description: Admin panel for creating custom post types and custom taxonomies in WordPress
Author: WebDevStudios
-Version: 1.3.0
+Version: 1.3.1
Author URI: https://webdevstudios.com/
Text Domain: custom-post-type-ui
Domain Path: /languages
@@ -479,7 +479,7 @@ function cptui_register_single_taxonomy( $taxonomy = array() ) {
$taxonomy['query_var'] = $taxonomy['query_var_slug'];
}
- $public = ( ! empty( $taxonomy['public'] ) && false !== get_disp_boolean( $taxonomy['public'] ) ) ? true : false;
+ $public = ( ! empty( $taxonomy['public'] ) && false === get_disp_boolean( $taxonomy['public'] ) ) ? false : true;
$show_admin_column = ( ! empty( $taxonomy['show_admin_column'] ) && false !== get_disp_boolean( $taxonomy['show_admin_column'] ) ) ? true : false;
diff --git a/www/wp-content/plugins/custom-post-type-ui/readme.txt b/www/wp-content/plugins/custom-post-type-ui/readme.txt
index 997c17f..eca3210 100644
--- a/www/wp-content/plugins/custom-post-type-ui/readme.txt
+++ b/www/wp-content/plugins/custom-post-type-ui/readme.txt
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
Tags: custom post types, CPT, CMS, post, types, post type, cck, taxonomy, tax, custom
Requires at least: 4.2
Tested up to: 4.5
-Stable tag: 1.3.0
+Stable tag: 1.3.1
License: GPLv2
Admin UI for creating custom post types and custom taxonomies in WordPress
@@ -30,6 +30,9 @@ All official development on this plugin is on GitHub. Version bumps will still b
== Changelog ==
+= 1.3.1 - 2016-3-25 =
+* Fixed: Logic issue for default values of `public` parameter for taxonomies added in 1.3.0.
+
= 1.3.0 - 2016-3-24 =
* Added: "CPTUI_VERSION" constant and deprecated "CPT_VERSION".
* Added: "Public" parameter for taxonomies
@@ -61,10 +64,6 @@ All official development on this plugin is on GitHub. Version bumps will still b
* Added: new CPTUI_VERSION constant to match naming of other current constants.
* Added: CPTUI_VERSION constant to cptui.css string for cache busting.
-= 1.2.4 =
-* Added: new CPTUI_VERSION constant to match naming of other current constants.
-* Added: CPTUI_VERSION constant to cptui.css string for cache busting.
-
= 1.2.3 - 2016-01-31 =
* Fixed: copy/paste error with admin css. Props hinaloe.
@@ -195,6 +194,9 @@ All official development on this plugin is on GitHub. Version bumps will still b
== Upgrade Notice ==
+= 1.3.1 - 2016-3-25 =
+* Fixed: Logic issue for default values of `public` parameter for taxonomies added in 1.3.0.
+
= 1.3.0 =
* Added: "CPTUI_VERSION" constant and deprecated "CPT_VERSION".
* Added: "Public" parameter for taxonomies
@@ -226,10 +228,6 @@ All official development on this plugin is on GitHub. Version bumps will still b
* Added: new CPTUI_VERSION constant to match naming of other current constants.
* Added: CPTUI_VERSION constant to cptui.css string for cache busting.
-= 1.2.4 =
-* Added: new CPTUI_VERSION constant to match naming of other current constants.
-* Added: CPTUI_VERSION constant to cptui.css string for cache busting.
-
= 1.2.3 =
* Fixed: copy/paste error with admin css. Props hinaloe.
diff --git a/www/wp-content/themes/ation2016/src/styles/components/_services.scss b/www/wp-content/themes/ation2016/src/styles/components/_services.scss
index c6d21af..43bf85c 100644
--- a/www/wp-content/themes/ation2016/src/styles/components/_services.scss
+++ b/www/wp-content/themes/ation2016/src/styles/components/_services.scss
@@ -1,3 +1,5 @@
+$service-padding: 20px;
+
.services {
.bubbles {
a {
@@ -19,13 +21,13 @@
.service {
display: flex;
color: white;
- margin-bottom: 20px;
+ margin-bottom: $service-padding;
.content {
display: flex;
flex-direction: column;
background-color: $grey;
- padding: 20px;
+ padding: $service-padding;
}
h1 {
@@ -33,6 +35,11 @@
text-align: center;
font-family: $header-font;
font-size: 25px;
+ margin-left: -$service-padding;
+ padding-left: $service-padding;
+ line-height: 1.5;
+ background-color: $orange;
+ font-weight: bold;
}
p {
diff --git a/www/wp-content/themes/ation2016/static/styles/site.css b/www/wp-content/themes/ation2016/static/styles/site.css
index 6d89167..b2eb8af 100644
--- a/www/wp-content/themes/ation2016/static/styles/site.css
+++ b/www/wp-content/themes/ation2016/static/styles/site.css
@@ -5892,7 +5892,12 @@ section#content {
margin-top: 0;
text-align: center;
font-family: "Source Sans Pro", sans-serif;
- font-size: 25px; }
+ font-size: 25px;
+ margin-left: -20px;
+ padding-left: 20px;
+ line-height: 1.5;
+ background-color: #ff7200;
+ font-weight: bold; }
.services .flex .service p {
font-family: "Source Sans Pro", sans-serif;
color: white; }
diff --git a/www/wp-content/themes/ation2016/static/styles/site.min.css b/www/wp-content/themes/ation2016/static/styles/site.min.css
index 626b8dc..0897cf0 100644
--- a/www/wp-content/themes/ation2016/static/styles/site.min.css
+++ b/www/wp-content/themes/ation2016/static/styles/site.min.css
@@ -2,4 +2,4 @@
* Bootstrap v3.3.6 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.label,sub,sup{vertical-align:baseline}hr,img{border:0}body,figure{margin:0}.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu,.work-grid .blocks .block{float:left}.img-responsive,.img-thumbnail,.table,label{max-width:100%}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px}@font-face{font-family:Lato;font-style:normal;font-weight:300;src:local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v11/nj47mAZe0mYUIySgfn0wpQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v11/v0SdcGFAl2aezM9Vq_aFTQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:700;src:local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v11/DvlFBScY1r-FMtZSYIYoYw.ttf) format('truetype')}@font-face{font-family:Lato;font-style:italic;font-weight:400;src:local('Lato Italic'),local('Lato-Italic'),url(https://fonts.gstatic.com/s/lato/v11/LqowQDslGv4DmUBAfWa2Vw.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:300;src:local('Source Sans Pro Light'),local('SourceSansPro-Light'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGMw1o1eFRj7wYC6JbISqOjY.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro'),local('SourceSansPro-Regular'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNzbP97U9sKh0jjxbPbfOKg.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local('SourceSansPro-Bold'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGLsbIrGiHa6JIepkyt5c0A0.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local('SourceSansPro-It'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoM0DauxaEVho0aInXGvhmB4k.ttf) format('truetype')}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{vertical-align:middle}svg:not(:root){overflow:hidden}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.btn-danger.dropdown-toggle,.open>.btn-default.dropdown-toggle,.open>.btn-info.dropdown-toggle,.open>.btn-primary.dropdown-toggle,.open>.btn-warning.dropdown-toggle{background-image:none}.img-thumbnail,body{background-color:#fff}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot);src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.img-responsive{display:block;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}dt,kbd kbd,label{font-weight:700}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}address,dl{margin-bottom:20px}ol,ul{margin-bottom:10px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dd,dt{line-height:1.42857}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dropdown-menu>li>a,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857;color:#777}legend,pre{color:#333}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%}caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.container-fluid:after,.container-fluid:before,.container:after,.container:before,.row:after,.row:before{display:table;content:" "}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.container,.container-fluid{padding-left:15px;padding-right:15px}.pre-scrollable{overflow-y:scroll}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.work-grid .blocks .block{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6,.work-grid .blocks .block{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.work-grid .blocks .block{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4,.work-grid .blocks .block{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}fieldset{margin:0;min-width:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px}input[type=search]{box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{font-size:14px;line-height:1.42857;color:#555;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=radio]:focus,input[type=file]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm>input[type=date].form-control,.input-group-sm>input[type=date].input-group-addon,.input-group-sm>input[type=time].form-control,.input-group-sm>input[type=time].input-group-addon,.input-group-sm>input[type=datetime-local].form-control,.input-group-sm>input[type=datetime-local].input-group-addon,.input-group-sm>input[type=month].form-control,.input-group-sm>input[type=month].input-group-addon,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg>input[type=date].form-control,.input-group-lg>input[type=date].input-group-addon,.input-group-lg>input[type=time].form-control,.input-group-lg>input[type=time].input-group-addon,.input-group-lg>input[type=datetime-local].form-control,.input-group-lg>input[type=datetime-local].input-group-addon,.input-group-lg>input[type=month].form-control,.input-group-lg>input[type=month].input-group-addon,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm{height:30px;line-height:30px}.input-group-sm>.input-group-btn>select[multiple].btn,.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg{height:46px;line-height:46px}.input-group-lg>.input-group-btn>select[multiple].btn,.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.collapsing,.dropdown,.dropup{position:relative}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:" ";display:table}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857;white-space:nowrap}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{font-weight:400;color:#333}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:12px;color:#777}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:after,.btn-toolbar:before{content:" ";display:table}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{content:" ";display:table}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group,.input-group-btn,.input-group-btn>.btn{position:relative}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:after,.nav:before{content:" ";display:table}.nav>li,.nav>li>a{display:block;position:relative}.nav:after{clear:both}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li,.nav-tabs.nav-justified>li{float:none}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:after,.navbar:before{content:" ";display:table}.navbar-header:after,.navbar-header:before{content:" ";display:table}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:after,.navbar-collapse:before{content:" ";display:table}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar{border-radius:4px}.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.embed-responsive,.modal,.modal-open,.progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}.navbar-static-top{z-index:1000;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px}@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.navbar-btn{margin-top:8px;margin-bottom:8px}.btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#090909;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:after,.pager:before{content:" ";display:table}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.label:empty{display:none}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.alert,.thumbnail{margin-bottom:20px}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.alert{padding:15px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-body:after,.panel-body:before{content:" ";display:table}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;font-size:16px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before{display:table;content:" "}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.carousel-caption,.carousel-control{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;max-width:100%;height:auto;line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;background-color:transparent}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.affix,header{position:fixed}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:after,.clearfix:before{content:" ";display:table}.center-block{display:block;margin-left:auto;margin-right:auto}.footer-links ul,header nav ul{list-style-type:none;margin:0}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.services .flex .service h1,.services .flex .service p,.work-bar,aside,h1,h2,h3,h4,h5,h6,header nav ul li,li,p{font-family:"Source Sans Pro",sans-serif}aside.grey,h1.grey,h2.grey,h3.grey,h4.grey,h5.grey,h6.grey,li,li.grey,p,p.grey{color:#a8a8a8}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}h1,h2,h3,h4,h5,h6{margin-bottom:.7em}p{margin-bottom:20px}p:first-of-type{margin-top:20px}li,p{font-size:18px}li.large,p.large{font-size:22px}a{color:#ff7200}a:hover{color:#cc5b00}.footer-links ul{padding:0}.footer-links ul li{display:inline-block;padding-right:20px;color:#a8a8a8;font-size:12px;line-height:36px}.footer-links ul li a,.footer-links ul li a:hover{color:#a8a8a8}header,header nav ul li a{color:#ff7200}.admin-bar header{top:32px}header{width:100%;text-align:center;height:100px;background:#fff;transition:all .3s ease,box-shadow 0s ease;top:0}header li{line-height:100px;font-size:25px;transition:all .3s ease}header.sticky{height:70px;box-shadow:-1px 2px 10px -1px #a8a8a8;z-index:1000}header.sticky li{line-height:70px;font-size:15px}header.sticky .header-logo img{max-height:50px}header .header-logo{display:block;padding-left:20px;padding-top:10px;padding-bottom:10px}header .header-logo img{max-height:70px;transition:all .3s ease}header nav ul li{display:inline-block;padding-right:20px}.services .flex,.services .flex .service{display:-webkit-flex;display:-ms-flexbox}section#content{margin-top:100px}.work-bar{background-color:#ff7200;color:#fff;text-align:center;height:60px;line-height:60px;font-size:18px;text-transform:uppercase;margin-bottom:15px;box-shadow:0 4px 15px 0 rgba(168,168,168,.64)}.work-bar a,.work-bar a:hover{color:inherit}.work-grid{z-index:-1;margin-bottom:50px}.work-grid .blocks .block{margin-bottom:10px}.services .bubbles a{border-radius:50px;width:70px;height:70px}.services .flex{display:flex;overflow:hidden;flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap}.services .flex .service{display:flex;color:#fff;margin-bottom:20px}.services .flex .service .content{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#a8a8a8;padding:20px}.services .flex .service h1{margin-top:0;text-align:center;font-size:25px}.services .flex .service p{color:#fff}footer{border-top:1px solid #eee}img{max-width:100%;display:block;height:auto}.video-contain{position:relative;padding-bottom:53%;padding-top:30px;height:0;overflow:hidden}.video-contain iframe{position:absolute;top:0;left:0;width:100%;height:100%}
\ No newline at end of file
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */.label,sub,sup{vertical-align:baseline}hr,img{border:0}body,figure{margin:0}.btn-group>.btn-group,.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.dropdown-menu,.work-grid .blocks .block{float:left}.img-responsive,.img-thumbnail,.table,label{max-width:100%}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.pre-scrollable{max-height:340px}@font-face{font-family:Lato;font-style:normal;font-weight:300;src:local('Lato Light'),local('Lato-Light'),url(https://fonts.gstatic.com/s/lato/v11/nj47mAZe0mYUIySgfn0wpQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:local('Lato Regular'),local('Lato-Regular'),url(https://fonts.gstatic.com/s/lato/v11/v0SdcGFAl2aezM9Vq_aFTQ.ttf) format('truetype')}@font-face{font-family:Lato;font-style:normal;font-weight:700;src:local('Lato Bold'),local('Lato-Bold'),url(https://fonts.gstatic.com/s/lato/v11/DvlFBScY1r-FMtZSYIYoYw.ttf) format('truetype')}@font-face{font-family:Lato;font-style:italic;font-weight:400;src:local('Lato Italic'),local('Lato-Italic'),url(https://fonts.gstatic.com/s/lato/v11/LqowQDslGv4DmUBAfWa2Vw.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:300;src:local('Source Sans Pro Light'),local('SourceSansPro-Light'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGMw1o1eFRj7wYC6JbISqOjY.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:400;src:local('Source Sans Pro'),local('SourceSansPro-Regular'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/ODelI1aHBYDBqgeIAH2zlNzbP97U9sKh0jjxbPbfOKg.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:normal;font-weight:700;src:local('Source Sans Pro Bold'),local('SourceSansPro-Bold'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGLsbIrGiHa6JIepkyt5c0A0.ttf) format('truetype')}@font-face{font-family:'Source Sans Pro';font-style:italic;font-weight:400;src:local('Source Sans Pro Italic'),local('SourceSansPro-It'),url(https://fonts.gstatic.com/s/sourcesanspro/v9/M2Jd71oPJhLKp0zdtTvoM0DauxaEVho0aInXGvhmB4k.ttf) format('truetype')}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0}mark{background:#ff0;color:#000}sub,sup{font-size:75%;line-height:0;position:relative}sup{top:-.5em}sub{bottom:-.25em}img{vertical-align:middle}svg:not(:root){overflow:hidden}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{blockquote,img,pre,tr{page-break-inside:avoid}*,:after,:before{background:0 0!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999}thead{display:table-header-group}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}.btn,.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-warning.active,.btn-warning:active,.btn.active,.btn:active,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover,.form-control,.navbar-toggle,.open>.btn-danger.dropdown-toggle,.open>.btn-default.dropdown-toggle,.open>.btn-info.dropdown-toggle,.open>.btn-primary.dropdown-toggle,.open>.btn-warning.dropdown-toggle{background-image:none}.img-thumbnail,body{background-color:#fff}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot);src:url(../fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix) format("embedded-opentype"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff2) format("woff2"),url(../fonts/bootstrap/glyphicons-halflings-regular.woff) format("woff"),url(../fonts/bootstrap/glyphicons-halflings-regular.ttf) format("truetype"),url(../fonts/bootstrap/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before,.glyphicon-btc:before,.glyphicon-xbt:before{content:"\e227"}.glyphicon-jpy:before,.glyphicon-yen:before{content:"\00a5"}.glyphicon-rub:before,.glyphicon-ruble:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*,:after,:before{box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.img-responsive{display:block;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out;display:inline-block;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}dt,kbd kbd,label{font-weight:700}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.list-inline,.list-unstyled{padding-left:0;list-style:none}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}pre code,table{background-color:transparent}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}dl,ol,ul{margin-top:0}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}address,dl{margin-bottom:20px}ol,ul{margin-bottom:10px}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dd,dt{line-height:1.42857}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.container{width:750px}}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dropdown-menu>li>a,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857;color:#777}legend,pre{color:#333}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}code,kbd{padding:2px 4px;font-size:90%}caption,th{text-align:left}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}.container-fluid:after,.container-fluid:before,.container:after,.container:before,.row:after,.row:before{display:table;content:" "}.container,.container-fluid{margin-right:auto;margin-left:auto}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;border-radius:0}.container,.container-fluid{padding-left:15px;padding-right:15px}.pre-scrollable{overflow-y:scroll}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.row{margin-left:-15px;margin-right:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.work-grid .blocks .block{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6,.work-grid .blocks .block{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.work-grid .blocks .block{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4,.work-grid .blocks .block{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}caption{padding-top:8px;padding-bottom:8px;color:#777}.table{width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset,legend{padding:0;border:0}fieldset{margin:0;min-width:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px}input[type=search]{box-sizing:border-box;-webkit-appearance:none}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}.form-control,output{font-size:14px;line-height:1.42857;color:#555;display:block}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=radio]:focus,input[type=file]:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}output{padding-top:7px}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .form-control-feedback,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm>.input-group-btn>input[type=date].btn,.input-group-sm>.input-group-btn>input[type=time].btn,.input-group-sm>.input-group-btn>input[type=datetime-local].btn,.input-group-sm>.input-group-btn>input[type=month].btn,.input-group-sm>input[type=date].form-control,.input-group-sm>input[type=date].input-group-addon,.input-group-sm>input[type=time].form-control,.input-group-sm>input[type=time].input-group-addon,.input-group-sm>input[type=datetime-local].form-control,.input-group-sm>input[type=datetime-local].input-group-addon,.input-group-sm>input[type=month].form-control,.input-group-sm>input[type=month].input-group-addon,input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg>.input-group-btn>input[type=date].btn,.input-group-lg>.input-group-btn>input[type=time].btn,.input-group-lg>.input-group-btn>input[type=datetime-local].btn,.input-group-lg>.input-group-btn>input[type=month].btn,.input-group-lg>input[type=date].form-control,.input-group-lg>input[type=date].input-group-addon,.input-group-lg>input[type=time].form-control,.input-group-lg>input[type=time].input-group-addon,.input-group-lg>input[type=datetime-local].form-control,.input-group-lg>input[type=datetime-local].input-group-addon,.input-group-lg>input[type=month].form-control,.input-group-lg>input[type=month].input-group-addon,input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio label,fieldset[disabled] .radio-inline,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.input-group-sm>.input-group-btn>select.btn,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,select.input-sm{height:30px;line-height:30px}.input-group-sm>.input-group-btn>select[multiple].btn,.input-group-sm>.input-group-btn>textarea.btn,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.input-group-lg>.input-group-btn>select.btn,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,select.input-lg{height:46px;line-height:46px}.input-group-lg>.input-group-btn>select[multiple].btn,.input-group-lg>.input-group-btn>textarea.btn,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.collapsing,.dropdown,.dropup{position:relative}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .form-control-feedback,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .form-control-feedback,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-control-static,.form-inline .form-group{display:inline-block}.form-inline .control-label,.form-inline .form-group{margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:" ";display:table}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.btn-default:hover,.open>.btn-default.dropdown-toggle{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.btn-default.dropdown-toggle.focus,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary.active,.btn-primary:active,.btn-primary:hover,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.btn-primary.dropdown-toggle.focus,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success.active,.btn-success:active,.btn-success:hover,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.btn-success.dropdown-toggle.focus,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info.active,.btn-info:active,.btn-info:hover,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.btn-info.dropdown-toggle.focus,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.btn-warning:hover,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.btn-warning.dropdown-toggle.focus,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger.active,.btn-danger:active,.btn-danger:hover,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.btn-danger.dropdown-toggle.focus,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#337ab7;font-weight:400;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{height:0;overflow:hidden;transition-property:height,visibility;transition-duration:.35s;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{display:block;padding:3px 20px;line-height:1.42857;white-space:nowrap}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle,.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{font-weight:400;color:#333}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:12px;color:#777}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:after,.btn-toolbar:before{content:" ";display:table}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn .caret,.btn-group>.btn:first-child{margin-left:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{box-shadow:none}.btn-group-lg>.btn .caret,.btn-lg .caret{border-width:5px 5px 0}.dropup .btn-group-lg>.btn .caret,.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before{content:" ";display:table}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group,.input-group-btn,.input-group-btn>.btn{position:relative}.input-group{display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:after,.nav:before{content:" ";display:table}.nav>li,.nav>li>a{display:block;position:relative}.nav:after{clear:both}.nav>li>a{padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-justified>li,.nav-stacked>li,.nav-tabs.nav-justified>li{float:none}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:after,.navbar:before{content:" ";display:table}.navbar-header:after,.navbar-header:before{content:" ";display:table}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse:after,.navbar-collapse:before{content:" ";display:table}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar{border-radius:4px}.navbar-header{float:left}.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-left:0;padding-right:0}}.embed-responsive,.modal,.modal-open,.progress{overflow:hidden}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}.navbar-static-top{z-index:1000;border-width:0 0 1px}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-toggle{display:none}.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:8px -15px}@media (min-width:768px){.navbar-form .form-control-static,.navbar-form .form-group{display:inline-block}.navbar-form .control-label,.navbar-form .form-group{margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;box-shadow:none}}.breadcrumb>li,.pagination{display:inline-block}.btn .badge,.btn .label{top:-1px;position:relative}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.navbar-btn{margin-top:8px;margin-bottom:8px}.btn-group-sm>.navbar-btn.btn,.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.btn-group-xs>.navbar-btn.btn,.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#090909}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{background-color:#090909;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#090909}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.pagination{padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857;text-decoration:none;color:#337ab7;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;background-color:#337ab7;border-color:#337ab7;cursor:default}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.33333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.badge,.label{font-weight:700;line-height:1;white-space:nowrap;text-align:center}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager:after,.pager:before{content:" ";display:table}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;color:#fff;border-radius:.25em}.label:empty{display:none}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;color:#fff;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.media-object,.thumbnail{display:block}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.jumbotron,.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;background-color:#eee}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.alert,.thumbnail{margin-bottom:20px}.alert .alert-link,.close{font-weight:700}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:6px;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.alert{padding:15px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.modal,.modal-backdrop{top:0;right:0;bottom:0;left:0}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{background-color:#eee;color:#777;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.panel-heading>.dropdown .dropdown-toggle,.panel-title,.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-title,.panel>.list-group,.panel>.panel-collapse>.list-group,.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel-body{padding:15px}.panel-body:after,.panel-body:before{content:" ";display:table}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-title{margin-top:0;font-size:16px}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel-group .panel-heading,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.popover,.tooltip{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;text-decoration:none}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-content,.popover{background-clip:padding-box}.modal{display:none;position:fixed;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before{display:table;content:" "}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);transform:translate(0,-25%);transition:-webkit-transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 3px 9px rgba(0,0,0,.5);outline:0}.modal-backdrop{position:fixed;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;text-align:left;text-align:start;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px}.tooltip.top-right .tooltip-arrow{left:5px}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-width:0 5px 5px;border-bottom-color:#000;top:0}.tooltip.bottom .tooltip-arrow{left:50%;margin-left:-5px}.tooltip.bottom-left .tooltip-arrow{right:5px;margin-top:-5px}.tooltip.bottom-right .tooltip-arrow{left:5px;margin-top:-5px}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;text-align:left;text-align:start;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;box-shadow:0 5px 10px rgba(0,0,0,.2)}.carousel-caption,.carousel-control{color:#fff;text-shadow:0 1px 2px rgba(0,0,0,.6);text-align:center}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.carousel,.carousel-inner{position:relative}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.left>.arrow:after,.popover.right>.arrow:after{content:" ";bottom:-10px}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{left:1px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;border-right-width:0;border-left-color:#fff}.carousel-inner{overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{display:block;max-width:100%;height:auto;line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{transition:-webkit-transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);left:0}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);left:0}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;background-color:transparent}.carousel-control.left{background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:focus,.carousel-control:hover{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000\9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px}.affix,header{position:fixed}.carousel-caption .btn,.text-hide{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:after,.clearfix:before{content:" ";display:table}.center-block{display:block;margin-left:auto;margin-right:auto}.footer-links ul,header nav ul{list-style-type:none;margin:0}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.hidden,.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;background-color:transparent;border:0}.services .flex .service h1,.services .flex .service p,.work-bar,aside,h1,h2,h3,h4,h5,h6,header nav ul li,li,p{font-family:"Source Sans Pro",sans-serif}aside.grey,h1.grey,h2.grey,h3.grey,h4.grey,h5.grey,h6.grey,li,li.grey,p,p.grey{color:#a8a8a8}@-ms-viewport{width:device-width}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}.visible-xs-block{display:block!important}.visible-xs-inline{display:inline!important}.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}.visible-sm-block{display:block!important}.visible-sm-inline{display:inline!important}.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}.visible-md-block{display:block!important}.visible-md-inline{display:inline!important}.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}.visible-lg-block{display:block!important}.visible-lg-inline{display:inline!important}.visible-lg-inline-block{display:inline-block!important}.hidden-lg{display:none!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}.hidden-print{display:none!important}}h1,h2,h3,h4,h5,h6{margin-bottom:.7em}p{margin-bottom:20px}p:first-of-type{margin-top:20px}li,p{font-size:18px}li.large,p.large{font-size:22px}a{color:#ff7200}a:hover{color:#cc5b00}.footer-links ul{padding:0}.footer-links ul li{display:inline-block;padding-right:20px;color:#a8a8a8;font-size:12px;line-height:36px}.footer-links ul li a,.footer-links ul li a:hover{color:#a8a8a8}header,header nav ul li a{color:#ff7200}.admin-bar header{top:32px}header{width:100%;text-align:center;height:100px;background:#fff;transition:all .3s ease,box-shadow 0s ease;top:0}header li{line-height:100px;font-size:25px;transition:all .3s ease}header.sticky{height:70px;box-shadow:-1px 2px 10px -1px #a8a8a8;z-index:1000}header.sticky li{line-height:70px;font-size:15px}header.sticky .header-logo img{max-height:50px}header .header-logo{display:block;padding-left:20px;padding-top:10px;padding-bottom:10px}header .header-logo img{max-height:70px;transition:all .3s ease}header nav ul li{display:inline-block;padding-right:20px}.services .flex,.services .flex .service{display:-webkit-flex;display:-ms-flexbox}section#content{margin-top:100px}.work-bar{background-color:#ff7200;color:#fff;text-align:center;height:60px;line-height:60px;font-size:18px;text-transform:uppercase;margin-bottom:15px;box-shadow:0 4px 15px 0 rgba(168,168,168,.64)}.work-bar a,.work-bar a:hover{color:inherit}.work-grid{z-index:-1;margin-bottom:50px}.work-grid .blocks .block{margin-bottom:10px}.services .bubbles a{border-radius:50px;width:70px;height:70px}.services .flex{display:flex;overflow:hidden;flex-wrap:wrap;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap}.services .flex .service{display:flex;color:#fff;margin-bottom:20px}.services .flex .service .content{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;background-color:#a8a8a8;padding:20px}.services .flex .service h1{margin-top:0;text-align:center;font-size:25px;margin-left:-20px;padding-left:20px;line-height:1.5;background-color:#ff7200;font-weight:700}.services .flex .service p{color:#fff}footer{border-top:1px solid #eee}img{max-width:100%;display:block;height:auto}.video-contain{position:relative;padding-bottom:53%;padding-top:30px;height:0;overflow:hidden}.video-contain iframe{position:absolute;top:0;left:0;width:100%;height:100%}
\ No newline at end of file